Struct aws_sdk_s3::operation::list_buckets::ListBucketsInput
source · #[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§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