pub struct ListDistributionsByWebACLIdRequest {
pub marker: Option<String>,
pub max_items: Option<String>,
pub web_acl_id: String,
}
Expand description
The request to list distributions that are associated with a specified AWS WAF web ACL.
Fields§
§marker: Option<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
.)
max_items: Option<String>
The maximum number of distributions that you want CloudFront to return in the response body. The maximum and default values are both 100.
web_acl_id: String
The ID of the AWS 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.
Trait Implementations§
Source§impl Clone for ListDistributionsByWebACLIdRequest
impl Clone for ListDistributionsByWebACLIdRequest
Source§fn clone(&self) -> ListDistributionsByWebACLIdRequest
fn clone(&self) -> ListDistributionsByWebACLIdRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for ListDistributionsByWebACLIdRequest
impl Default for ListDistributionsByWebACLIdRequest
Source§fn default() -> ListDistributionsByWebACLIdRequest
fn default() -> ListDistributionsByWebACLIdRequest
Source§impl PartialEq for ListDistributionsByWebACLIdRequest
impl PartialEq for ListDistributionsByWebACLIdRequest
Source§fn eq(&self, other: &ListDistributionsByWebACLIdRequest) -> bool
fn eq(&self, other: &ListDistributionsByWebACLIdRequest) -> bool
self
and other
values to be equal, and is used by ==
.