Class: Aws::Kendra::Types::ServerSideEncryptionConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-kendra/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

Instance Attribute Details

#kms_key_idString

The identifier of the KMS key. Amazon Kendra doesn't support asymmetric keys.

Returns:

  • (String)


9272
9273
9274
9275
9276
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 9272

class ServerSideEncryptionConfiguration < Struct.new(
  :kms_key_id)
  SENSITIVE = [:kms_key_id]
  include Aws::Structure
end