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 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.
1265 1266 1267 1268 1269 1270 1271 |
# File 'gems/aws-sdk-health/lib/aws-sdk-health/types.rb', line 1265 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.
1265 1266 1267 1268 1269 1270 1271 |
# File 'gems/aws-sdk-health/lib/aws-sdk-health/types.rb', line 1265 class EventTypeFilter < Struct.new( :event_type_codes, :services, :event_type_categories) SENSITIVE = [] include Aws::Structure end |
#services ⇒ Array<String>
The Amazon Web Services associated with the event. For example,
EC2
, RDS
.
1265 1266 1267 1268 1269 1270 1271 |
# File 'gems/aws-sdk-health/lib/aws-sdk-health/types.rb', line 1265 class EventTypeFilter < Struct.new( :event_type_codes, :services, :event_type_categories) SENSITIVE = [] include Aws::Structure end |