#[non_exhaustive]pub struct RotateKeyOnDemandOutputBuilder { /* private fields */ }
Expand description
A builder for RotateKeyOnDemandOutput
.
Implementations§
Source§impl RotateKeyOnDemandOutputBuilder
impl RotateKeyOnDemandOutputBuilder
Sourcepub fn key_id(self, input: impl Into<String>) -> Self
pub fn key_id(self, input: impl Into<String>) -> Self
Identifies the symmetric encryption KMS key that you initiated on-demand rotation on.
Sourcepub fn set_key_id(self, input: Option<String>) -> Self
pub fn set_key_id(self, input: Option<String>) -> Self
Identifies the symmetric encryption KMS key that you initiated on-demand rotation on.
Sourcepub fn get_key_id(&self) -> &Option<String>
pub fn get_key_id(&self) -> &Option<String>
Identifies the symmetric encryption KMS key that you initiated on-demand rotation on.
Sourcepub fn build(self) -> RotateKeyOnDemandOutput
pub fn build(self) -> RotateKeyOnDemandOutput
Consumes the builder and constructs a RotateKeyOnDemandOutput
.
Trait Implementations§
Source§impl Clone for RotateKeyOnDemandOutputBuilder
impl Clone for RotateKeyOnDemandOutputBuilder
Source§fn clone(&self) -> RotateKeyOnDemandOutputBuilder
fn clone(&self) -> RotateKeyOnDemandOutputBuilder
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 RotateKeyOnDemandOutputBuilder
impl Default for RotateKeyOnDemandOutputBuilder
Source§fn default() -> RotateKeyOnDemandOutputBuilder
fn default() -> RotateKeyOnDemandOutputBuilder
Returns the “default value” for a type. Read more
Source§impl PartialEq for RotateKeyOnDemandOutputBuilder
impl PartialEq for RotateKeyOnDemandOutputBuilder
Source§fn eq(&self, other: &RotateKeyOnDemandOutputBuilder) -> bool
fn eq(&self, other: &RotateKeyOnDemandOutputBuilder) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for RotateKeyOnDemandOutputBuilder
Auto Trait Implementations§
impl Freeze for RotateKeyOnDemandOutputBuilder
impl RefUnwindSafe for RotateKeyOnDemandOutputBuilder
impl Send for RotateKeyOnDemandOutputBuilder
impl Sync for RotateKeyOnDemandOutputBuilder
impl Unpin for RotateKeyOnDemandOutputBuilder
impl UnwindSafe for RotateKeyOnDemandOutputBuilder
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§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.