Class: Aws::WAF::Types::GetWebACLRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAF::Types::GetWebACLRequest
- Defined in:
- gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb
Overview
Note:
When making an API call, you may pass GetWebACLRequest data as a hash:
{
web_acl_id: "ResourceId", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#web_acl_id ⇒ String
The
WebACLId
of the WebACL that you want to get.
Instance Attribute Details
#web_acl_id ⇒ String
The WebACLId
of the WebACL that you want to get. WebACLId
is
returned by CreateWebACL and by ListWebACLs.
2801 2802 2803 2804 2805 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 2801 class GetWebACLRequest < Struct.new( :web_acl_id) SENSITIVE = [] include Aws::Structure end |