#[non_exhaustive]pub struct GetAliasOutputBuilder { /* private fields */ }
Expand description
A builder for GetAliasOutput
.
Implementations§
source§impl GetAliasOutputBuilder
impl GetAliasOutputBuilder
sourcepub fn alias(self, input: Alias) -> Self
pub fn alias(self, input: Alias) -> Self
The alias of the Amazon Web Services Payment Cryptography key.
This field is required.sourcepub fn set_alias(self, input: Option<Alias>) -> Self
pub fn set_alias(self, input: Option<Alias>) -> Self
The alias of the Amazon Web Services Payment Cryptography key.
sourcepub fn get_alias(&self) -> &Option<Alias>
pub fn get_alias(&self) -> &Option<Alias>
The alias of the Amazon Web Services Payment Cryptography key.
sourcepub fn build(self) -> GetAliasOutput
pub fn build(self) -> GetAliasOutput
Consumes the builder and constructs a GetAliasOutput
.
Trait Implementations§
source§impl Clone for GetAliasOutputBuilder
impl Clone for GetAliasOutputBuilder
source§fn clone(&self) -> GetAliasOutputBuilder
fn clone(&self) -> GetAliasOutputBuilder
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 GetAliasOutputBuilder
impl Debug for GetAliasOutputBuilder
source§impl Default for GetAliasOutputBuilder
impl Default for GetAliasOutputBuilder
source§fn default() -> GetAliasOutputBuilder
fn default() -> GetAliasOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetAliasOutputBuilder
impl PartialEq for GetAliasOutputBuilder
impl StructuralPartialEq for GetAliasOutputBuilder
Auto Trait Implementations§
impl Freeze for GetAliasOutputBuilder
impl RefUnwindSafe for GetAliasOutputBuilder
impl Send for GetAliasOutputBuilder
impl Sync for GetAliasOutputBuilder
impl Unpin for GetAliasOutputBuilder
impl UnwindSafe for GetAliasOutputBuilder
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.