Class: Aws::Kafka::Types::EncryptionAtRest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kafka::Types::EncryptionAtRest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kafka/types.rb
Overview
The data-volume encryption details.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#data_volume_kms_key_id ⇒ String
The ARN of the AWS KMS key for encrypting data at rest.
Instance Attribute Details
#data_volume_kms_key_id ⇒ String
The ARN of the AWS KMS key for encrypting data at rest. If you don’t specify a KMS key, MSK creates one for you and uses it.
1835 1836 1837 1838 1839 |
# File 'lib/aws-sdk-kafka/types.rb', line 1835 class EncryptionAtRest < Struct.new( :data_volume_kms_key_id) SENSITIVE = [] include Aws::Structure end |