Class: Aws::Health::Types::EventTypeFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::Health::Types::EventTypeFilter
- Defined in:
- gems/aws-sdk-health/lib/aws-sdk-health/types.rb
Overview
The values to use to filter results from the DescribeEventTypes operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#event_type_categories ⇒ Array<String>
A list of event type category codes.
-
#event_type_codes ⇒ Array<String>
A list of event type codes.
-
#services ⇒ Array<String>
The Amazon Web Services services associated with the event.
Instance Attribute Details
#event_type_categories ⇒ Array<String>
A list of event type category codes. Possible values are issue
,
accountNotification
, or scheduledChange
. Currently, the
investigation
value isn't supported at this time.
1270 1271 1272 1273 1274 1275 1276 |
# File 'gems/aws-sdk-health/lib/aws-sdk-health/types.rb', line 1270 class EventTypeFilter < Struct.new( :event_type_codes, :services, :event_type_categories) SENSITIVE = [] include Aws::Structure end |
#event_type_codes ⇒ Array<String>
A list of event type codes.
1270 1271 1272 1273 1274 1275 1276 |
# File 'gems/aws-sdk-health/lib/aws-sdk-health/types.rb', line 1270 class EventTypeFilter < Struct.new( :event_type_codes, :services, :event_type_categories) SENSITIVE = [] include Aws::Structure end |
#services ⇒ Array<String>
The Amazon Web Services services associated with the event. For
example, EC2
, RDS
.
1270 1271 1272 1273 1274 1275 1276 |
# File 'gems/aws-sdk-health/lib/aws-sdk-health/types.rb', line 1270 class EventTypeFilter < Struct.new( :event_type_codes, :services, :event_type_categories) SENSITIVE = [] include Aws::Structure end |