Class: Aws::DAX::Types::SSESpecification

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

Overview

Note:

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

{
  enabled: false, # required
}

Represents the settings used to enable server-side encryption.

Instance Attribute Summary collapse

Instance Attribute Details

#enabledBoolean

Indicates whether server-side encryption is enabled (true) or disabled (false) on the cluster.

Returns:

  • (Boolean)


1291
1292
1293
1294
# File 'lib/aws-sdk-dax/types.rb', line 1291

class SSESpecification < Struct.new(
  :enabled)
  include Aws::Structure
end