Class: Aws::DAX::Types::NotificationConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-dax/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

Instance Attribute Details

#topic_arnString

The Amazon Resource Name (ARN) that identifies the topic.

Returns:

  • (String)


1131
1132
1133
1134
1135
1136
# File 'gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb', line 1131

class NotificationConfiguration < Struct.new(
  :topic_arn,
  :topic_status)
  SENSITIVE = []
  include Aws::Structure
end

#topic_statusString

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.

Returns:

  • (String)


1131
1132
1133
1134
1135
1136
# File 'gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb', line 1131

class NotificationConfiguration < Struct.new(
  :topic_arn,
  :topic_status)
  SENSITIVE = []
  include Aws::Structure
end