Class: Aws::WAF::Types::CreateSizeConstraintSetRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAF::Types::CreateSizeConstraintSetRequest
- Defined in:
- gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb
Overview
Note:
When making an API call, you may pass CreateSizeConstraintSetRequest data as a hash:
{
name: "ResourceName", # required
change_token: "ChangeToken", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#change_token ⇒ String
The value returned by the most recent call to GetChangeToken.
-
#name ⇒ String
A friendly name or description of the SizeConstraintSet.
Instance Attribute Details
#change_token ⇒ String
The value returned by the most recent call to GetChangeToken.
1041 1042 1043 1044 1045 1046 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 1041 class CreateSizeConstraintSetRequest < Struct.new( :name, :change_token) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
A friendly name or description of the SizeConstraintSet. You can't
change Name
after you create a SizeConstraintSet
.
1041 1042 1043 1044 1045 1046 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 1041 class CreateSizeConstraintSetRequest < Struct.new( :name, :change_token) SENSITIVE = [] include Aws::Structure end |