Class: Aws::DAX::Types::NotificationConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::DAX::Types::NotificationConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-dax/types.rb
Overview
Describes a notification topic and its status. Notification topics are used for publishing DAX events to subscribers using Amazon Simple Notification Service (SNS).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#topic_arn ⇒ String
The Amazon Resource Name (ARN) that identifies the topic.
-
#topic_status ⇒ String
The current state of the topic.
Instance Attribute Details
#topic_arn ⇒ String
The Amazon Resource Name (ARN) that identifies the topic.
1101 1102 1103 1104 1105 1106 |
# File 'lib/aws-sdk-dax/types.rb', line 1101 class NotificationConfiguration < Struct.new( :topic_arn, :topic_status) SENSITIVE = [] include Aws::Structure end |
#topic_status ⇒ String
The current state of the topic. A value of “active” means that notifications will be sent to the topic. A value of “inactive” means that notifications will not be sent to the topic.
1101 1102 1103 1104 1105 1106 |
# File 'lib/aws-sdk-dax/types.rb', line 1101 class NotificationConfiguration < Struct.new( :topic_arn, :topic_status) SENSITIVE = [] include Aws::Structure end |