#[non_exhaustive]pub struct GetBucketOutputBuilder { /* private fields */ }
Expand description
A builder for GetBucketOutput
.
Implementations§
source§impl GetBucketOutputBuilder
impl GetBucketOutputBuilder
sourcepub fn set_bucket(self, input: Option<String>) -> Self
pub fn set_bucket(self, input: Option<String>) -> Self
The Outposts bucket requested.
sourcepub fn get_bucket(&self) -> &Option<String>
pub fn get_bucket(&self) -> &Option<String>
The Outposts bucket requested.
sourcepub fn public_access_block_enabled(self, input: bool) -> Self
pub fn public_access_block_enabled(self, input: bool) -> Self
sourcepub fn set_public_access_block_enabled(self, input: Option<bool>) -> Self
pub fn set_public_access_block_enabled(self, input: Option<bool>) -> Self
sourcepub fn get_public_access_block_enabled(&self) -> &Option<bool>
pub fn get_public_access_block_enabled(&self) -> &Option<bool>
sourcepub fn creation_date(self, input: DateTime) -> Self
pub fn creation_date(self, input: DateTime) -> Self
The creation date of the Outposts bucket.
sourcepub fn set_creation_date(self, input: Option<DateTime>) -> Self
pub fn set_creation_date(self, input: Option<DateTime>) -> Self
The creation date of the Outposts bucket.
sourcepub fn get_creation_date(&self) -> &Option<DateTime>
pub fn get_creation_date(&self) -> &Option<DateTime>
The creation date of the Outposts bucket.
sourcepub fn build(self) -> GetBucketOutput
pub fn build(self) -> GetBucketOutput
Consumes the builder and constructs a GetBucketOutput
.
Trait Implementations§
source§impl Clone for GetBucketOutputBuilder
impl Clone for GetBucketOutputBuilder
source§fn clone(&self) -> GetBucketOutputBuilder
fn clone(&self) -> GetBucketOutputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for GetBucketOutputBuilder
impl Debug for GetBucketOutputBuilder
source§impl Default for GetBucketOutputBuilder
impl Default for GetBucketOutputBuilder
source§fn default() -> GetBucketOutputBuilder
fn default() -> GetBucketOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetBucketOutputBuilder
impl PartialEq for GetBucketOutputBuilder
impl StructuralPartialEq for GetBucketOutputBuilder
Auto Trait Implementations§
impl Freeze for GetBucketOutputBuilder
impl RefUnwindSafe for GetBucketOutputBuilder
impl Send for GetBucketOutputBuilder
impl Sync for GetBucketOutputBuilder
impl Unpin for GetBucketOutputBuilder
impl UnwindSafe for GetBucketOutputBuilder
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
Mutably borrows from an owned value. Read more
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)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.