#[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§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