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