Class: AWSCDK::WAFv2::CfnWebACL::HeaderOrderProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::WAFv2::CfnWebACL::HeaderOrderProperty
- Defined in:
- wa_fv2/cfn_web_acl.rb
Overview
The string containing the list of a web request's header names, ordered as they appear in the web request, separated by colons.
Instance Attribute Summary collapse
-
#oversize_handling ⇒ String
readonly
Handling of requests containing oversize fields.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(oversize_handling:) ⇒ HeaderOrderProperty
constructor
A new instance of HeaderOrderProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(oversize_handling:) ⇒ HeaderOrderProperty
Returns a new instance of HeaderOrderProperty.
2886 2887 2888 2889 |
# File 'wa_fv2/cfn_web_acl.rb', line 2886 def initialize(oversize_handling:) @oversize_handling = oversize_handling Jsii::Type.check_type(@oversize_handling, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "oversizeHandling") end |
Instance Attribute Details
#oversize_handling ⇒ String (readonly)
Handling of requests containing oversize fields.
2895 2896 2897 |
# File 'wa_fv2/cfn_web_acl.rb', line 2895 def oversize_handling @oversize_handling end |
Class Method Details
.jsii_properties ⇒ Object
2897 2898 2899 2900 2901 |
# File 'wa_fv2/cfn_web_acl.rb', line 2897 def self.jsii_properties { :oversize_handling => "oversizeHandling", } end |
Instance Method Details
#to_jsii ⇒ Object
2903 2904 2905 2906 2907 2908 2909 |
# File 'wa_fv2/cfn_web_acl.rb', line 2903 def to_jsii result = {} result.merge!({ "oversizeHandling" => @oversize_handling, }) result.compact end |