Class: Aws::HealthLake::Types::KmsEncryptionConfig

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#cmk_typeString

The type of customer-managed-key (CMK) used for encryption.

Returns:

  • (String)


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_idString

The Key Management Service (KMS) encryption key id/alias used to encrypt the data store contents at rest.

Returns:

  • (String)


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