aws-sdk-health 1.88.0 → 1.89.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d00d7736b500a5bc3f90fe56f57f01c7ed81d77de1eb9251d3fcdd8a7eb3d020
4
- data.tar.gz: 708d5e604c139df6ae9ed12a2cc17abf2eed37358d666659dc74cb693bd12a52
3
+ metadata.gz: a900a4a2d310e69c9886a24cc0f8276571cb6ae921a37c0fb016ec8963b29546
4
+ data.tar.gz: b5e395ba983c4e1c919e61c30bd31dc23c5dd4c83a976be9d2b8bade53d79ad4
5
5
  SHA512:
6
- metadata.gz: 75e946cd4f9d900745331260effdd4020252729d04e54c5ee2c9c257e37da7033637a8a4ee6a053519f8b772add55dd02c433b15e1cf3946e7d419da90fcdb5e
7
- data.tar.gz: 3c03254dcbdd147c7a04f7bbdf66f93998368ef9bda43fc7a7d55c4b82d20f1ff941f610e2706128783f42fa16ba16bda2200e8a76e3914552a24eed62b2d9a7
6
+ metadata.gz: 3c34966fe6dcc8d3612db724f94075ea643015357cafa23623558f607981b604a476d511f637e4450c3e92dca4772191a640c3a77e4a3f5d2abf47b9ef4aae87
7
+ data.tar.gz: 5c70a9c61f5cb267d115802afcbf0d7ddda46c6cb5d090c62da27aafb24a4d1cb299d5c38a0ce908556714e2a50cddf2bd6d1b7aa96810148937e6399de0d5ae
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.89.0 (2025-11-19)
5
+ ------------------
6
+
7
+ * Feature - Adds actionability and personas properties to Health events exposed through DescribeEvents, DescribeEventsForOrganization, DescribeEventDetails, and DescribeEventTypes APIs. Adds filtering by actionabilities and personas in EventFilter, OrganizationEventFilter, EventTypeFilter.
8
+
4
9
  1.88.0 (2025-10-31)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.88.0
1
+ 1.89.0
@@ -882,6 +882,7 @@ module Aws::Health
882
882
  #
883
883
  # resp = client.describe_event_aggregates({
884
884
  # filter: {
885
+ # actionabilities: ["ACTION_REQUIRED"], # accepts ACTION_REQUIRED, ACTION_MAY_BE_REQUIRED, INFORMATIONAL
885
886
  # event_arns: ["eventArn"],
886
887
  # event_type_codes: ["eventType"],
887
888
  # services: ["service"],
@@ -914,6 +915,7 @@ module Aws::Health
914
915
  # },
915
916
  # ],
916
917
  # event_status_codes: ["open"], # accepts open, closed, upcoming
918
+ # personas: ["OPERATIONS"], # accepts OPERATIONS, SECURITY, BILLING
917
919
  # },
918
920
  # aggregate_field: "eventTypeCategory", # required, accepts eventTypeCategory
919
921
  # max_results: 1,
@@ -995,6 +997,9 @@ module Aws::Health
995
997
  # resp.successful_set[0].event.last_updated_time #=> Time
996
998
  # resp.successful_set[0].event.status_code #=> String, one of "open", "closed", "upcoming"
997
999
  # resp.successful_set[0].event.event_scope_code #=> String, one of "PUBLIC", "ACCOUNT_SPECIFIC", "NONE"
1000
+ # resp.successful_set[0].event.actionability #=> String, one of "ACTION_REQUIRED", "ACTION_MAY_BE_REQUIRED", "INFORMATIONAL"
1001
+ # resp.successful_set[0].event.personas #=> Array
1002
+ # resp.successful_set[0].event.personas[0] #=> String, one of "OPERATIONS", "SECURITY", "BILLING"
998
1003
  # resp.successful_set[0].event_description.latest_description #=> String
999
1004
  # resp.successful_set[0].event_metadata #=> Hash
1000
1005
  # resp.successful_set[0].event_metadata["metadataKey"] #=> String
@@ -1099,6 +1104,9 @@ module Aws::Health
1099
1104
  # resp.successful_set[0].event.last_updated_time #=> Time
1100
1105
  # resp.successful_set[0].event.status_code #=> String, one of "open", "closed", "upcoming"
1101
1106
  # resp.successful_set[0].event.event_scope_code #=> String, one of "PUBLIC", "ACCOUNT_SPECIFIC", "NONE"
1107
+ # resp.successful_set[0].event.actionability #=> String, one of "ACTION_REQUIRED", "ACTION_MAY_BE_REQUIRED", "INFORMATIONAL"
1108
+ # resp.successful_set[0].event.personas #=> Array
1109
+ # resp.successful_set[0].event.personas[0] #=> String, one of "OPERATIONS", "SECURITY", "BILLING"
1102
1110
  # resp.successful_set[0].event_description.latest_description #=> String
1103
1111
  # resp.successful_set[0].event_metadata #=> Hash
1104
1112
  # resp.successful_set[0].event_metadata["metadataKey"] #=> String
@@ -1171,6 +1179,8 @@ module Aws::Health
1171
1179
  # event_type_codes: ["eventTypeCode"],
1172
1180
  # services: ["service"],
1173
1181
  # event_type_categories: ["issue"], # accepts issue, accountNotification, scheduledChange, investigation
1182
+ # actionabilities: ["ACTION_REQUIRED"], # accepts ACTION_REQUIRED, ACTION_MAY_BE_REQUIRED, INFORMATIONAL
1183
+ # personas: ["OPERATIONS"], # accepts OPERATIONS, SECURITY, BILLING
1174
1184
  # },
1175
1185
  # locale: "locale",
1176
1186
  # next_token: "nextToken",
@@ -1183,6 +1193,9 @@ module Aws::Health
1183
1193
  # resp.event_types[0].service #=> String
1184
1194
  # resp.event_types[0].code #=> String
1185
1195
  # resp.event_types[0].category #=> String, one of "issue", "accountNotification", "scheduledChange", "investigation"
1196
+ # resp.event_types[0].actionability #=> String, one of "ACTION_REQUIRED", "ACTION_MAY_BE_REQUIRED", "INFORMATIONAL"
1197
+ # resp.event_types[0].personas #=> Array
1198
+ # resp.event_types[0].personas[0] #=> String, one of "OPERATIONS", "SECURITY", "BILLING"
1186
1199
  # resp.next_token #=> String
1187
1200
  #
1188
1201
  # @see http://docs.aws.amazon.com/goto/WebAPI/health-2016-08-04/DescribeEventTypes AWS API Documentation
@@ -1253,6 +1266,7 @@ module Aws::Health
1253
1266
  #
1254
1267
  # resp = client.describe_events({
1255
1268
  # filter: {
1269
+ # actionabilities: ["ACTION_REQUIRED"], # accepts ACTION_REQUIRED, ACTION_MAY_BE_REQUIRED, INFORMATIONAL
1256
1270
  # event_arns: ["eventArn"],
1257
1271
  # event_type_codes: ["eventType"],
1258
1272
  # services: ["service"],
@@ -1285,6 +1299,7 @@ module Aws::Health
1285
1299
  # },
1286
1300
  # ],
1287
1301
  # event_status_codes: ["open"], # accepts open, closed, upcoming
1302
+ # personas: ["OPERATIONS"], # accepts OPERATIONS, SECURITY, BILLING
1288
1303
  # },
1289
1304
  # next_token: "nextToken",
1290
1305
  # max_results: 1,
@@ -1305,6 +1320,9 @@ module Aws::Health
1305
1320
  # resp.events[0].last_updated_time #=> Time
1306
1321
  # resp.events[0].status_code #=> String, one of "open", "closed", "upcoming"
1307
1322
  # resp.events[0].event_scope_code #=> String, one of "PUBLIC", "ACCOUNT_SPECIFIC", "NONE"
1323
+ # resp.events[0].actionability #=> String, one of "ACTION_REQUIRED", "ACTION_MAY_BE_REQUIRED", "INFORMATIONAL"
1324
+ # resp.events[0].personas #=> Array
1325
+ # resp.events[0].personas[0] #=> String, one of "OPERATIONS", "SECURITY", "BILLING"
1308
1326
  # resp.next_token #=> String
1309
1327
  #
1310
1328
  # @see http://docs.aws.amazon.com/goto/WebAPI/health-2016-08-04/DescribeEvents AWS API Documentation
@@ -1383,6 +1401,7 @@ module Aws::Health
1383
1401
  #
1384
1402
  # resp = client.describe_events_for_organization({
1385
1403
  # filter: {
1404
+ # actionabilities: ["ACTION_REQUIRED"], # accepts ACTION_REQUIRED, ACTION_MAY_BE_REQUIRED, INFORMATIONAL
1386
1405
  # event_type_codes: ["eventType"],
1387
1406
  # aws_account_ids: ["accountId"],
1388
1407
  # services: ["service"],
@@ -1403,6 +1422,7 @@ module Aws::Health
1403
1422
  # entity_values: ["entityValue"],
1404
1423
  # event_type_categories: ["issue"], # accepts issue, accountNotification, scheduledChange, investigation
1405
1424
  # event_status_codes: ["open"], # accepts open, closed, upcoming
1425
+ # personas: ["OPERATIONS"], # accepts OPERATIONS, SECURITY, BILLING
1406
1426
  # },
1407
1427
  # next_token: "nextToken",
1408
1428
  # max_results: 1,
@@ -1422,6 +1442,9 @@ module Aws::Health
1422
1442
  # resp.events[0].end_time #=> Time
1423
1443
  # resp.events[0].last_updated_time #=> Time
1424
1444
  # resp.events[0].status_code #=> String, one of "open", "closed", "upcoming"
1445
+ # resp.events[0].actionability #=> String, one of "ACTION_REQUIRED", "ACTION_MAY_BE_REQUIRED", "INFORMATIONAL"
1446
+ # resp.events[0].personas #=> Array
1447
+ # resp.events[0].personas[0] #=> String, one of "OPERATIONS", "SECURITY", "BILLING"
1425
1448
  # resp.next_token #=> String
1426
1449
  #
1427
1450
  # @see http://docs.aws.amazon.com/goto/WebAPI/health-2016-08-04/DescribeEventsForOrganization AWS API Documentation
@@ -1553,7 +1576,7 @@ module Aws::Health
1553
1576
  tracer: tracer
1554
1577
  )
1555
1578
  context[:gem_name] = 'aws-sdk-health'
1556
- context[:gem_version] = '1.88.0'
1579
+ context[:gem_version] = '1.89.0'
1557
1580
  Seahorse::Client::Request.new(handlers, context)
1558
1581
  end
1559
1582
 
@@ -54,6 +54,8 @@ module Aws::Health
54
54
  EntityList = Shapes::ListShape.new(name: 'EntityList')
55
55
  Event = Shapes::StructureShape.new(name: 'Event')
56
56
  EventAccountFilter = Shapes::StructureShape.new(name: 'EventAccountFilter')
57
+ EventActionability = Shapes::StringShape.new(name: 'EventActionability')
58
+ EventActionabilityList = Shapes::ListShape.new(name: 'EventActionabilityList')
57
59
  EventAggregate = Shapes::StructureShape.new(name: 'EventAggregate')
58
60
  EventAggregateList = Shapes::ListShape.new(name: 'EventAggregateList')
59
61
  EventArnsList = Shapes::ListShape.new(name: 'EventArnsList')
@@ -62,11 +64,17 @@ module Aws::Health
62
64
  EventDetailsErrorItem = Shapes::StructureShape.new(name: 'EventDetailsErrorItem')
63
65
  EventFilter = Shapes::StructureShape.new(name: 'EventFilter')
64
66
  EventList = Shapes::ListShape.new(name: 'EventList')
67
+ EventPersona = Shapes::StringShape.new(name: 'EventPersona')
68
+ EventPersonaList = Shapes::ListShape.new(name: 'EventPersonaList')
65
69
  EventType = Shapes::StructureShape.new(name: 'EventType')
70
+ EventTypeActionability = Shapes::StringShape.new(name: 'EventTypeActionability')
71
+ EventTypeActionabilityList = Shapes::ListShape.new(name: 'EventTypeActionabilityList')
66
72
  EventTypeCategoryList = Shapes::ListShape.new(name: 'EventTypeCategoryList')
67
73
  EventTypeCodeList = Shapes::ListShape.new(name: 'EventTypeCodeList')
68
74
  EventTypeFilter = Shapes::StructureShape.new(name: 'EventTypeFilter')
69
75
  EventTypeList = Shapes::ListShape.new(name: 'EventTypeList')
76
+ EventTypePersona = Shapes::StringShape.new(name: 'EventTypePersona')
77
+ EventTypePersonaList = Shapes::ListShape.new(name: 'EventTypePersonaList')
70
78
  InvalidPaginationToken = Shapes::StructureShape.new(name: 'InvalidPaginationToken')
71
79
  OrganizationAccountIdsList = Shapes::ListShape.new(name: 'OrganizationAccountIdsList')
72
80
  OrganizationAffectedEntitiesErrorItem = Shapes::StructureShape.new(name: 'OrganizationAffectedEntitiesErrorItem')
@@ -304,12 +312,16 @@ module Aws::Health
304
312
  Event.add_member(:last_updated_time, Shapes::ShapeRef.new(shape: timestamp, location_name: "lastUpdatedTime"))
305
313
  Event.add_member(:status_code, Shapes::ShapeRef.new(shape: eventStatusCode, location_name: "statusCode"))
306
314
  Event.add_member(:event_scope_code, Shapes::ShapeRef.new(shape: eventScopeCode, location_name: "eventScopeCode"))
315
+ Event.add_member(:actionability, Shapes::ShapeRef.new(shape: EventActionability, location_name: "actionability"))
316
+ Event.add_member(:personas, Shapes::ShapeRef.new(shape: EventPersonaList, location_name: "personas"))
307
317
  Event.struct_class = Types::Event
308
318
 
309
319
  EventAccountFilter.add_member(:event_arn, Shapes::ShapeRef.new(shape: eventArn, required: true, location_name: "eventArn"))
310
320
  EventAccountFilter.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: accountId, location_name: "awsAccountId"))
311
321
  EventAccountFilter.struct_class = Types::EventAccountFilter
312
322
 
323
+ EventActionabilityList.member = Shapes::ShapeRef.new(shape: EventActionability)
324
+
313
325
  EventAggregate.add_member(:aggregate_value, Shapes::ShapeRef.new(shape: aggregateValue, location_name: "aggregateValue"))
314
326
  EventAggregate.add_member(:count, Shapes::ShapeRef.new(shape: count, location_name: "count"))
315
327
  EventAggregate.struct_class = Types::EventAggregate
@@ -331,6 +343,7 @@ module Aws::Health
331
343
  EventDetailsErrorItem.add_member(:error_message, Shapes::ShapeRef.new(shape: string, location_name: "errorMessage"))
332
344
  EventDetailsErrorItem.struct_class = Types::EventDetailsErrorItem
333
345
 
346
+ EventFilter.add_member(:actionabilities, Shapes::ShapeRef.new(shape: EventActionabilityList, location_name: "actionabilities"))
334
347
  EventFilter.add_member(:event_arns, Shapes::ShapeRef.new(shape: eventArnList, location_name: "eventArns"))
335
348
  EventFilter.add_member(:event_type_codes, Shapes::ShapeRef.new(shape: eventTypeList, location_name: "eventTypeCodes"))
336
349
  EventFilter.add_member(:services, Shapes::ShapeRef.new(shape: serviceList, location_name: "services"))
@@ -344,15 +357,22 @@ module Aws::Health
344
357
  EventFilter.add_member(:event_type_categories, Shapes::ShapeRef.new(shape: eventTypeCategoryList, location_name: "eventTypeCategories"))
345
358
  EventFilter.add_member(:tags, Shapes::ShapeRef.new(shape: tagFilter, location_name: "tags"))
346
359
  EventFilter.add_member(:event_status_codes, Shapes::ShapeRef.new(shape: eventStatusCodeList, location_name: "eventStatusCodes"))
360
+ EventFilter.add_member(:personas, Shapes::ShapeRef.new(shape: EventPersonaList, location_name: "personas"))
347
361
  EventFilter.struct_class = Types::EventFilter
348
362
 
349
363
  EventList.member = Shapes::ShapeRef.new(shape: Event)
350
364
 
365
+ EventPersonaList.member = Shapes::ShapeRef.new(shape: EventPersona)
366
+
351
367
  EventType.add_member(:service, Shapes::ShapeRef.new(shape: service, location_name: "service"))
352
368
  EventType.add_member(:code, Shapes::ShapeRef.new(shape: eventTypeCode, location_name: "code"))
353
369
  EventType.add_member(:category, Shapes::ShapeRef.new(shape: eventTypeCategory, location_name: "category"))
370
+ EventType.add_member(:actionability, Shapes::ShapeRef.new(shape: EventTypeActionability, location_name: "actionability"))
371
+ EventType.add_member(:personas, Shapes::ShapeRef.new(shape: EventTypePersonaList, location_name: "personas"))
354
372
  EventType.struct_class = Types::EventType
355
373
 
374
+ EventTypeActionabilityList.member = Shapes::ShapeRef.new(shape: EventTypeActionability)
375
+
356
376
  EventTypeCategoryList.member = Shapes::ShapeRef.new(shape: eventTypeCategory)
357
377
 
358
378
  EventTypeCodeList.member = Shapes::ShapeRef.new(shape: eventTypeCode)
@@ -360,10 +380,14 @@ module Aws::Health
360
380
  EventTypeFilter.add_member(:event_type_codes, Shapes::ShapeRef.new(shape: EventTypeCodeList, location_name: "eventTypeCodes"))
361
381
  EventTypeFilter.add_member(:services, Shapes::ShapeRef.new(shape: serviceList, location_name: "services"))
362
382
  EventTypeFilter.add_member(:event_type_categories, Shapes::ShapeRef.new(shape: EventTypeCategoryList, location_name: "eventTypeCategories"))
383
+ EventTypeFilter.add_member(:actionabilities, Shapes::ShapeRef.new(shape: EventTypeActionabilityList, location_name: "actionabilities"))
384
+ EventTypeFilter.add_member(:personas, Shapes::ShapeRef.new(shape: EventTypePersonaList, location_name: "personas"))
363
385
  EventTypeFilter.struct_class = Types::EventTypeFilter
364
386
 
365
387
  EventTypeList.member = Shapes::ShapeRef.new(shape: EventType)
366
388
 
389
+ EventTypePersonaList.member = Shapes::ShapeRef.new(shape: EventTypePersona)
390
+
367
391
  InvalidPaginationToken.add_member(:message, Shapes::ShapeRef.new(shape: string, location_name: "message"))
368
392
  InvalidPaginationToken.struct_class = Types::InvalidPaginationToken
369
393
 
@@ -397,6 +421,8 @@ module Aws::Health
397
421
  OrganizationEvent.add_member(:end_time, Shapes::ShapeRef.new(shape: timestamp, location_name: "endTime"))
398
422
  OrganizationEvent.add_member(:last_updated_time, Shapes::ShapeRef.new(shape: timestamp, location_name: "lastUpdatedTime"))
399
423
  OrganizationEvent.add_member(:status_code, Shapes::ShapeRef.new(shape: eventStatusCode, location_name: "statusCode"))
424
+ OrganizationEvent.add_member(:actionability, Shapes::ShapeRef.new(shape: EventActionability, location_name: "actionability"))
425
+ OrganizationEvent.add_member(:personas, Shapes::ShapeRef.new(shape: EventPersonaList, location_name: "personas"))
400
426
  OrganizationEvent.struct_class = Types::OrganizationEvent
401
427
 
402
428
  OrganizationEventArnsList.member = Shapes::ShapeRef.new(shape: eventArn)
@@ -415,6 +441,7 @@ module Aws::Health
415
441
  OrganizationEventDetailsErrorItem.add_member(:error_message, Shapes::ShapeRef.new(shape: string, location_name: "errorMessage"))
416
442
  OrganizationEventDetailsErrorItem.struct_class = Types::OrganizationEventDetailsErrorItem
417
443
 
444
+ OrganizationEventFilter.add_member(:actionabilities, Shapes::ShapeRef.new(shape: EventActionabilityList, location_name: "actionabilities"))
418
445
  OrganizationEventFilter.add_member(:event_type_codes, Shapes::ShapeRef.new(shape: eventTypeList, location_name: "eventTypeCodes"))
419
446
  OrganizationEventFilter.add_member(:aws_account_ids, Shapes::ShapeRef.new(shape: awsAccountIdsList, location_name: "awsAccountIds"))
420
447
  OrganizationEventFilter.add_member(:services, Shapes::ShapeRef.new(shape: serviceList, location_name: "services"))
@@ -426,6 +453,7 @@ module Aws::Health
426
453
  OrganizationEventFilter.add_member(:entity_values, Shapes::ShapeRef.new(shape: entityValueList, location_name: "entityValues"))
427
454
  OrganizationEventFilter.add_member(:event_type_categories, Shapes::ShapeRef.new(shape: eventTypeCategoryList, location_name: "eventTypeCategories"))
428
455
  OrganizationEventFilter.add_member(:event_status_codes, Shapes::ShapeRef.new(shape: eventStatusCodeList, location_name: "eventStatusCodes"))
456
+ OrganizationEventFilter.add_member(:personas, Shapes::ShapeRef.new(shape: EventPersonaList, location_name: "personas"))
429
457
  OrganizationEventFilter.struct_class = Types::OrganizationEventFilter
430
458
 
431
459
  OrganizationEventList.member = Shapes::ShapeRef.new(shape: OrganizationEvent)
@@ -76,7 +76,8 @@ module Aws::Health
76
76
  #
77
77
  # @!attribute [rw] status_code
78
78
  # The most recent status of the entity affected by the event. The
79
- # possible values are `IMPAIRED`, `UNIMPAIRED`, and `UNKNOWN`.
79
+ # possible values are `IMPAIRED`, `UNIMPAIRED`, `UNKNOWN`, `PENDING`,
80
+ # and `RESOLVED`.
80
81
  # @return [String]
81
82
  #
82
83
  # @!attribute [rw] tags
@@ -944,6 +945,26 @@ module Aws::Health
944
945
  # you specified in the request is invalid or doesn't exist.
945
946
  # @return [String]
946
947
  #
948
+ # @!attribute [rw] actionability
949
+ # The actionability classification of the event. Possible values are
950
+ # `ACTION_REQUIRED`, `ACTION_MAY_BE_REQUIRED` and `INFORMATIONAL`.
951
+ # Events with `ACTION_REQUIRED` actionability require customer action
952
+ # to resolve or mitigate the event. Events with
953
+ # `ACTION_MAY_BE_REQUIRED` actionability indicates that the current
954
+ # status is unknown or conditional and inspection is needed to
955
+ # determine if action is required. Events with `INFORMATIONAL`
956
+ # actionability are provided for awareness and do not require
957
+ # immediate action.
958
+ # @return [String]
959
+ #
960
+ # @!attribute [rw] personas
961
+ # A list of persona classifications that indicate the target audience
962
+ # for the event. Possible values are `OPERATIONS`, `SECURITY`, and
963
+ # `BILLING`. Events can be associated with multiple personas to
964
+ # indicate relevance to different teams or roles within an
965
+ # organization.
966
+ # @return [Array<String>]
967
+ #
947
968
  # @see http://docs.aws.amazon.com/goto/WebAPI/health-2016-08-04/Event AWS API Documentation
948
969
  #
949
970
  class Event < Struct.new(
@@ -957,7 +978,9 @@ module Aws::Health
957
978
  :end_time,
958
979
  :last_updated_time,
959
980
  :status_code,
960
- :event_scope_code)
981
+ :event_scope_code,
982
+ :actionability,
983
+ :personas)
961
984
  SENSITIVE = []
962
985
  include Aws::Structure
963
986
  end
@@ -1113,6 +1136,13 @@ module Aws::Health
1113
1136
  # [1]: https://docs.aws.amazon.com/health/latest/APIReference/API_DescribeEvents.html
1114
1137
  # [2]: https://docs.aws.amazon.com/health/latest/APIReference/API_DescribeEventAggregates.html
1115
1138
  #
1139
+ # @!attribute [rw] actionabilities
1140
+ # A list of actionability values to filter events. Use this to filter
1141
+ # events based on whether they require action (`ACTION_REQUIRED`), may
1142
+ # require action (`ACTION_MAY_BE_REQUIRED`) or are informational
1143
+ # (`INFORMATIONAL`).
1144
+ # @return [Array<String>]
1145
+ #
1116
1146
  # @!attribute [rw] event_arns
1117
1147
  # A list of event ARNs (unique identifiers). For example:
1118
1148
  # `"arn:aws:health:us-east-1::event/EC2/EC2_INSTANCE_RETIREMENT_SCHEDULED/EC2_INSTANCE_RETIREMENT_SCHEDULED_ABC123-CDE456",
@@ -1176,9 +1206,16 @@ module Aws::Health
1176
1206
  # A list of event status codes.
1177
1207
  # @return [Array<String>]
1178
1208
  #
1209
+ # @!attribute [rw] personas
1210
+ # A list of persona values to filter events. Use this to filter events
1211
+ # based on their target audience: `OPERATIONS`, `SECURITY`, or
1212
+ # `BILLING`.
1213
+ # @return [Array<String>]
1214
+ #
1179
1215
  # @see http://docs.aws.amazon.com/goto/WebAPI/health-2016-08-04/EventFilter AWS API Documentation
1180
1216
  #
1181
1217
  class EventFilter < Struct.new(
1218
+ :actionabilities,
1182
1219
  :event_arns,
1183
1220
  :event_type_codes,
1184
1221
  :services,
@@ -1191,7 +1228,8 @@ module Aws::Health
1191
1228
  :entity_values,
1192
1229
  :event_type_categories,
1193
1230
  :tags,
1194
- :event_status_codes)
1231
+ :event_status_codes,
1232
+ :personas)
1195
1233
  SENSITIVE = []
1196
1234
  include Aws::Structure
1197
1235
  end
@@ -1233,12 +1271,34 @@ module Aws::Health
1233
1271
  # `investigation` value isn't supported at this time.
1234
1272
  # @return [String]
1235
1273
  #
1274
+ # @!attribute [rw] actionability
1275
+ # The actionability classification of the event. Possible values are
1276
+ # `ACTION_REQUIRED`, `ACTION_MAY_BE_REQUIRED` and `INFORMATIONAL`.
1277
+ # Events with `ACTION_REQUIRED` actionability require customer action
1278
+ # to resolve or mitigate the event. Events with
1279
+ # `ACTION_MAY_BE_REQUIRED` actionability indicates that the current
1280
+ # status is unknown or conditional and inspection is needed to
1281
+ # determine if action is required. Events with `INFORMATIONAL`
1282
+ # actionability are provided for awareness and do not require
1283
+ # immediate action.
1284
+ # @return [String]
1285
+ #
1286
+ # @!attribute [rw] personas
1287
+ # A list of persona classifications that indicate the target audience
1288
+ # for the event. Possible values are `OPERATIONS`, `SECURITY`, and
1289
+ # `BILLING`. Events can be associated with multiple personas to
1290
+ # indicate relevance to different teams or roles within an
1291
+ # organization.
1292
+ # @return [Array<String>]
1293
+ #
1236
1294
  # @see http://docs.aws.amazon.com/goto/WebAPI/health-2016-08-04/EventType AWS API Documentation
1237
1295
  #
1238
1296
  class EventType < Struct.new(
1239
1297
  :service,
1240
1298
  :code,
1241
- :category)
1299
+ :category,
1300
+ :actionability,
1301
+ :personas)
1242
1302
  SENSITIVE = []
1243
1303
  include Aws::Structure
1244
1304
  end
@@ -1265,12 +1325,25 @@ module Aws::Health
1265
1325
  # `investigation` value isn't supported at this time.
1266
1326
  # @return [Array<String>]
1267
1327
  #
1328
+ # @!attribute [rw] actionabilities
1329
+ # A list of actionability values to filter event types. Possible
1330
+ # values are `ACTION_REQUIRED`, `ACTION_MAY_BE_REQUIRED` and
1331
+ # `INFORMATIONAL`.
1332
+ # @return [Array<String>]
1333
+ #
1334
+ # @!attribute [rw] personas
1335
+ # A list of persona classifications to filter event types. Possible
1336
+ # values are `OPERATIONS`, `SECURITY`, and `BILLING`.
1337
+ # @return [Array<String>]
1338
+ #
1268
1339
  # @see http://docs.aws.amazon.com/goto/WebAPI/health-2016-08-04/EventTypeFilter AWS API Documentation
1269
1340
  #
1270
1341
  class EventTypeFilter < Struct.new(
1271
1342
  :event_type_codes,
1272
1343
  :services,
1273
- :event_type_categories)
1344
+ :event_type_categories,
1345
+ :actionabilities,
1346
+ :personas)
1274
1347
  SENSITIVE = []
1275
1348
  include Aws::Structure
1276
1349
  end
@@ -1447,6 +1520,26 @@ module Aws::Health
1447
1520
  # `closed`, and `upcoming`.
1448
1521
  # @return [String]
1449
1522
  #
1523
+ # @!attribute [rw] actionability
1524
+ # The actionability classification of the event. Possible values are
1525
+ # `ACTION_REQUIRED`, `ACTION_MAY_BE_REQUIRED` and `INFORMATIONAL`.
1526
+ # Events with `ACTION_REQUIRED` actionability require customer action
1527
+ # to resolve or mitigate the event. Events with
1528
+ # `ACTION_MAY_BE_REQUIRED` actionability indicates that the current
1529
+ # status is unknown or conditional and inspection is needed to
1530
+ # determine if action is required. Events with `INFORMATIONAL`
1531
+ # actionability are provided for awareness and do not require
1532
+ # immediate action.
1533
+ # @return [String]
1534
+ #
1535
+ # @!attribute [rw] personas
1536
+ # A list of persona classifications that indicate the target audience
1537
+ # for the event. Possible values are `OPERATIONS`, `SECURITY`, and
1538
+ # `BILLING`. Events can be associated with multiple personas to
1539
+ # indicate relevance to different teams or roles within an
1540
+ # organization.
1541
+ # @return [Array<String>]
1542
+ #
1450
1543
  # @see http://docs.aws.amazon.com/goto/WebAPI/health-2016-08-04/OrganizationEvent AWS API Documentation
1451
1544
  #
1452
1545
  class OrganizationEvent < Struct.new(
@@ -1459,7 +1552,9 @@ module Aws::Health
1459
1552
  :start_time,
1460
1553
  :end_time,
1461
1554
  :last_updated_time,
1462
- :status_code)
1555
+ :status_code,
1556
+ :actionability,
1557
+ :personas)
1463
1558
  SENSITIVE = []
1464
1559
  include Aws::Structure
1465
1560
  end
@@ -1602,6 +1697,13 @@ module Aws::Health
1602
1697
  #
1603
1698
  # [1]: https://docs.aws.amazon.com/health/latest/APIReference/API_DescribeEventsForOrganization.html
1604
1699
  #
1700
+ # @!attribute [rw] actionabilities
1701
+ # A list of actionability values to filter events. Use this to filter
1702
+ # events based on whether they require action (`ACTION_REQUIRED`), may
1703
+ # require action (`ACTION_MAY_BE_REQUIRED`) or are informational
1704
+ # (`INFORMATIONAL`).
1705
+ # @return [Array<String>]
1706
+ #
1605
1707
  # @!attribute [rw] event_type_codes
1606
1708
  # A list of unique identifiers for event types. For example,
1607
1709
  # `"AWS_EC2_SYSTEM_MAINTENANCE_EVENT","AWS_RDS_MAINTENANCE_SCHEDULED".`
@@ -1685,9 +1787,16 @@ module Aws::Health
1685
1787
  # A list of event status codes.
1686
1788
  # @return [Array<String>]
1687
1789
  #
1790
+ # @!attribute [rw] personas
1791
+ # A list of persona values to filter events. Use this to filter events
1792
+ # based on their target audience: `OPERATIONS`, `SECURITY`, or
1793
+ # `BILLING`.
1794
+ # @return [Array<String>]
1795
+ #
1688
1796
  # @see http://docs.aws.amazon.com/goto/WebAPI/health-2016-08-04/OrganizationEventFilter AWS API Documentation
1689
1797
  #
1690
1798
  class OrganizationEventFilter < Struct.new(
1799
+ :actionabilities,
1691
1800
  :event_type_codes,
1692
1801
  :aws_account_ids,
1693
1802
  :services,
@@ -1698,7 +1807,8 @@ module Aws::Health
1698
1807
  :entity_arns,
1699
1808
  :entity_values,
1700
1809
  :event_type_categories,
1701
- :event_status_codes)
1810
+ :event_status_codes,
1811
+ :personas)
1702
1812
  SENSITIVE = []
1703
1813
  include Aws::Structure
1704
1814
  end
@@ -54,7 +54,7 @@ module Aws::Health
54
54
  autoload :EndpointProvider, 'aws-sdk-health/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-health/endpoints'
56
56
 
57
- GEM_VERSION = '1.88.0'
57
+ GEM_VERSION = '1.89.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -177,6 +177,7 @@ module Aws
177
177
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Health/Client.html#describe_event_aggregates-instance_method
178
178
  def describe_event_aggregates: (
179
179
  ?filter: {
180
+ actionabilities: Array[("ACTION_REQUIRED" | "ACTION_MAY_BE_REQUIRED" | "INFORMATIONAL")]?,
180
181
  event_arns: Array[::String]?,
181
182
  event_type_codes: Array[::String]?,
182
183
  services: Array[::String]?,
@@ -206,7 +207,8 @@ module Aws
206
207
  tags: Array[
207
208
  Hash[::String, ::String],
208
209
  ]?,
209
- event_status_codes: Array[("open" | "closed" | "upcoming")]?
210
+ event_status_codes: Array[("open" | "closed" | "upcoming")]?,
211
+ personas: Array[("OPERATIONS" | "SECURITY" | "BILLING")]?
210
212
  },
211
213
  aggregate_field: ("eventTypeCategory"),
212
214
  ?max_results: ::Integer,
@@ -253,7 +255,9 @@ module Aws
253
255
  ?filter: {
254
256
  event_type_codes: Array[::String]?,
255
257
  services: Array[::String]?,
256
- event_type_categories: Array[("issue" | "accountNotification" | "scheduledChange" | "investigation")]?
258
+ event_type_categories: Array[("issue" | "accountNotification" | "scheduledChange" | "investigation")]?,
259
+ actionabilities: Array[("ACTION_REQUIRED" | "ACTION_MAY_BE_REQUIRED" | "INFORMATIONAL")]?,
260
+ personas: Array[("OPERATIONS" | "SECURITY" | "BILLING")]?
257
261
  },
258
262
  ?locale: ::String,
259
263
  ?next_token: ::String,
@@ -269,6 +273,7 @@ module Aws
269
273
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Health/Client.html#describe_events-instance_method
270
274
  def describe_events: (
271
275
  ?filter: {
276
+ actionabilities: Array[("ACTION_REQUIRED" | "ACTION_MAY_BE_REQUIRED" | "INFORMATIONAL")]?,
272
277
  event_arns: Array[::String]?,
273
278
  event_type_codes: Array[::String]?,
274
279
  services: Array[::String]?,
@@ -298,7 +303,8 @@ module Aws
298
303
  tags: Array[
299
304
  Hash[::String, ::String],
300
305
  ]?,
301
- event_status_codes: Array[("open" | "closed" | "upcoming")]?
306
+ event_status_codes: Array[("open" | "closed" | "upcoming")]?,
307
+ personas: Array[("OPERATIONS" | "SECURITY" | "BILLING")]?
302
308
  },
303
309
  ?next_token: ::String,
304
310
  ?max_results: ::Integer,
@@ -314,6 +320,7 @@ module Aws
314
320
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Health/Client.html#describe_events_for_organization-instance_method
315
321
  def describe_events_for_organization: (
316
322
  ?filter: {
323
+ actionabilities: Array[("ACTION_REQUIRED" | "ACTION_MAY_BE_REQUIRED" | "INFORMATIONAL")]?,
317
324
  event_type_codes: Array[::String]?,
318
325
  aws_account_ids: Array[::String]?,
319
326
  services: Array[::String]?,
@@ -333,7 +340,8 @@ module Aws
333
340
  entity_arns: Array[::String]?,
334
341
  entity_values: Array[::String]?,
335
342
  event_type_categories: Array[("issue" | "accountNotification" | "scheduledChange" | "investigation")]?,
336
- event_status_codes: Array[("open" | "closed" | "upcoming")]?
343
+ event_status_codes: Array[("open" | "closed" | "upcoming")]?,
344
+ personas: Array[("OPERATIONS" | "SECURITY" | "BILLING")]?
337
345
  },
338
346
  ?next_token: ::String,
339
347
  ?max_results: ::Integer,
data/sig/types.rbs CHANGED
@@ -225,6 +225,8 @@ module Aws::Health
225
225
  attr_accessor last_updated_time: ::Time
226
226
  attr_accessor status_code: ("open" | "closed" | "upcoming")
227
227
  attr_accessor event_scope_code: ("PUBLIC" | "ACCOUNT_SPECIFIC" | "NONE")
228
+ attr_accessor actionability: ("ACTION_REQUIRED" | "ACTION_MAY_BE_REQUIRED" | "INFORMATIONAL")
229
+ attr_accessor personas: ::Array[("OPERATIONS" | "SECURITY" | "BILLING")]
228
230
  SENSITIVE: []
229
231
  end
230
232
 
@@ -260,6 +262,7 @@ module Aws::Health
260
262
  end
261
263
 
262
264
  class EventFilter
265
+ attr_accessor actionabilities: ::Array[("ACTION_REQUIRED" | "ACTION_MAY_BE_REQUIRED" | "INFORMATIONAL")]
263
266
  attr_accessor event_arns: ::Array[::String]
264
267
  attr_accessor event_type_codes: ::Array[::String]
265
268
  attr_accessor services: ::Array[::String]
@@ -273,6 +276,7 @@ module Aws::Health
273
276
  attr_accessor event_type_categories: ::Array[("issue" | "accountNotification" | "scheduledChange" | "investigation")]
274
277
  attr_accessor tags: ::Array[::Hash[::String, ::String]]
275
278
  attr_accessor event_status_codes: ::Array[("open" | "closed" | "upcoming")]
279
+ attr_accessor personas: ::Array[("OPERATIONS" | "SECURITY" | "BILLING")]
276
280
  SENSITIVE: []
277
281
  end
278
282
 
@@ -280,6 +284,8 @@ module Aws::Health
280
284
  attr_accessor service: ::String
281
285
  attr_accessor code: ::String
282
286
  attr_accessor category: ("issue" | "accountNotification" | "scheduledChange" | "investigation")
287
+ attr_accessor actionability: ("ACTION_REQUIRED" | "ACTION_MAY_BE_REQUIRED" | "INFORMATIONAL")
288
+ attr_accessor personas: ::Array[("OPERATIONS" | "SECURITY" | "BILLING")]
283
289
  SENSITIVE: []
284
290
  end
285
291
 
@@ -287,6 +293,8 @@ module Aws::Health
287
293
  attr_accessor event_type_codes: ::Array[::String]
288
294
  attr_accessor services: ::Array[::String]
289
295
  attr_accessor event_type_categories: ::Array[("issue" | "accountNotification" | "scheduledChange" | "investigation")]
296
+ attr_accessor actionabilities: ::Array[("ACTION_REQUIRED" | "ACTION_MAY_BE_REQUIRED" | "INFORMATIONAL")]
297
+ attr_accessor personas: ::Array[("OPERATIONS" | "SECURITY" | "BILLING")]
290
298
  SENSITIVE: []
291
299
  end
292
300
 
@@ -322,6 +330,8 @@ module Aws::Health
322
330
  attr_accessor end_time: ::Time
323
331
  attr_accessor last_updated_time: ::Time
324
332
  attr_accessor status_code: ("open" | "closed" | "upcoming")
333
+ attr_accessor actionability: ("ACTION_REQUIRED" | "ACTION_MAY_BE_REQUIRED" | "INFORMATIONAL")
334
+ attr_accessor personas: ::Array[("OPERATIONS" | "SECURITY" | "BILLING")]
325
335
  SENSITIVE: []
326
336
  end
327
337
 
@@ -342,6 +352,7 @@ module Aws::Health
342
352
  end
343
353
 
344
354
  class OrganizationEventFilter
355
+ attr_accessor actionabilities: ::Array[("ACTION_REQUIRED" | "ACTION_MAY_BE_REQUIRED" | "INFORMATIONAL")]
345
356
  attr_accessor event_type_codes: ::Array[::String]
346
357
  attr_accessor aws_account_ids: ::Array[::String]
347
358
  attr_accessor services: ::Array[::String]
@@ -353,6 +364,7 @@ module Aws::Health
353
364
  attr_accessor entity_values: ::Array[::String]
354
365
  attr_accessor event_type_categories: ::Array[("issue" | "accountNotification" | "scheduledChange" | "investigation")]
355
366
  attr_accessor event_status_codes: ::Array[("open" | "closed" | "upcoming")]
367
+ attr_accessor personas: ::Array[("OPERATIONS" | "SECURITY" | "BILLING")]
356
368
  SENSITIVE: []
357
369
  end
358
370
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-health
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.88.0
4
+ version: 1.89.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services