Class: Aws::OSIS::Types::EncryptionAtRestOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::OSIS::Types::EncryptionAtRestOptions
- Defined in:
- gems/aws-sdk-osis/lib/aws-sdk-osis/types.rb
Overview
Options to control how OpenSearch encrypts buffer data.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#kms_key_arn ⇒ String
The ARN of the KMS key used to encrypt buffer data.
Instance Attribute Details
#kms_key_arn ⇒ String
The ARN of the KMS key used to encrypt buffer data. By default, data is encrypted using an Amazon Web Services owned key.
227 228 229 230 231 |
# File 'gems/aws-sdk-osis/lib/aws-sdk-osis/types.rb', line 227 class EncryptionAtRestOptions < Struct.new( :kms_key_arn) SENSITIVE = [] include Aws::Structure end |