Class: Aws::WAF::Types::GetSizeConstraintSetRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAF::Types::GetSizeConstraintSetRequest
- Defined in:
- gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb
Overview
Note:
When making an API call, you may pass GetSizeConstraintSetRequest data as a hash:
{
size_constraint_set_id: "ResourceId", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#size_constraint_set_id ⇒ String
The
SizeConstraintSetId
of the SizeConstraintSet that you want to get.
Instance Attribute Details
#size_constraint_set_id ⇒ String
The SizeConstraintSetId
of the SizeConstraintSet that you want to
get. SizeConstraintSetId
is returned by CreateSizeConstraintSet
and by ListSizeConstraintSets.
2711 2712 2713 2714 2715 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 2711 class GetSizeConstraintSetRequest < Struct.new( :size_constraint_set_id) SENSITIVE = [] include Aws::Structure end |