Class: Aws::Notifications::Types::NotificationHubStatusSummary

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

Overview

NotificationHub status information.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#reasonString

An Explanation for the current status.

Returns:

  • (String)


1562
1563
1564
1565
1566
1567
# File 'gems/aws-sdk-notifications/lib/aws-sdk-notifications/types.rb', line 1562

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

#statusString

Status information about the NotificationHub.

  • Values:

    • ACTIVE

      • Incoming NotificationEvents are replicated to this NotificationHub.

      ^

    • REGISTERING

      • The NotificationHub is initializing. A NotificationHub with this status can't be deregistered.

      ^

    • DEREGISTERING

      • The NotificationHub is being deleted. You can't register additional NotificationHubs in the same Region as a NotificationHub with this status.

      ^

Returns:

  • (String)


1562
1563
1564
1565
1566
1567
# File 'gems/aws-sdk-notifications/lib/aws-sdk-notifications/types.rb', line 1562

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