#[non_exhaustive]pub struct ListImagesInputBuilder { /* private fields */ }Expand description
A builder for ListImagesInput.
Implementations§
source§impl ListImagesInputBuilder
impl ListImagesInputBuilder
sourcepub fn creation_time_after(self, input: DateTime) -> Self
pub fn creation_time_after(self, input: DateTime) -> Self
A filter that returns only images created on or after the specified time.
sourcepub fn set_creation_time_after(self, input: Option<DateTime>) -> Self
pub fn set_creation_time_after(self, input: Option<DateTime>) -> Self
A filter that returns only images created on or after the specified time.
sourcepub fn get_creation_time_after(&self) -> &Option<DateTime>
pub fn get_creation_time_after(&self) -> &Option<DateTime>
A filter that returns only images created on or after the specified time.
sourcepub fn creation_time_before(self, input: DateTime) -> Self
pub fn creation_time_before(self, input: DateTime) -> Self
A filter that returns only images created on or before the specified time.
sourcepub fn set_creation_time_before(self, input: Option<DateTime>) -> Self
pub fn set_creation_time_before(self, input: Option<DateTime>) -> Self
A filter that returns only images created on or before the specified time.
sourcepub fn get_creation_time_before(&self) -> &Option<DateTime>
pub fn get_creation_time_before(&self) -> &Option<DateTime>
A filter that returns only images created on or before the specified time.
sourcepub fn last_modified_time_after(self, input: DateTime) -> Self
pub fn last_modified_time_after(self, input: DateTime) -> Self
A filter that returns only images modified on or after the specified time.
sourcepub fn set_last_modified_time_after(self, input: Option<DateTime>) -> Self
pub fn set_last_modified_time_after(self, input: Option<DateTime>) -> Self
A filter that returns only images modified on or after the specified time.
sourcepub fn get_last_modified_time_after(&self) -> &Option<DateTime>
pub fn get_last_modified_time_after(&self) -> &Option<DateTime>
A filter that returns only images modified on or after the specified time.
sourcepub fn last_modified_time_before(self, input: DateTime) -> Self
pub fn last_modified_time_before(self, input: DateTime) -> Self
A filter that returns only images modified on or before the specified time.
sourcepub fn set_last_modified_time_before(self, input: Option<DateTime>) -> Self
pub fn set_last_modified_time_before(self, input: Option<DateTime>) -> Self
A filter that returns only images modified on or before the specified time.
sourcepub fn get_last_modified_time_before(&self) -> &Option<DateTime>
pub fn get_last_modified_time_before(&self) -> &Option<DateTime>
A filter that returns only images modified on or before the specified time.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of images to return in the response. The default value is 10.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of images to return in the response. The default value is 10.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of images to return in the response. The default value is 10.
sourcepub fn name_contains(self, input: impl Into<String>) -> Self
pub fn name_contains(self, input: impl Into<String>) -> Self
A filter that returns only images whose name contains the specified string.
sourcepub fn set_name_contains(self, input: Option<String>) -> Self
pub fn set_name_contains(self, input: Option<String>) -> Self
A filter that returns only images whose name contains the specified string.
sourcepub fn get_name_contains(&self) -> &Option<String>
pub fn get_name_contains(&self) -> &Option<String>
A filter that returns only images whose name contains the specified string.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If the previous call to ListImages didn't return the full set of images, the call returns a token for getting the next set of images.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If the previous call to ListImages didn't return the full set of images, the call returns a token for getting the next set of images.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If the previous call to ListImages didn't return the full set of images, the call returns a token for getting the next set of images.
sourcepub fn sort_by(self, input: ImageSortBy) -> Self
pub fn sort_by(self, input: ImageSortBy) -> Self
The property used to sort results. The default value is CREATION_TIME.
sourcepub fn set_sort_by(self, input: Option<ImageSortBy>) -> Self
pub fn set_sort_by(self, input: Option<ImageSortBy>) -> Self
The property used to sort results. The default value is CREATION_TIME.
sourcepub fn get_sort_by(&self) -> &Option<ImageSortBy>
pub fn get_sort_by(&self) -> &Option<ImageSortBy>
The property used to sort results. The default value is CREATION_TIME.
sourcepub fn sort_order(self, input: ImageSortOrder) -> Self
pub fn sort_order(self, input: ImageSortOrder) -> Self
The sort order. The default value is DESCENDING.
sourcepub fn set_sort_order(self, input: Option<ImageSortOrder>) -> Self
pub fn set_sort_order(self, input: Option<ImageSortOrder>) -> Self
The sort order. The default value is DESCENDING.
sourcepub fn get_sort_order(&self) -> &Option<ImageSortOrder>
pub fn get_sort_order(&self) -> &Option<ImageSortOrder>
The sort order. The default value is DESCENDING.
sourcepub fn build(self) -> Result<ListImagesInput, BuildError>
pub fn build(self) -> Result<ListImagesInput, BuildError>
Consumes the builder and constructs a ListImagesInput.
source§impl ListImagesInputBuilder
impl ListImagesInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListImagesOutput, SdkError<ListImagesError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListImagesOutput, SdkError<ListImagesError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListImagesInputBuilder
impl Clone for ListImagesInputBuilder
source§fn clone(&self) -> ListImagesInputBuilder
fn clone(&self) -> ListImagesInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListImagesInputBuilder
impl Debug for ListImagesInputBuilder
source§impl Default for ListImagesInputBuilder
impl Default for ListImagesInputBuilder
source§fn default() -> ListImagesInputBuilder
fn default() -> ListImagesInputBuilder
source§impl PartialEq for ListImagesInputBuilder
impl PartialEq for ListImagesInputBuilder
source§fn eq(&self, other: &ListImagesInputBuilder) -> bool
fn eq(&self, other: &ListImagesInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListImagesInputBuilder
Auto Trait Implementations§
impl Freeze for ListImagesInputBuilder
impl RefUnwindSafe for ListImagesInputBuilder
impl Send for ListImagesInputBuilder
impl Sync for ListImagesInputBuilder
impl Unpin for ListImagesInputBuilder
impl UnwindSafe for ListImagesInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more