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)


9218
9219
9220
9221
9222
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 9218

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