#[non_exhaustive]pub struct ListDirectoryBucketsOutputBuilder { /* private fields */ }
Expand description
A builder for ListDirectoryBucketsOutput
.
Implementations§
source§impl ListDirectoryBucketsOutputBuilder
impl ListDirectoryBucketsOutputBuilder
sourcepub fn buckets(self, input: Bucket) -> Self
pub fn buckets(self, input: Bucket) -> Self
Appends an item to buckets
.
To override the contents of this collection use set_buckets
.
The list of buckets owned by the requester.
sourcepub fn set_buckets(self, input: Option<Vec<Bucket>>) -> Self
pub fn set_buckets(self, input: Option<Vec<Bucket>>) -> Self
The list of buckets owned by the requester.
sourcepub fn get_buckets(&self) -> &Option<Vec<Bucket>>
pub fn get_buckets(&self) -> &Option<Vec<Bucket>>
The list of buckets owned by the requester.
sourcepub fn continuation_token(self, input: impl Into<String>) -> Self
pub fn continuation_token(self, input: impl Into<String>) -> Self
If ContinuationToken
was sent with the request, it is included in the response. You can use the returned ContinuationToken
for pagination of the list response.
sourcepub fn set_continuation_token(self, input: Option<String>) -> Self
pub fn set_continuation_token(self, input: Option<String>) -> Self
If ContinuationToken
was sent with the request, it is included in the response. You can use the returned ContinuationToken
for pagination of the list response.
sourcepub fn get_continuation_token(&self) -> &Option<String>
pub fn get_continuation_token(&self) -> &Option<String>
If ContinuationToken
was sent with the request, it is included in the response. You can use the returned ContinuationToken
for pagination of the list response.
sourcepub fn build(self) -> ListDirectoryBucketsOutput
pub fn build(self) -> ListDirectoryBucketsOutput
Consumes the builder and constructs a ListDirectoryBucketsOutput
.
Trait Implementations§
source§impl Clone for ListDirectoryBucketsOutputBuilder
impl Clone for ListDirectoryBucketsOutputBuilder
source§fn clone(&self) -> ListDirectoryBucketsOutputBuilder
fn clone(&self) -> ListDirectoryBucketsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListDirectoryBucketsOutputBuilder
impl Default for ListDirectoryBucketsOutputBuilder
source§fn default() -> ListDirectoryBucketsOutputBuilder
fn default() -> ListDirectoryBucketsOutputBuilder
source§impl PartialEq for ListDirectoryBucketsOutputBuilder
impl PartialEq for ListDirectoryBucketsOutputBuilder
source§fn eq(&self, other: &ListDirectoryBucketsOutputBuilder) -> bool
fn eq(&self, other: &ListDirectoryBucketsOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListDirectoryBucketsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListDirectoryBucketsOutputBuilder
impl RefUnwindSafe for ListDirectoryBucketsOutputBuilder
impl Send for ListDirectoryBucketsOutputBuilder
impl Sync for ListDirectoryBucketsOutputBuilder
impl Unpin for ListDirectoryBucketsOutputBuilder
impl UnwindSafe for ListDirectoryBucketsOutputBuilder
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