Struct rusoto_kms::UpdateAliasRequest
source · [−]Fields
alias_name: String
Identifies the alias that is changing its CMK. This value must begin with alias/
followed by the alias name, such as alias/ExampleAlias
. You cannot use UpdateAlias to change the alias name.
target_key_id: String
Identifies the customer managed CMK to associate with the alias. You don't have permission to associate an alias with an AWS managed CMK.
The CMK must be in the same AWS account and Region as the alias. Also, the new target CMK must be the same type as the current target CMK (both symmetric or both asymmetric) and they must have the same key usage.
Specify the key ID or key ARN of the CMK.
For example:
-
Key ID:
1234abcd-12ab-34cd-56ef-1234567890ab
-
Key ARN:
arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab
To get the key ID and key ARN for a CMK, use ListKeys or DescribeKey.
To verify that the alias is mapped to the correct CMK, use ListAliases.
Trait Implementations
sourceimpl Clone for UpdateAliasRequest
impl Clone for UpdateAliasRequest
sourcefn clone(&self) -> UpdateAliasRequest
fn clone(&self) -> UpdateAliasRequest
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for UpdateAliasRequest
impl Debug for UpdateAliasRequest
sourceimpl Default for UpdateAliasRequest
impl Default for UpdateAliasRequest
sourcefn default() -> UpdateAliasRequest
fn default() -> UpdateAliasRequest
Returns the “default value” for a type. Read more
sourceimpl PartialEq<UpdateAliasRequest> for UpdateAliasRequest
impl PartialEq<UpdateAliasRequest> for UpdateAliasRequest
sourcefn eq(&self, other: &UpdateAliasRequest) -> bool
fn eq(&self, other: &UpdateAliasRequest) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &UpdateAliasRequest) -> bool
fn ne(&self, other: &UpdateAliasRequest) -> bool
This method tests for !=
.
sourceimpl Serialize for UpdateAliasRequest
impl Serialize for UpdateAliasRequest
impl StructuralPartialEq for UpdateAliasRequest
Auto Trait Implementations
impl RefUnwindSafe for UpdateAliasRequest
impl Send for UpdateAliasRequest
impl Sync for UpdateAliasRequest
impl Unpin for UpdateAliasRequest
impl UnwindSafe for UpdateAliasRequest
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more