Class: Aws::ChimeSDKVoice::Types::ServerSideEncryptionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::ChimeSDKVoice::Types::ServerSideEncryptionConfiguration
- Defined in:
- gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb
Overview
A structure that contains the configuration settings for server-side encryption.
Constant Summary collapse
- SENSITIVE =
[:kms_key_arn]
Instance Attribute Summary collapse
-
#kms_key_arn ⇒ String
The ARN of the KMS key used to encrypt the enrollment data in a voice profile domain.
Instance Attribute Details
#kms_key_arn ⇒ String
The ARN of the KMS key used to encrypt the enrollment data in a voice profile domain. Asymmetric customer managed keys are not supported.
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 |