Class: Aws::OpenSearchService::Types::EncryptionAtRestOptions

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

Overview

Specifies whether the domain should encrypt data at rest, and if so, the Key Management Service (KMS) key to use. Can be used only to create a new domain, not update an existing one.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#enabledBoolean

True to enable encryption at rest.

Returns:

  • (Boolean)


3086
3087
3088
3089
3090
3091
# File 'lib/aws-sdk-opensearchservice/types.rb', line 3086

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

#kms_key_idString

The KMS key ID. Takes the form ‘1a2a3a4-1a2a-3a4a-5a6a-1a2a3a4a5a6a`.

Returns:

  • (String)


3086
3087
3088
3089
3090
3091
# File 'lib/aws-sdk-opensearchservice/types.rb', line 3086

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