Class: Aws::Kendra::Types::ServerSideEncryptionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::ServerSideEncryptionConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kendra/types.rb
Overview
Note:
When making an API call, you may pass ServerSideEncryptionConfiguration data as a hash:
{
kms_key_id: "KmsKeyId",
}
Provides the identifier of the AWS KMS customer master key (CMK) used to encrypt data indexed by Amazon Kendra. Amazon Kendra doesn't support asymmetric CMKs.
Constant Summary collapse
- SENSITIVE =
[:kms_key_id]
Instance Attribute Summary collapse
-
#kms_key_id ⇒ String
The identifier of the AWS KMS customer master key (CMK).
Instance Attribute Details
#kms_key_id ⇒ String
The identifier of the AWS KMS customer master key (CMK). Amazon Kendra doesn't support asymmetric CMKs.
5459 5460 5461 5462 5463 |
# File 'lib/aws-sdk-kendra/types.rb', line 5459 class ServerSideEncryptionConfiguration < Struct.new( :kms_key_id) SENSITIVE = [:kms_key_id] include Aws::Structure end |