Struct aws_sdk_cloudfront::model::InvalidationList
source · #[non_exhaustive]pub struct InvalidationList { /* private fields */ }
Expand description
The InvalidationList
complex type describes the list of invalidation objects. For more information about invalidation, see Invalidating Objects (Web Distributions Only) in the Amazon CloudFront Developer Guide.
Implementations§
source§impl InvalidationList
impl InvalidationList
sourcepub fn marker(&self) -> Option<&str>
pub fn marker(&self) -> Option<&str>
The value that you provided for the Marker
request parameter.
sourcepub fn next_marker(&self) -> Option<&str>
pub fn next_marker(&self) -> Option<&str>
If IsTruncated
is true
, this element is present and contains the value that you can use for the Marker
request parameter to continue listing your invalidation batches where they left off.
sourcepub fn max_items(&self) -> Option<i32>
pub fn max_items(&self) -> Option<i32>
The value that you provided for the MaxItems
request parameter.
sourcepub fn is_truncated(&self) -> Option<bool>
pub fn is_truncated(&self) -> Option<bool>
A flag that indicates whether more invalidation batch requests remain to be listed. If your results were truncated, you can make a follow-up pagination request using the Marker
request parameter to retrieve more invalidation batches in the list.
sourcepub fn quantity(&self) -> Option<i32>
pub fn quantity(&self) -> Option<i32>
The number of invalidation batches that were created by the current Amazon Web Services account.
sourcepub fn items(&self) -> Option<&[InvalidationSummary]>
pub fn items(&self) -> Option<&[InvalidationSummary]>
A complex type that contains one InvalidationSummary
element for each invalidation batch created by the current Amazon Web Services account.
source§impl InvalidationList
impl InvalidationList
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture InvalidationList
.
Trait Implementations§
source§impl Clone for InvalidationList
impl Clone for InvalidationList
source§fn clone(&self) -> InvalidationList
fn clone(&self) -> InvalidationList
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for InvalidationList
impl Debug for InvalidationList
source§impl PartialEq<InvalidationList> for InvalidationList
impl PartialEq<InvalidationList> for InvalidationList
source§fn eq(&self, other: &InvalidationList) -> bool
fn eq(&self, other: &InvalidationList) -> bool
self
and other
values to be equal, and is used
by ==
.