Class: Aws::HealthLake::Types::KmsEncryptionConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::HealthLake::Types::KmsEncryptionConfig
- Defined in:
- gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb
Overview
The customer-managed-key (CMK) used when creating a data store. If a customer-owned key is not specified, an AWS-owned key is used for encryption.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cmk_type ⇒ String
The type of customer-managed-key (CMK) used for encryption.
-
#kms_key_id ⇒ String
The Key Management Service (KMS) encryption key id/alias used to encrypt the data store contents at rest.
Instance Attribute Details
#cmk_type ⇒ String
The type of customer-managed-key (CMK) used for encryption.
664 665 666 667 668 669 |
# File 'gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb', line 664 class KmsEncryptionConfig < Struct.new( :cmk_type, :kms_key_id) SENSITIVE = [] include Aws::Structure end |
#kms_key_id ⇒ String
The Key Management Service (KMS) encryption key id/alias used to encrypt the data store contents at rest.
664 665 666 667 668 669 |
# File 'gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb', line 664 class KmsEncryptionConfig < Struct.new( :cmk_type, :kms_key_id) SENSITIVE = [] include Aws::Structure end |