Struct aws_sdk_backupstorage::input::ListObjectsInput
source · [−]#[non_exhaustive]pub struct ListObjectsInput { /* private fields */ }
Implementations
sourceimpl 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
.
sourceimpl 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
sourceimpl Clone for ListObjectsInput
impl Clone for ListObjectsInput
sourcefn clone(&self) -> ListObjectsInput
fn clone(&self) -> ListObjectsInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ListObjectsInput
impl Debug for ListObjectsInput
sourceimpl PartialEq<ListObjectsInput> for ListObjectsInput
impl PartialEq<ListObjectsInput> for ListObjectsInput
sourcefn eq(&self, other: &ListObjectsInput) -> bool
fn eq(&self, other: &ListObjectsInput) -> bool
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more