Method: Aws::KMS::Types::KeyMetadata#expiration_model
- Defined in:
- lib/aws-sdk-kms/types.rb
#expiration_model ⇒ String
Specifies whether the KMS key’s key material expires. This value is present only when Origin is EXTERNAL, otherwise this value is omitted.
4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 |
# File 'lib/aws-sdk-kms/types.rb', line 4617 class KeyMetadata < Struct.new( :aws_account_id, :key_id, :arn, :creation_date, :enabled, :description, :key_usage, :key_state, :deletion_date, :valid_to, :origin, :custom_key_store_id, :cloud_hsm_cluster_id, :expiration_model, :key_manager, :customer_master_key_spec, :key_spec, :encryption_algorithms, :signing_algorithms, :key_agreement_algorithms, :multi_region, :multi_region_configuration, :pending_deletion_window_in_days, :mac_algorithms, :xks_key_configuration, :current_key_material_id) SENSITIVE = [] include Aws::Structure end |