#[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 ==
.