Class: Aws::DatabaseMigrationService::Types::Event
- Inherits:
-
Struct
- Object
- Struct
- Aws::DatabaseMigrationService::Types::Event
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-databasemigrationservice/types.rb
Overview
Describes an identifiable significant activity that affects a replication instance or task. This object can provide the message, the available event categories, the date and source of the event, and the DMS resource type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#date ⇒ Time
The date of the event.
-
#event_categories ⇒ Array<String>
The event categories available for the specified source type.
-
#message ⇒ String
The event message.
-
#source_identifier ⇒ String
The identifier of an event source.
-
#source_type ⇒ String
The type of DMS resource that generates events.
Instance Attribute Details
#date ⇒ Time
The date of the event.
5760 5761 5762 5763 5764 5765 5766 5767 5768 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5760 class Event < Struct.new( :source_identifier, :source_type, :message, :event_categories, :date) SENSITIVE = [] include Aws::Structure end |
#event_categories ⇒ Array<String>
The event categories available for the specified source type.
5760 5761 5762 5763 5764 5765 5766 5767 5768 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5760 class Event < Struct.new( :source_identifier, :source_type, :message, :event_categories, :date) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
The event message.
5760 5761 5762 5763 5764 5765 5766 5767 5768 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5760 class Event < Struct.new( :source_identifier, :source_type, :message, :event_categories, :date) SENSITIVE = [] include Aws::Structure end |
#source_identifier ⇒ String
The identifier of an event source.
5760 5761 5762 5763 5764 5765 5766 5767 5768 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5760 class Event < Struct.new( :source_identifier, :source_type, :message, :event_categories, :date) SENSITIVE = [] include Aws::Structure end |
#source_type ⇒ String
The type of DMS resource that generates events.
Valid values: replication-instance | endpoint | replication-task
5760 5761 5762 5763 5764 5765 5766 5767 5768 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 5760 class Event < Struct.new( :source_identifier, :source_type, :message, :event_categories, :date) SENSITIVE = [] include Aws::Structure end |