Struct aws_sdk_ec2::operation::get_ebs_encryption_by_default::builders::GetEbsEncryptionByDefaultOutputBuilder
source · #[non_exhaustive]pub struct GetEbsEncryptionByDefaultOutputBuilder { /* private fields */ }
Expand description
A builder for GetEbsEncryptionByDefaultOutput
.
Implementations§
source§impl GetEbsEncryptionByDefaultOutputBuilder
impl GetEbsEncryptionByDefaultOutputBuilder
sourcepub fn ebs_encryption_by_default(self, input: bool) -> Self
pub fn ebs_encryption_by_default(self, input: bool) -> Self
Indicates whether encryption by default is enabled.
sourcepub fn set_ebs_encryption_by_default(self, input: Option<bool>) -> Self
pub fn set_ebs_encryption_by_default(self, input: Option<bool>) -> Self
Indicates whether encryption by default is enabled.
sourcepub fn get_ebs_encryption_by_default(&self) -> &Option<bool>
pub fn get_ebs_encryption_by_default(&self) -> &Option<bool>
Indicates whether encryption by default is enabled.
sourcepub fn set_sse_type(self, input: Option<SseType>) -> Self
pub fn set_sse_type(self, input: Option<SseType>) -> Self
Reserved for future use.
sourcepub fn get_sse_type(&self) -> &Option<SseType>
pub fn get_sse_type(&self) -> &Option<SseType>
Reserved for future use.
sourcepub fn build(self) -> GetEbsEncryptionByDefaultOutput
pub fn build(self) -> GetEbsEncryptionByDefaultOutput
Consumes the builder and constructs a GetEbsEncryptionByDefaultOutput
.
Trait Implementations§
source§impl Clone for GetEbsEncryptionByDefaultOutputBuilder
impl Clone for GetEbsEncryptionByDefaultOutputBuilder
source§fn clone(&self) -> GetEbsEncryptionByDefaultOutputBuilder
fn clone(&self) -> GetEbsEncryptionByDefaultOutputBuilder
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 Default for GetEbsEncryptionByDefaultOutputBuilder
impl Default for GetEbsEncryptionByDefaultOutputBuilder
source§fn default() -> GetEbsEncryptionByDefaultOutputBuilder
fn default() -> GetEbsEncryptionByDefaultOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetEbsEncryptionByDefaultOutputBuilder
impl PartialEq for GetEbsEncryptionByDefaultOutputBuilder
source§fn eq(&self, other: &GetEbsEncryptionByDefaultOutputBuilder) -> bool
fn eq(&self, other: &GetEbsEncryptionByDefaultOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetEbsEncryptionByDefaultOutputBuilder
Auto Trait Implementations§
impl Freeze for GetEbsEncryptionByDefaultOutputBuilder
impl RefUnwindSafe for GetEbsEncryptionByDefaultOutputBuilder
impl Send for GetEbsEncryptionByDefaultOutputBuilder
impl Sync for GetEbsEncryptionByDefaultOutputBuilder
impl Unpin for GetEbsEncryptionByDefaultOutputBuilder
impl UnwindSafe for GetEbsEncryptionByDefaultOutputBuilder
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> 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.