Class: Aws::DAX::Types::SSEDescription

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

Overview

The description of the server-side encryption status on the specified DAX cluster.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#statusString

The current state of server-side encryption:

  • ENABLING - Server-side encryption is being enabled.

  • ENABLED - Server-side encryption is enabled.

  • DISABLING - Server-side encryption is being disabled.

  • DISABLED - Server-side encryption is disabled.

Returns:

  • (String)


1299
1300
1301
1302
1303
# File 'gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb', line 1299

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