Class: Aws::ConnectHealth::Types::EncryptionContext

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-connecthealth/lib/aws-sdk-connecthealth/types.rb

Overview

Encryption context for a Domain.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#encryption_typeString

The type of encryption key used.

Returns:

  • (String)


446
447
448
449
450
451
# File 'gems/aws-sdk-connecthealth/lib/aws-sdk-connecthealth/types.rb', line 446

class EncryptionContext < Struct.new(
  :encryption_type,
  :kms_key_arn)
  SENSITIVE = []
  include Aws::Structure
end

#kms_key_arnString

The ARN of the KMS key. Only present when encryptionType is CUSTOMER_MANAGED_KEY.

Returns:

  • (String)


446
447
448
449
450
451
# File 'gems/aws-sdk-connecthealth/lib/aws-sdk-connecthealth/types.rb', line 446

class EncryptionContext < Struct.new(
  :encryption_type,
  :kms_key_arn)
  SENSITIVE = []
  include Aws::Structure
end