#[non_exhaustive]pub struct ListObjectsInputBuilder { /* private fields */ }
Expand description
A builder for ListObjectsInput
.
Implementations§
source§impl ListObjectsInputBuilder
impl ListObjectsInputBuilder
sourcepub fn storage_job_id(self, input: impl Into<String>) -> Self
pub fn storage_job_id(self, input: impl Into<String>) -> Self
Storage job id This field is required.
sourcepub fn set_storage_job_id(self, input: Option<String>) -> Self
pub fn set_storage_job_id(self, input: Option<String>) -> Self
Storage job id
sourcepub fn get_storage_job_id(&self) -> &Option<String>
pub fn get_storage_job_id(&self) -> &Option<String>
Storage job id
sourcepub fn starting_object_name(self, input: impl Into<String>) -> Self
pub fn starting_object_name(self, input: impl Into<String>) -> Self
Optional, specifies the starting Object name to list from. Ignored if NextToken is not NULL
sourcepub fn set_starting_object_name(self, input: Option<String>) -> Self
pub fn set_starting_object_name(self, input: Option<String>) -> Self
Optional, specifies the starting Object name to list from. Ignored if NextToken is not NULL
sourcepub fn get_starting_object_name(&self) -> &Option<String>
pub fn get_starting_object_name(&self) -> &Option<String>
Optional, specifies the starting Object name to list from. Ignored if NextToken is not NULL
sourcepub fn starting_object_prefix(self, input: impl Into<String>) -> Self
pub fn starting_object_prefix(self, input: impl Into<String>) -> Self
Optional, specifies the starting Object prefix to list from. Ignored if NextToken is not NULL
sourcepub fn set_starting_object_prefix(self, input: Option<String>) -> Self
pub fn set_starting_object_prefix(self, input: Option<String>) -> Self
Optional, specifies the starting Object prefix to list from. Ignored if NextToken is not NULL
sourcepub fn get_starting_object_prefix(&self) -> &Option<String>
pub fn get_starting_object_prefix(&self) -> &Option<String>
Optional, specifies the starting Object prefix to list from. Ignored if NextToken is not NULL
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
Maximum objects count
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
Maximum objects count
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
Maximum objects count
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
Pagination token
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
Pagination token
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
Pagination token
sourcepub fn created_before(self, input: DateTime) -> Self
pub fn created_before(self, input: DateTime) -> Self
(Optional) Created before filter
sourcepub fn set_created_before(self, input: Option<DateTime>) -> Self
pub fn set_created_before(self, input: Option<DateTime>) -> Self
(Optional) Created before filter
sourcepub fn get_created_before(&self) -> &Option<DateTime>
pub fn get_created_before(&self) -> &Option<DateTime>
(Optional) Created before filter
sourcepub fn created_after(self, input: DateTime) -> Self
pub fn created_after(self, input: DateTime) -> Self
(Optional) Created after filter
sourcepub fn set_created_after(self, input: Option<DateTime>) -> Self
pub fn set_created_after(self, input: Option<DateTime>) -> Self
(Optional) Created after filter
sourcepub fn get_created_after(&self) -> &Option<DateTime>
pub fn get_created_after(&self) -> &Option<DateTime>
(Optional) Created after filter
sourcepub fn build(self) -> Result<ListObjectsInput, BuildError>
pub fn build(self) -> Result<ListObjectsInput, BuildError>
Consumes the builder and constructs a ListObjectsInput
.
source§impl ListObjectsInputBuilder
impl ListObjectsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListObjectsOutput, SdkError<ListObjectsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListObjectsOutput, SdkError<ListObjectsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListObjectsInputBuilder
impl Clone for ListObjectsInputBuilder
source§fn clone(&self) -> ListObjectsInputBuilder
fn clone(&self) -> ListObjectsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListObjectsInputBuilder
impl Debug for ListObjectsInputBuilder
source§impl Default for ListObjectsInputBuilder
impl Default for ListObjectsInputBuilder
source§fn default() -> ListObjectsInputBuilder
fn default() -> ListObjectsInputBuilder
source§impl PartialEq for ListObjectsInputBuilder
impl PartialEq for ListObjectsInputBuilder
source§fn eq(&self, other: &ListObjectsInputBuilder) -> bool
fn eq(&self, other: &ListObjectsInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListObjectsInputBuilder
Auto Trait Implementations§
impl Freeze for ListObjectsInputBuilder
impl RefUnwindSafe for ListObjectsInputBuilder
impl Send for ListObjectsInputBuilder
impl Sync for ListObjectsInputBuilder
impl Unpin for ListObjectsInputBuilder
impl UnwindSafe for ListObjectsInputBuilder
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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more