Struct aws_sdk_backupstorage::input::ListObjectsInput
source · #[non_exhaustive]pub struct ListObjectsInput { /* private fields */ }
Implementations§
source§impl ListObjectsInput
impl ListObjectsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListObjects, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListObjects, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListObjects
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListObjectsInput
.
source§impl ListObjectsInput
impl ListObjectsInput
sourcepub fn storage_job_id(&self) -> Option<&str>
pub fn storage_job_id(&self) -> Option<&str>
Storage job id
sourcepub fn starting_object_name(&self) -> Option<&str>
pub fn starting_object_name(&self) -> Option<&str>
Optional, specifies the starting Object name to list from. Ignored if NextToken is not NULL
sourcepub fn starting_object_prefix(&self) -> Option<&str>
pub fn starting_object_prefix(&self) -> Option<&str>
Optional, specifies the starting Object prefix to list from. Ignored if NextToken is not NULL
sourcepub fn max_results(&self) -> i32
pub fn max_results(&self) -> i32
Maximum objects count
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
Pagination token
sourcepub fn created_before(&self) -> Option<&DateTime>
pub fn created_before(&self) -> Option<&DateTime>
(Optional) Created before filter
sourcepub fn created_after(&self) -> Option<&DateTime>
pub fn created_after(&self) -> Option<&DateTime>
(Optional) Created after filter
Trait Implementations§
source§impl Clone for ListObjectsInput
impl Clone for ListObjectsInput
source§fn clone(&self) -> ListObjectsInput
fn clone(&self) -> ListObjectsInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ListObjectsInput
impl Debug for ListObjectsInput
source§impl PartialEq<ListObjectsInput> for ListObjectsInput
impl PartialEq<ListObjectsInput> for ListObjectsInput
source§fn eq(&self, other: &ListObjectsInput) -> bool
fn eq(&self, other: &ListObjectsInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.