Class: Aws::DatabaseMigrationService::Types::EventCategoryGroup
- Inherits:
-
Struct
- Object
- Struct
- Aws::DatabaseMigrationService::Types::EventCategoryGroup
- Defined in:
- gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb
Overview
Lists categories of events subscribed to, and generated by, the
applicable DMS resource type. This data type appears in response to
the DescribeEventCategories
action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#event_categories ⇒ Array<String>
A list of event categories from a source type that you've chosen.
-
#source_type ⇒ String
The type of DMS resource that generates events.
Instance Attribute Details
#event_categories ⇒ Array<String>
A list of event categories from a source type that you've chosen.
5450 5451 5452 5453 5454 5455 |
# File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 5450 class EventCategoryGroup < Struct.new( :source_type, :event_categories) SENSITIVE = [] include Aws::Structure end |
#source_type ⇒ String
The type of DMS resource that generates events.
Valid values: replication-instance | replication-server | security-group | replication-task
5450 5451 5452 5453 5454 5455 |
# File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 5450 class EventCategoryGroup < Struct.new( :source_type, :event_categories) SENSITIVE = [] include Aws::Structure end |