Class: Aws::Kendra::Types::ServerSideEncryptionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::ServerSideEncryptionConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kendra/types.rb
Overview
Provides the identifier of the KMS key used to encrypt data indexed by Amazon Kendra. Amazon Kendra doesn’t support asymmetric keys.
Constant Summary collapse
- SENSITIVE =
[:kms_key_id]
Instance Attribute Summary collapse
-
#kms_key_id ⇒ String
The identifier of the KMS key.
Instance Attribute Details
#kms_key_id ⇒ String
The identifier of the KMS key. Amazon Kendra doesn’t support asymmetric keys.
9218 9219 9220 9221 9222 |
# File 'lib/aws-sdk-kendra/types.rb', line 9218 class ServerSideEncryptionConfiguration < Struct.new( :kms_key_id) SENSITIVE = [:kms_key_id] include Aws::Structure end |