Class: Aws::DAX::Types::Event

Inherits:
Struct
  • Object
show all
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.

Instance Attribute Summary collapse

Instance Attribute Details

#dateTime

The date and time when the event occurred.

Returns:

  • (Time)


909
910
911
912
913
914
915
# File 'lib/aws-sdk-dax/types.rb', line 909

class Event < Struct.new(
  :source_name,
  :source_type,
  :message,
  :date)
  include Aws::Structure
end

#messageString

A user-defined message associated with the event.

Returns:

  • (String)


909
910
911
912
913
914
915
# File 'lib/aws-sdk-dax/types.rb', line 909

class Event < Struct.new(
  :source_name,
  :source_type,
  :message,
  :date)
  include Aws::Structure
end

#source_nameString

The source of the event. For example, if the event occurred at the node level, the source would be the node ID.

Returns:

  • (String)


909
910
911
912
913
914
915
# File 'lib/aws-sdk-dax/types.rb', line 909

class Event < Struct.new(
  :source_name,
  :source_type,
  :message,
  :date)
  include Aws::Structure
end

#source_typeString

Specifies the origin of this event - a cluster, a parameter group, a node ID, etc.

Returns:

  • (String)


909
910
911
912
913
914
915
# File 'lib/aws-sdk-dax/types.rb', line 909

class Event < Struct.new(
  :source_name,
  :source_type,
  :message,
  :date)
  include Aws::Structure
end