#[non_exhaustive]pub struct ListObjectsInput {
pub storage_job_id: Option<String>,
pub starting_object_name: Option<String>,
pub starting_object_prefix: Option<String>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub created_before: Option<DateTime>,
pub created_after: Option<DateTime>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.storage_job_id: Option<String>
Storage job id
starting_object_name: Option<String>
Optional, specifies the starting Object name to list from. Ignored if NextToken is not NULL
starting_object_prefix: Option<String>
Optional, specifies the starting Object prefix to list from. Ignored if NextToken is not NULL
max_results: Option<i32>
Maximum objects count
next_token: Option<String>
Pagination token
created_before: Option<DateTime>
(Optional) Created before filter
created_after: Option<DateTime>
(Optional) Created after filter
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) -> Option<i32>
pub fn max_results(&self) -> Option<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
.
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 for ListObjectsInput
impl PartialEq 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
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>
Creates a shared type from an unshared type.