#[non_exhaustive]pub struct ListObjectsInput { /* private fields */ }
Implementations§
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
source§impl ListObjectsInput
impl ListObjectsInput
sourcepub fn builder() -> ListObjectsInputBuilder
pub fn builder() -> ListObjectsInputBuilder
Creates a new builder-style object to manufacture ListObjectsInput
.
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
>
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 ==
.impl StructuralPartialEq for ListObjectsInput
Auto Trait Implementations§
impl RefUnwindSafe for ListObjectsInput
impl Send for ListObjectsInput
impl Sync for ListObjectsInput
impl Unpin for ListObjectsInput
impl UnwindSafe for ListObjectsInput
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
Mutably borrows from an owned value. Read more