Class: Aws::ChimeSDKVoice::Types::ServerSideEncryptionConfiguration

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

Overview

A structure that contains the configuration settings for server-side encryption.

We only support symmetric keys. Do not use asymmetric or HMAC keys, or KMS aliases.

Constant Summary collapse

SENSITIVE =
[:kms_key_arn]

Instance Attribute Summary collapse

Instance Attribute Details

#kms_key_arnString

The ARN of the KMS key used to encrypt the enrollment data in a voice profile domain. Asymmetric customer managed keys are not supported.

Returns:

  • (String)


2855
2856
2857
2858
2859
# File 'gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb', line 2855

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