Class: Aws::WAF::Types::CreateXssMatchSetRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAF::Types::CreateXssMatchSetRequest
- Defined in:
- gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb
Overview
Note:
When making an API call, you may pass CreateXssMatchSetRequest data as a hash:
{
name: "ResourceName", # required
change_token: "ChangeToken", # required
}
A request to create an XssMatchSet.
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 for the XssMatchSet that you're creating.
Instance Attribute Details
#change_token ⇒ String
The value returned by the most recent call to GetChangeToken.
1279 1280 1281 1282 1283 1284 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 1279 class CreateXssMatchSetRequest < Struct.new( :name, :change_token) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
A friendly name or description for the XssMatchSet that you're
creating. You can't change Name
after you create the
XssMatchSet
.
1279 1280 1281 1282 1283 1284 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 1279 class CreateXssMatchSetRequest < Struct.new( :name, :change_token) SENSITIVE = [] include Aws::Structure end |