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

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

Overview

Note:

When making an API call, you may pass EncryptionAtRestOptions data as a hash:

{
  enabled: false,
  kms_key_id: "KmsKeyId",
}

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)


1996
1997
1998
1999
2000
2001
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 1996

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)


1996
1997
1998
1999
2000
2001
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 1996

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