Class: Aws::DAX::Types::Event
- Inherits:
-
Struct
- Object
- Struct
- Aws::DAX::Types::Event
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-dax/types.rb
Overview
Represents a single occurrence of something interesting within the system. Some examples of events are creating a DAX cluster, adding or removing a node, or rebooting a node.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#date ⇒ Time
The date and time when the event occurred.
-
#message ⇒ String
A user-defined message associated with the event.
-
#source_name ⇒ String
The source of the event.
-
#source_type ⇒ String
Specifies the origin of this event - a cluster, a parameter group, a node ID, etc.
Instance Attribute Details
#date ⇒ Time
The date and time when the event occurred.
854 855 856 857 858 859 860 861 |
# File 'lib/aws-sdk-dax/types.rb', line 854 class Event < Struct.new( :source_name, :source_type, :message, :date) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
A user-defined message associated with the event.
854 855 856 857 858 859 860 861 |
# File 'lib/aws-sdk-dax/types.rb', line 854 class Event < Struct.new( :source_name, :source_type, :message, :date) SENSITIVE = [] include Aws::Structure end |
#source_name ⇒ String
The source of the event. For example, if the event occurred at the node level, the source would be the node ID.
854 855 856 857 858 859 860 861 |
# File 'lib/aws-sdk-dax/types.rb', line 854 class Event < Struct.new( :source_name, :source_type, :message, :date) SENSITIVE = [] include Aws::Structure end |