#[non_exhaustive]pub struct DeleteImportedKeyMaterialInput {
pub key_id: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.key_id: Option<String>
Identifies the KMS key from which you are deleting imported key material. The Origin
of the KMS key must be EXTERNAL
.
Specify the key ID or key ARN of the KMS key.
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 KMS key, use ListKeys
or DescribeKey
.
Implementations§
Source§impl DeleteImportedKeyMaterialInput
impl DeleteImportedKeyMaterialInput
Sourcepub fn key_id(&self) -> Option<&str>
pub fn key_id(&self) -> Option<&str>
Identifies the KMS key from which you are deleting imported key material. The Origin
of the KMS key must be EXTERNAL
.
Specify the key ID or key ARN of the KMS key.
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 KMS key, use ListKeys
or DescribeKey
.
Source§impl DeleteImportedKeyMaterialInput
impl DeleteImportedKeyMaterialInput
Sourcepub fn builder() -> DeleteImportedKeyMaterialInputBuilder
pub fn builder() -> DeleteImportedKeyMaterialInputBuilder
Creates a new builder-style object to manufacture DeleteImportedKeyMaterialInput
.
Trait Implementations§
Source§impl Clone for DeleteImportedKeyMaterialInput
impl Clone for DeleteImportedKeyMaterialInput
Source§fn clone(&self) -> DeleteImportedKeyMaterialInput
fn clone(&self) -> DeleteImportedKeyMaterialInput
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl PartialEq for DeleteImportedKeyMaterialInput
impl PartialEq for DeleteImportedKeyMaterialInput
Source§fn eq(&self, other: &DeleteImportedKeyMaterialInput) -> bool
fn eq(&self, other: &DeleteImportedKeyMaterialInput) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DeleteImportedKeyMaterialInput
Auto Trait Implementations§
impl Freeze for DeleteImportedKeyMaterialInput
impl RefUnwindSafe for DeleteImportedKeyMaterialInput
impl Send for DeleteImportedKeyMaterialInput
impl Sync for DeleteImportedKeyMaterialInput
impl Unpin for DeleteImportedKeyMaterialInput
impl UnwindSafe for DeleteImportedKeyMaterialInput
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
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>
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>
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 more