Struct aws_sdk_cloudfront::input::ListInvalidationsInput
source · [−]#[non_exhaustive]pub struct ListInvalidationsInput { /* private fields */ }
Expand description
The request to list invalidations.
Implementations
sourceimpl ListInvalidationsInput
impl ListInvalidationsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListInvalidations, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListInvalidations, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListInvalidations
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListInvalidationsInput
.
sourceimpl ListInvalidationsInput
impl ListInvalidationsInput
sourcepub fn distribution_id(&self) -> Option<&str>
pub fn distribution_id(&self) -> Option<&str>
The distribution's ID.
sourcepub fn marker(&self) -> Option<&str>
pub fn marker(&self) -> Option<&str>
Use this parameter when paginating results to indicate where to begin in your list of invalidation batches. Because the results are returned in decreasing order from most recent to oldest, the most recent results are on the first page, the second page will contain earlier results, and so on. To get the next page of results, set Marker
to the value of the NextMarker
from the current page's response. This value is the same as the ID of the last invalidation batch on that page.
Trait Implementations
sourceimpl Clone for ListInvalidationsInput
impl Clone for ListInvalidationsInput
sourcefn clone(&self) -> ListInvalidationsInput
fn clone(&self) -> ListInvalidationsInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ListInvalidationsInput
impl Debug for ListInvalidationsInput
sourceimpl PartialEq<ListInvalidationsInput> for ListInvalidationsInput
impl PartialEq<ListInvalidationsInput> for ListInvalidationsInput
sourcefn eq(&self, other: &ListInvalidationsInput) -> bool
fn eq(&self, other: &ListInvalidationsInput) -> bool
impl StructuralPartialEq for ListInvalidationsInput
Auto Trait Implementations
impl RefUnwindSafe for ListInvalidationsInput
impl Send for ListInvalidationsInput
impl Sync for ListInvalidationsInput
impl Unpin for ListInvalidationsInput
impl UnwindSafe for ListInvalidationsInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more