Class: Aws::MemoryDB::Types::Event

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

Instance Attribute Details

#dateTime

The date and time when the event occurred.

Returns:

  • (Time)


1899
1900
1901
1902
1903
1904
1905
1906
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 1899

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

#messageString

The text of the event.

Returns:

  • (String)


1899
1900
1901
1902
1903
1904
1905
1906
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 1899

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

#source_nameString

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.

Returns:

  • (String)


1899
1900
1901
1902
1903
1904
1905
1906
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 1899

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

#source_typeString

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

Returns:

  • (String)


1899
1900
1901
1902
1903
1904
1905
1906
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 1899

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