Struct aws_sdk_cloudfront::operation::list_distributions_by_key_group::ListDistributionsByKeyGroupInput
source · #[non_exhaustive]pub struct ListDistributionsByKeyGroupInput {
pub marker: Option<String>,
pub max_items: Option<i32>,
pub key_group_id: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.marker: Option<String>
Use this field when paginating results to indicate where to begin in your list of distribution IDs. The response includes distribution IDs in the list that occur after the marker. To get the next page of the list, set this field's value to the value of NextMarker
from the current page's response.
max_items: Option<i32>
The maximum number of distribution IDs that you want in the response.
key_group_id: Option<String>
The ID of the key group whose associated distribution IDs you are listing.
Implementations§
source§impl ListDistributionsByKeyGroupInput
impl ListDistributionsByKeyGroupInput
sourcepub fn marker(&self) -> Option<&str>
pub fn marker(&self) -> Option<&str>
Use this field when paginating results to indicate where to begin in your list of distribution IDs. The response includes distribution IDs in the list that occur after the marker. To get the next page of the list, set this field's value to the value of NextMarker
from the current page's response.
sourcepub fn max_items(&self) -> Option<i32>
pub fn max_items(&self) -> Option<i32>
The maximum number of distribution IDs that you want in the response.
sourcepub fn key_group_id(&self) -> Option<&str>
pub fn key_group_id(&self) -> Option<&str>
The ID of the key group whose associated distribution IDs you are listing.
source§impl ListDistributionsByKeyGroupInput
impl ListDistributionsByKeyGroupInput
sourcepub fn builder() -> ListDistributionsByKeyGroupInputBuilder
pub fn builder() -> ListDistributionsByKeyGroupInputBuilder
Creates a new builder-style object to manufacture ListDistributionsByKeyGroupInput
.
Trait Implementations§
source§impl Clone for ListDistributionsByKeyGroupInput
impl Clone for ListDistributionsByKeyGroupInput
source§fn clone(&self) -> ListDistributionsByKeyGroupInput
fn clone(&self) -> ListDistributionsByKeyGroupInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for ListDistributionsByKeyGroupInput
impl PartialEq for ListDistributionsByKeyGroupInput
source§fn eq(&self, other: &ListDistributionsByKeyGroupInput) -> bool
fn eq(&self, other: &ListDistributionsByKeyGroupInput) -> bool
self
and other
values to be equal, and is used
by ==
.