Struct aws_sdk_backupstorage::input::list_objects_input::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for ListObjectsInput
.
Implementations§
source§impl Builder
impl Builder
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
.