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)


1101
1102
1103
1104
1105
1106
# File 'gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb', line 1101

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)


1101
1102
1103
1104
1105
1106
# File 'gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb', line 1101

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