#[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<ListImagesInputBuilder> for ListImagesInputBuilder
impl PartialEq<ListImagesInputBuilder> 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 ==
.