pub struct ListObjectsFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to ListObjects
.
List all Objects in a given Backup.
Implementations§
source§impl ListObjectsFluentBuilder
impl ListObjectsFluentBuilder
sourcepub fn as_input(&self) -> &ListObjectsInputBuilder
pub fn as_input(&self) -> &ListObjectsInputBuilder
Access the ListObjects as a reference.
sourcepub async fn send(
self
) -> Result<ListObjectsOutput, SdkError<ListObjectsError, HttpResponse>>
pub async fn send( self ) -> Result<ListObjectsOutput, SdkError<ListObjectsError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<ListObjectsOutput, ListObjectsError, Self>
pub fn customize( self ) -> CustomizableOperation<ListObjectsOutput, ListObjectsError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn into_paginator(self) -> ListObjectsPaginator
pub fn into_paginator(self) -> ListObjectsPaginator
Create a paginator for this request
Paginators are used by calling send().await
which returns a PaginationStream
.
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 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
Trait Implementations§
source§impl Clone for ListObjectsFluentBuilder
impl Clone for ListObjectsFluentBuilder
source§fn clone(&self) -> ListObjectsFluentBuilder
fn clone(&self) -> ListObjectsFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more