#[non_exhaustive]pub struct ListDirectoryBucketsInputBuilder { /* private fields */ }
Expand description
A builder for ListDirectoryBucketsInput
.
Implementations§
source§impl ListDirectoryBucketsInputBuilder
impl ListDirectoryBucketsInputBuilder
sourcepub fn continuation_token(self, input: impl Into<String>) -> Self
pub fn continuation_token(self, input: impl Into<String>) -> Self
ContinuationToken
indicates to Amazon S3 that the list is being continued on buckets in this account with a token. ContinuationToken
is obfuscated and is not a real bucket name. You can use this ContinuationToken
for the pagination of the list results.
sourcepub fn set_continuation_token(self, input: Option<String>) -> Self
pub fn set_continuation_token(self, input: Option<String>) -> Self
ContinuationToken
indicates to Amazon S3 that the list is being continued on buckets in this account with a token. ContinuationToken
is obfuscated and is not a real bucket name. You can use this ContinuationToken
for the pagination of the list results.
sourcepub fn get_continuation_token(&self) -> &Option<String>
pub fn get_continuation_token(&self) -> &Option<String>
ContinuationToken
indicates to Amazon S3 that the list is being continued on buckets in this account with a token. ContinuationToken
is obfuscated and is not a real bucket name. You can use this ContinuationToken
for the pagination of the list results.
sourcepub fn max_directory_buckets(self, input: i32) -> Self
pub fn max_directory_buckets(self, input: i32) -> Self
Maximum number of buckets to be returned in response. When the number is more than the count of buckets that are owned by an Amazon Web Services account, return all the buckets in response.
sourcepub fn set_max_directory_buckets(self, input: Option<i32>) -> Self
pub fn set_max_directory_buckets(self, input: Option<i32>) -> Self
Maximum number of buckets to be returned in response. When the number is more than the count of buckets that are owned by an Amazon Web Services account, return all the buckets in response.
sourcepub fn get_max_directory_buckets(&self) -> &Option<i32>
pub fn get_max_directory_buckets(&self) -> &Option<i32>
Maximum number of buckets to be returned in response. When the number is more than the count of buckets that are owned by an Amazon Web Services account, return all the buckets in response.
sourcepub fn build(self) -> Result<ListDirectoryBucketsInput, BuildError>
pub fn build(self) -> Result<ListDirectoryBucketsInput, BuildError>
Consumes the builder and constructs a ListDirectoryBucketsInput
.
source§impl ListDirectoryBucketsInputBuilder
impl ListDirectoryBucketsInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<ListDirectoryBucketsOutput, SdkError<ListDirectoryBucketsError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<ListDirectoryBucketsOutput, SdkError<ListDirectoryBucketsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListDirectoryBucketsInputBuilder
impl Clone for ListDirectoryBucketsInputBuilder
source§fn clone(&self) -> ListDirectoryBucketsInputBuilder
fn clone(&self) -> ListDirectoryBucketsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListDirectoryBucketsInputBuilder
impl Default for ListDirectoryBucketsInputBuilder
source§fn default() -> ListDirectoryBucketsInputBuilder
fn default() -> ListDirectoryBucketsInputBuilder
source§impl PartialEq for ListDirectoryBucketsInputBuilder
impl PartialEq for ListDirectoryBucketsInputBuilder
source§fn eq(&self, other: &ListDirectoryBucketsInputBuilder) -> bool
fn eq(&self, other: &ListDirectoryBucketsInputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListDirectoryBucketsInputBuilder
Auto Trait Implementations§
impl Freeze for ListDirectoryBucketsInputBuilder
impl RefUnwindSafe for ListDirectoryBucketsInputBuilder
impl Send for ListDirectoryBucketsInputBuilder
impl Sync for ListDirectoryBucketsInputBuilder
impl Unpin for ListDirectoryBucketsInputBuilder
impl UnwindSafe for ListDirectoryBucketsInputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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