Class: Aws::WAF::Types::WebACLSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAF::Types::WebACLSummary
- Defined in:
- gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb
Overview
For the latest version of AWS WAF, use the AWS WAFV2 API and see the AWS WAF Developer Guide. With the latest version, AWS WAF has a single set of endpoints for regional and global use.
Contains the identifier and the name or description of the WebACL.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
A friendly name or description of the WebACL.
-
#web_acl_id ⇒ String
A unique identifier for a
WebACL
.
Instance Attribute Details
#name ⇒ String
A friendly name or description of the WebACL. You can't change the
name of a WebACL
after you create it.
6372 6373 6374 6375 6376 6377 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 6372 class WebACLSummary < Struct.new( :web_acl_id, :name) SENSITIVE = [] include Aws::Structure end |
#web_acl_id ⇒ String
A unique identifier for a WebACL
. You use WebACLId
to get
information about a WebACL
(see GetWebACL), update a WebACL
(see
UpdateWebACL), and delete a WebACL
from AWS WAF (see
DeleteWebACL).
WebACLId
is returned by CreateWebACL and by ListWebACLs.
6372 6373 6374 6375 6376 6377 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 6372 class WebACLSummary < Struct.new( :web_acl_id, :name) SENSITIVE = [] include Aws::Structure end |