#[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
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 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 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 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 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 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 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 build(self) -> Result<ListObjectsInput, BuildError>
pub fn build(self) -> Result<ListObjectsInput, BuildError>
Consumes the builder and constructs a ListObjectsInput
.
Trait Implementations§
source§impl Clone for ListObjectsInputBuilder
impl Clone for ListObjectsInputBuilder
source§fn clone(&self) -> ListObjectsInputBuilder
fn clone(&self) -> ListObjectsInputBuilder
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 ListObjectsInputBuilder
impl Debug for ListObjectsInputBuilder
source§impl Default for ListObjectsInputBuilder
impl Default for ListObjectsInputBuilder
source§fn default() -> ListObjectsInputBuilder
fn default() -> ListObjectsInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<ListObjectsInputBuilder> for ListObjectsInputBuilder
impl PartialEq<ListObjectsInputBuilder> for ListObjectsInputBuilder
source§fn eq(&self, other: &ListObjectsInputBuilder) -> bool
fn eq(&self, other: &ListObjectsInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.