Class: Aws::CloudFront::Types::ListDistributionsByWebACLIdRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::ListDistributionsByWebACLIdRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudfront/types.rb
Overview
The request to list distributions that are associated with a specified WAF web ACL.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#marker ⇒ String
Use ‘Marker` and `MaxItems` to control pagination of results.
-
#max_items ⇒ Integer
The maximum number of distributions that you want CloudFront to return in the response body.
-
#web_acl_id ⇒ String
The ID of the WAF web ACL that you want to list the associated distributions.
Instance Attribute Details
#marker ⇒ String
Use ‘Marker` and `MaxItems` to control pagination of results. If you have more than `MaxItems` distributions that satisfy the request, the response includes a `NextMarker` element. To get the next page of results, submit another request. For the value of `Marker`, specify the value of `NextMarker` from the last response. (For the first request, omit `Marker`.)
6959 6960 6961 6962 6963 6964 6965 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 6959 class ListDistributionsByWebACLIdRequest < Struct.new( :marker, :max_items, :web_acl_id) SENSITIVE = [] include Aws::Structure end |
#max_items ⇒ Integer
The maximum number of distributions that you want CloudFront to return in the response body. The maximum and default values are both 100.
6959 6960 6961 6962 6963 6964 6965 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 6959 class ListDistributionsByWebACLIdRequest < Struct.new( :marker, :max_items, :web_acl_id) SENSITIVE = [] include Aws::Structure end |
#web_acl_id ⇒ String
The ID of the WAF web ACL that you want to list the associated distributions. If you specify “null” for the ID, the request returns a list of the distributions that aren’t associated with a web ACL.
6959 6960 6961 6962 6963 6964 6965 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 6959 class ListDistributionsByWebACLIdRequest < Struct.new( :marker, :max_items, :web_acl_id) SENSITIVE = [] include Aws::Structure end |