Struct aws_sdk_paymentcryptography::operation::update_alias::builders::UpdateAliasInputBuilder
source · #[non_exhaustive]pub struct UpdateAliasInputBuilder { /* private fields */ }Expand description
A builder for UpdateAliasInput.
Implementations§
source§impl UpdateAliasInputBuilder
impl UpdateAliasInputBuilder
sourcepub fn alias_name(self, input: impl Into<String>) -> Self
pub fn alias_name(self, input: impl Into<String>) -> Self
The alias whose associated key is changing.
This field is required.sourcepub fn set_alias_name(self, input: Option<String>) -> Self
pub fn set_alias_name(self, input: Option<String>) -> Self
The alias whose associated key is changing.
sourcepub fn get_alias_name(&self) -> &Option<String>
pub fn get_alias_name(&self) -> &Option<String>
The alias whose associated key is changing.
sourcepub fn key_arn(self, input: impl Into<String>) -> Self
pub fn key_arn(self, input: impl Into<String>) -> Self
The KeyARN for the key that you are updating or removing from the alias.
sourcepub fn set_key_arn(self, input: Option<String>) -> Self
pub fn set_key_arn(self, input: Option<String>) -> Self
The KeyARN for the key that you are updating or removing from the alias.
sourcepub fn get_key_arn(&self) -> &Option<String>
pub fn get_key_arn(&self) -> &Option<String>
The KeyARN for the key that you are updating or removing from the alias.
sourcepub fn build(self) -> Result<UpdateAliasInput, BuildError>
pub fn build(self) -> Result<UpdateAliasInput, BuildError>
Consumes the builder and constructs a UpdateAliasInput.
source§impl UpdateAliasInputBuilder
impl UpdateAliasInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<UpdateAliasOutput, SdkError<UpdateAliasError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<UpdateAliasOutput, SdkError<UpdateAliasError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateAliasInputBuilder
impl Clone for UpdateAliasInputBuilder
source§fn clone(&self) -> UpdateAliasInputBuilder
fn clone(&self) -> UpdateAliasInputBuilder
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 UpdateAliasInputBuilder
impl Debug for UpdateAliasInputBuilder
source§impl Default for UpdateAliasInputBuilder
impl Default for UpdateAliasInputBuilder
source§fn default() -> UpdateAliasInputBuilder
fn default() -> UpdateAliasInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for UpdateAliasInputBuilder
impl PartialEq for UpdateAliasInputBuilder
source§fn eq(&self, other: &UpdateAliasInputBuilder) -> bool
fn eq(&self, other: &UpdateAliasInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateAliasInputBuilder
Auto Trait Implementations§
impl Freeze for UpdateAliasInputBuilder
impl RefUnwindSafe for UpdateAliasInputBuilder
impl Send for UpdateAliasInputBuilder
impl Sync for UpdateAliasInputBuilder
impl Unpin for UpdateAliasInputBuilder
impl UnwindSafe for UpdateAliasInputBuilder
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.