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 will be 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. The two types of supported CMKs are customer owned CMKs and AWS owned CMKs.

Returns:

  • (String)


665
666
667
668
669
670
# File 'gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb', line 665

class KmsEncryptionConfig < Struct.new(
  :cmk_type,
  :kms_key_id)
  SENSITIVE = []
  include Aws::Structure
end

#kms_key_idString

The KMS encryption key id/alias used to encrypt the data store contents at rest.

Returns:

  • (String)


665
666
667
668
669
670
# File 'gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb', line 665

class KmsEncryptionConfig < Struct.new(
  :cmk_type,
  :kms_key_id)
  SENSITIVE = []
  include Aws::Structure
end