Class: Aws::ElasticsearchService::Types::EncryptionAtRestOptions

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-elasticsearchservice/types.rb

Overview

Specifies the Encryption At Rest Options.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#enabledBoolean

Specifies the option to enable Encryption At Rest.

Returns:

  • (Boolean)


2354
2355
2356
2357
2358
2359
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 2354

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

#kms_key_idString

Specifies the KMS Key ID for Encryption At Rest options.

Returns:

  • (String)


2354
2355
2356
2357
2358
2359
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 2354

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