[−][src]Struct rusoto_kms::KeyMetadata
Contains metadata about a customer master key (CMK).
This data type is used as a response element for the CreateKey and DescribeKey operations.
Fields
aws_account_id: Option<String>
The twelve-digit account ID of the AWS account that owns the CMK.
arn: Option<String>
The Amazon Resource Name (ARN) of the CMK. For examples, see AWS Key Management Service (AWS KMS) in the Example ARNs section of the AWS General Reference.
cloud_hsm_cluster_id: Option<String>
The cluster ID of the AWS CloudHSM cluster that contains the key material for the CMK. When you create a CMK in a custom key store, AWS KMS creates the key material for the CMK in the associated AWS CloudHSM cluster. This value is present only when the CMK is created in a custom key store.
creation_date: Option<f64>
The date and time when the CMK was created.
custom_key_store_id: Option<String>
A unique identifier for the custom key store that contains the CMK. This value is present only when the CMK is created in a custom key store.
deletion_date: Option<f64>
The date and time after which AWS KMS deletes the CMK. This value is present only when KeyState
is PendingDeletion
.
description: Option<String>
The description of the CMK.
enabled: Option<bool>
Specifies whether the CMK is enabled. When KeyState
is Enabled
this value is true, otherwise it is false.
expiration_model: Option<String>
Specifies whether the CMK's key material expires. This value is present only when Origin
is EXTERNAL
, otherwise this value is omitted.
key_id: String
The globally unique identifier for the CMK.
key_manager: Option<String>
The manager of the CMK. CMKs in your AWS account are either customer managed or AWS managed. For more information about the difference, see Customer Master Keys in the AWS Key Management Service Developer Guide.
key_state: Option<String>
The state of the CMK.
For more information about how key state affects the use of a CMK, see How Key State Affects the Use of a Customer Master Key in the AWS Key Management Service Developer Guide.
key_usage: Option<String>
The cryptographic operations for which you can use the CMK. The only valid value is ENCRYPT_DECRYPT
, which means you can use the CMK to encrypt and decrypt data.
origin: Option<String>
The source of the CMK's key material. When this value is AWS_KMS
, AWS KMS created the key material. When this value is EXTERNAL
, the key material was imported from your existing key management infrastructure or the CMK lacks key material. When this value is AWS_CLOUDHSM
, the key material was created in the AWS CloudHSM cluster associated with a custom key store.
valid_to: Option<f64>
The time at which the imported key material expires. When the key material expires, AWS KMS deletes the key material and the CMK becomes unusable. This value is present only for CMKs whose Origin
is EXTERNAL
and whose ExpirationModel
is KEY_MATERIAL_EXPIRES
, otherwise this value is omitted.
Trait Implementations
impl PartialEq<KeyMetadata> for KeyMetadata
[src]
fn eq(&self, other: &KeyMetadata) -> bool
[src]
fn ne(&self, other: &KeyMetadata) -> bool
[src]
impl Default for KeyMetadata
[src]
fn default() -> KeyMetadata
[src]
impl Clone for KeyMetadata
[src]
fn clone(&self) -> KeyMetadata
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for KeyMetadata
[src]
impl<'de> Deserialize<'de> for KeyMetadata
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for KeyMetadata
impl Sync for KeyMetadata
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self