#[non_exhaustive]pub struct ListBucketsInput {
pub max_buckets: Option<i32>,
pub continuation_token: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.max_buckets: 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.
continuation_token: Option<String>ContinuationToken indicates to Amazon S3 that the list is being continued on this bucket with a token. ContinuationToken is obfuscated and is not a real key. You can use this ContinuationToken for pagination of the list results.
Length Constraints: Minimum length of 0. Maximum length of 1024.
Required: No.
Implementations§
Source§impl ListBucketsInput
impl ListBucketsInput
Sourcepub fn max_buckets(&self) -> Option<i32>
pub fn max_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 continuation_token(&self) -> Option<&str>
pub fn continuation_token(&self) -> Option<&str>
ContinuationToken indicates to Amazon S3 that the list is being continued on this bucket with a token. ContinuationToken is obfuscated and is not a real key. You can use this ContinuationToken for pagination of the list results.
Length Constraints: Minimum length of 0. Maximum length of 1024.
Required: No.
Source§impl ListBucketsInput
impl ListBucketsInput
Sourcepub fn builder() -> ListBucketsInputBuilder
pub fn builder() -> ListBucketsInputBuilder
Creates a new builder-style object to manufacture ListBucketsInput.
Trait Implementations§
Source§impl Clone for ListBucketsInput
impl Clone for ListBucketsInput
Source§fn clone(&self) -> ListBucketsInput
fn clone(&self) -> ListBucketsInput
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for ListBucketsInput
impl Debug for ListBucketsInput
Source§impl PartialEq for ListBucketsInput
impl PartialEq for ListBucketsInput
impl StructuralPartialEq for ListBucketsInput
Auto Trait Implementations§
impl Freeze for ListBucketsInput
impl RefUnwindSafe for ListBucketsInput
impl Send for ListBucketsInput
impl Sync for ListBucketsInput
impl Unpin for ListBucketsInput
impl UnwindSafe for ListBucketsInput
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