Class: Aws::WAF::Types::ListWebACLsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAF::Types::ListWebACLsResponse
- Defined in:
- gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_marker ⇒ String
If you have more
WebACL
objects than the number that you specified forLimit
in the request, the response includes aNextMarker
value. -
#web_acls ⇒ Array<Types::WebACLSummary>
An array of WebACLSummary objects.
Instance Attribute Details
#next_marker ⇒ String
If you have more WebACL
objects than the number that you specified
for Limit
in the request, the response includes a NextMarker
value. To list more WebACL
objects, submit another ListWebACLs
request, and specify the NextMarker
value from the response in the
NextMarker
value in the next request.
3429 3430 3431 3432 3433 3434 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 3429 class ListWebACLsResponse < Struct.new( :next_marker, :web_acls) SENSITIVE = [] include Aws::Structure end |
#web_acls ⇒ Array<Types::WebACLSummary>
An array of WebACLSummary objects.
3429 3430 3431 3432 3433 3434 |
# File 'gems/aws-sdk-waf/lib/aws-sdk-waf/types.rb', line 3429 class ListWebACLsResponse < Struct.new( :next_marker, :web_acls) SENSITIVE = [] include Aws::Structure end |