Class: Aws::MemoryDB::Types::Event
- Inherits:
-
Struct
- Object
- Struct
- Aws::MemoryDB::Types::Event
- Defined in:
- gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb
Overview
Represents a single occurrence of something interesting within the system. Some examples of events are creating a cluster or adding or removing a node.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#date ⇒ Time
The date and time when the event occurred.
-
#message ⇒ String
The text of the event.
-
#source_name ⇒ String
The name for the source of the event.
-
#source_type ⇒ String
Specifies the origin of this event - a cluster, a parameter group, a security group, etc.
Instance Attribute Details
#date ⇒ Time
The date and time when the event occurred.
2251 2252 2253 2254 2255 2256 2257 2258 |
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 2251 class Event < Struct.new( :source_name, :source_type, :message, :date) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
The text of the event.
2251 2252 2253 2254 2255 2256 2257 2258 |
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 2251 class Event < Struct.new( :source_name, :source_type, :message, :date) SENSITIVE = [] include Aws::Structure end |
#source_name ⇒ String
The name for the source of the event. For example, if the event occurred at the cluster level, the identifier would be the name of the cluster.
2251 2252 2253 2254 2255 2256 2257 2258 |
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 2251 class Event < Struct.new( :source_name, :source_type, :message, :date) SENSITIVE = [] include Aws::Structure end |
#source_type ⇒ String
Specifies the origin of this event - a cluster, a parameter group, a security group, etc.
2251 2252 2253 2254 2255 2256 2257 2258 |
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 2251 class Event < Struct.new( :source_name, :source_type, :message, :date) SENSITIVE = [] include Aws::Structure end |