Class: Aws::DAX::Types::SSEDescription
- Inherits:
-
Struct
- Object
- Struct
- Aws::DAX::Types::SSEDescription
- 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
-
#status ⇒ String
The current state of server-side encryption:.
Instance Attribute Details
#status ⇒ String
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.
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 |