Class: Aws::HealthLake::Types::KmsEncryptionConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::HealthLake::Types::KmsEncryptionConfig
- Includes:
- Structure
- Defined in:
- 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 will be 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 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. The two types of supported CMKs are customer owned CMKs and AWS owned CMKs.
665 666 667 668 669 670 |
# File 'lib/aws-sdk-healthlake/types.rb', line 665 class KmsEncryptionConfig < Struct.new( :cmk_type, :kms_key_id) SENSITIVE = [] include Aws::Structure end |
#kms_key_id ⇒ String
The KMS encryption key id/alias used to encrypt the data store contents at rest.
665 666 667 668 669 670 |
# File 'lib/aws-sdk-healthlake/types.rb', line 665 class KmsEncryptionConfig < Struct.new( :cmk_type, :kms_key_id) SENSITIVE = [] include Aws::Structure end |