@aws-sdk/client-ssm-incidents 3.451.0 → 3.454.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.
Files changed (37) hide show
  1. package/README.md +16 -0
  2. package/dist-cjs/SSMIncidents.js +4 -0
  3. package/dist-cjs/commands/BatchGetIncidentFindingsCommand.js +51 -0
  4. package/dist-cjs/commands/ListIncidentFindingsCommand.js +51 -0
  5. package/dist-cjs/commands/index.js +2 -0
  6. package/dist-cjs/models/models_0.js +77 -67
  7. package/dist-cjs/pagination/ListIncidentFindingsPaginator.js +29 -0
  8. package/dist-cjs/pagination/index.js +1 -0
  9. package/dist-cjs/protocols/Aws_restJson1.js +199 -2
  10. package/dist-es/SSMIncidents.js +4 -0
  11. package/dist-es/commands/BatchGetIncidentFindingsCommand.js +47 -0
  12. package/dist-es/commands/ListIncidentFindingsCommand.js +47 -0
  13. package/dist-es/commands/index.js +2 -0
  14. package/dist-es/models/models_0.js +72 -62
  15. package/dist-es/pagination/ListIncidentFindingsPaginator.js +25 -0
  16. package/dist-es/pagination/index.js +1 -0
  17. package/dist-es/protocols/Aws_restJson1.js +193 -0
  18. package/dist-types/SSMIncidents.d.ts +14 -0
  19. package/dist-types/SSMIncidentsClient.d.ts +4 -2
  20. package/dist-types/commands/BatchGetIncidentFindingsCommand.d.ts +122 -0
  21. package/dist-types/commands/ListIncidentFindingsCommand.d.ts +101 -0
  22. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  23. package/dist-types/commands/index.d.ts +2 -0
  24. package/dist-types/models/models_0.d.ts +467 -157
  25. package/dist-types/pagination/ListIncidentFindingsPaginator.d.ts +7 -0
  26. package/dist-types/pagination/index.d.ts +1 -0
  27. package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
  28. package/dist-types/ts3.4/SSMIncidents.d.ts +34 -0
  29. package/dist-types/ts3.4/SSMIncidentsClient.d.ts +12 -0
  30. package/dist-types/ts3.4/commands/BatchGetIncidentFindingsCommand.d.ts +42 -0
  31. package/dist-types/ts3.4/commands/ListIncidentFindingsCommand.d.ts +42 -0
  32. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  33. package/dist-types/ts3.4/models/models_0.d.ts +114 -44
  34. package/dist-types/ts3.4/pagination/ListIncidentFindingsPaginator.d.ts +11 -0
  35. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  36. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
  37. package/package.json +2 -2
@@ -229,6 +229,283 @@ export declare namespace AutomationExecution {
229
229
  }
230
230
  const visit: <T>(value: AutomationExecution, visitor: Visitor<T>) => T;
231
231
  }
232
+ /**
233
+ * @public
234
+ */
235
+ export interface BatchGetIncidentFindingsInput {
236
+ /**
237
+ * @public
238
+ * <p>The Amazon Resource Name (ARN) of the incident for which you want to view finding
239
+ * details.</p>
240
+ */
241
+ incidentRecordArn: string | undefined;
242
+ /**
243
+ * @public
244
+ * <p>A list of IDs of findings for which you want to view details.</p>
245
+ */
246
+ findingIds: string[] | undefined;
247
+ }
248
+ /**
249
+ * @public
250
+ * <p>Details about an error returned for a <a>BatchGetIncidentFindings</a>
251
+ * operation.</p>
252
+ */
253
+ export interface BatchGetIncidentFindingsError {
254
+ /**
255
+ * @public
256
+ * <p>The ID of a specified finding for which an error was returned for a
257
+ * <code>BatchGetIncidentFindings</code> operation.</p>
258
+ */
259
+ findingId: string | undefined;
260
+ /**
261
+ * @public
262
+ * <p>The code associated with an error that was returned for a
263
+ * <code>BatchGetIncidentFindings</code> operation.</p>
264
+ */
265
+ code: string | undefined;
266
+ /**
267
+ * @public
268
+ * <p>The description for an error that was returned for a <code>BatchGetIncidentFindings</code>
269
+ * operation.</p>
270
+ */
271
+ message: string | undefined;
272
+ }
273
+ /**
274
+ * @public
275
+ * <p>Information about an CloudFormation stack creation or update that occurred around
276
+ * the time of an incident and could be a potential cause of the incident.</p>
277
+ */
278
+ export interface CloudFormationStackUpdate {
279
+ /**
280
+ * @public
281
+ * <p>The timestamp for when the CloudFormation stack creation or update began.</p>
282
+ */
283
+ startTime: Date | undefined;
284
+ /**
285
+ * @public
286
+ * <p>The timestamp for when the CloudFormation stack creation or update ended. Not reported
287
+ * for deployments that are still in progress.</p>
288
+ */
289
+ endTime?: Date;
290
+ /**
291
+ * @public
292
+ * <p>The Amazon Resource Name (ARN) of the CloudFormation stack involved in the
293
+ * update.</p>
294
+ */
295
+ stackArn: string | undefined;
296
+ }
297
+ /**
298
+ * @public
299
+ * <p>Information about a CodeDeploy deployment that occurred around the time of an
300
+ * incident and could be a possible cause of the incident.</p>
301
+ */
302
+ export interface CodeDeployDeployment {
303
+ /**
304
+ * @public
305
+ * <p>The timestamp for when the CodeDeploy deployment began.</p>
306
+ */
307
+ startTime: Date | undefined;
308
+ /**
309
+ * @public
310
+ * <p>The timestamp for when the CodeDeploy deployment ended. Not reported for
311
+ * deployments that are still in progress.</p>
312
+ */
313
+ endTime?: Date;
314
+ /**
315
+ * @public
316
+ * <p>The Amazon Resource Name (ARN) of the CodeDeploy deployment group associated with
317
+ * the deployment.</p>
318
+ */
319
+ deploymentGroupArn: string | undefined;
320
+ /**
321
+ * @public
322
+ * <p>The ID of the CodeDeploy deployment.</p>
323
+ */
324
+ deploymentId: string | undefined;
325
+ }
326
+ /**
327
+ * @public
328
+ * <p>Extended textual information about the finding.</p>
329
+ */
330
+ export type FindingDetails = FindingDetails.CloudFormationStackUpdateMember | FindingDetails.CodeDeployDeploymentMember | FindingDetails.$UnknownMember;
331
+ /**
332
+ * @public
333
+ */
334
+ export declare namespace FindingDetails {
335
+ /**
336
+ * @public
337
+ * <p>Information about the CodeDeploy deployment associated with the finding.</p>
338
+ */
339
+ interface CodeDeployDeploymentMember {
340
+ codeDeployDeployment: CodeDeployDeployment;
341
+ cloudFormationStackUpdate?: never;
342
+ $unknown?: never;
343
+ }
344
+ /**
345
+ * @public
346
+ * <p>Information about the CloudFormation stack creation or update associated with the
347
+ * finding.</p>
348
+ */
349
+ interface CloudFormationStackUpdateMember {
350
+ codeDeployDeployment?: never;
351
+ cloudFormationStackUpdate: CloudFormationStackUpdate;
352
+ $unknown?: never;
353
+ }
354
+ /**
355
+ * @public
356
+ */
357
+ interface $UnknownMember {
358
+ codeDeployDeployment?: never;
359
+ cloudFormationStackUpdate?: never;
360
+ $unknown: [string, any];
361
+ }
362
+ interface Visitor<T> {
363
+ codeDeployDeployment: (value: CodeDeployDeployment) => T;
364
+ cloudFormationStackUpdate: (value: CloudFormationStackUpdate) => T;
365
+ _: (name: string, value: any) => T;
366
+ }
367
+ const visit: <T>(value: FindingDetails, visitor: Visitor<T>) => T;
368
+ }
369
+ /**
370
+ * @public
371
+ * <p>Information about a specific CodeDeploy deployment or CloudFormation
372
+ * stack creation or update that occurred around the time of a reported incident. These
373
+ * activities can be investigated as a potential cause of the incident.</p>
374
+ */
375
+ export interface Finding {
376
+ /**
377
+ * @public
378
+ * <p>The ID assigned to the finding.</p>
379
+ */
380
+ id: string | undefined;
381
+ /**
382
+ * @public
383
+ * <p>The timestamp for when a finding was created.</p>
384
+ */
385
+ creationTime: Date | undefined;
386
+ /**
387
+ * @public
388
+ * <p>The timestamp for when the finding was most recently updated with additional
389
+ * information.</p>
390
+ */
391
+ lastModifiedTime: Date | undefined;
392
+ /**
393
+ * @public
394
+ * <p>Details about the finding.</p>
395
+ */
396
+ details?: FindingDetails;
397
+ }
398
+ /**
399
+ * @public
400
+ */
401
+ export interface BatchGetIncidentFindingsOutput {
402
+ /**
403
+ * @public
404
+ * <p>Information about the requested findings.</p>
405
+ */
406
+ findings: Finding[] | undefined;
407
+ /**
408
+ * @public
409
+ * <p>A list of errors encountered during the operation.</p>
410
+ */
411
+ errors: BatchGetIncidentFindingsError[] | undefined;
412
+ }
413
+ /**
414
+ * @public
415
+ * <p>The request processing has failed because of an unknown error, exception or
416
+ * failure.</p>
417
+ */
418
+ export declare class InternalServerException extends __BaseException {
419
+ readonly name: "InternalServerException";
420
+ readonly $fault: "server";
421
+ /**
422
+ * @internal
423
+ */
424
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
425
+ }
426
+ /**
427
+ * @public
428
+ * @enum
429
+ */
430
+ export declare const ResourceType: {
431
+ readonly INCIDENT_RECORD: "INCIDENT_RECORD";
432
+ readonly REPLICATION_SET: "REPLICATION_SET";
433
+ readonly RESOURCE_POLICY: "RESOURCE_POLICY";
434
+ readonly RESPONSE_PLAN: "RESPONSE_PLAN";
435
+ readonly TIMELINE_EVENT: "TIMELINE_EVENT";
436
+ };
437
+ /**
438
+ * @public
439
+ */
440
+ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
441
+ /**
442
+ * @public
443
+ * <p>Request references a resource which doesn't exist. </p>
444
+ */
445
+ export declare class ResourceNotFoundException extends __BaseException {
446
+ readonly name: "ResourceNotFoundException";
447
+ readonly $fault: "client";
448
+ /**
449
+ * @public
450
+ * The identifier for the requested resource
451
+ */
452
+ resourceIdentifier?: string;
453
+ /**
454
+ * @public
455
+ * The resource type
456
+ */
457
+ resourceType?: ResourceType;
458
+ /**
459
+ * @internal
460
+ */
461
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
462
+ }
463
+ /**
464
+ * @public
465
+ * @enum
466
+ */
467
+ export declare const ServiceCode: {
468
+ readonly SSM_INCIDENTS: "ssm-incidents";
469
+ };
470
+ /**
471
+ * @public
472
+ */
473
+ export type ServiceCode = (typeof ServiceCode)[keyof typeof ServiceCode];
474
+ /**
475
+ * @public
476
+ * <p>The request was denied due to request throttling.</p>
477
+ */
478
+ export declare class ThrottlingException extends __BaseException {
479
+ readonly name: "ThrottlingException";
480
+ readonly $fault: "client";
481
+ /**
482
+ * @public
483
+ * Originating service code
484
+ */
485
+ serviceCode: ServiceCode | undefined;
486
+ /**
487
+ * @public
488
+ * Originating quota code
489
+ */
490
+ quotaCode: string | undefined;
491
+ /**
492
+ * @internal
493
+ */
494
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
495
+ }
496
+ /**
497
+ * @public
498
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services
499
+ * service.</p>
500
+ */
501
+ export declare class ValidationException extends __BaseException {
502
+ readonly name: "ValidationException";
503
+ readonly $fault: "client";
504
+ /**
505
+ * @internal
506
+ */
507
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
508
+ }
232
509
  /**
233
510
  * @public
234
511
  * <p>Used to remove the chat channel from an incident record or response plan.</p>
@@ -338,21 +615,6 @@ export declare namespace Condition {
338
615
  }
339
616
  const visit: <T>(value: Condition, visitor: Visitor<T>) => T;
340
617
  }
341
- /**
342
- * @public
343
- * @enum
344
- */
345
- export declare const ResourceType: {
346
- readonly INCIDENT_RECORD: "INCIDENT_RECORD";
347
- readonly REPLICATION_SET: "REPLICATION_SET";
348
- readonly RESOURCE_POLICY: "RESOURCE_POLICY";
349
- readonly RESPONSE_PLAN: "RESPONSE_PLAN";
350
- readonly TIMELINE_EVENT: "TIMELINE_EVENT";
351
- };
352
- /**
353
- * @public
354
- */
355
- export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
356
618
  /**
357
619
  * @public
358
620
  * <p>Updating or deleting a resource causes an inconsistent state.</p>
@@ -424,30 +686,6 @@ export interface CreateReplicationSetOutput {
424
686
  */
425
687
  arn: string | undefined;
426
688
  }
427
- /**
428
- * @public
429
- * <p>The request processing has failed because of an unknown error, exception or
430
- * failure.</p>
431
- */
432
- export declare class InternalServerException extends __BaseException {
433
- readonly name: "InternalServerException";
434
- readonly $fault: "server";
435
- /**
436
- * @internal
437
- */
438
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
439
- }
440
- /**
441
- * @public
442
- * @enum
443
- */
444
- export declare const ServiceCode: {
445
- readonly SSM_INCIDENTS: "ssm-incidents";
446
- };
447
- /**
448
- * @public
449
- */
450
- export type ServiceCode = (typeof ServiceCode)[keyof typeof ServiceCode];
451
689
  /**
452
690
  * @public
453
691
  * <p>Request would cause a service quota to be exceeded.</p>
@@ -480,41 +718,6 @@ export declare class ServiceQuotaExceededException extends __BaseException {
480
718
  */
481
719
  constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
482
720
  }
483
- /**
484
- * @public
485
- * <p>The request was denied due to request throttling.</p>
486
- */
487
- export declare class ThrottlingException extends __BaseException {
488
- readonly name: "ThrottlingException";
489
- readonly $fault: "client";
490
- /**
491
- * @public
492
- * Originating service code
493
- */
494
- serviceCode: ServiceCode | undefined;
495
- /**
496
- * @public
497
- * Originating quota code
498
- */
499
- quotaCode: string | undefined;
500
- /**
501
- * @internal
502
- */
503
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
504
- }
505
- /**
506
- * @public
507
- * <p>The input fails to satisfy the constraints specified by an Amazon Web Services
508
- * service.</p>
509
- */
510
- export declare class ValidationException extends __BaseException {
511
- readonly name: "ValidationException";
512
- readonly $fault: "client";
513
- /**
514
- * @internal
515
- */
516
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
517
- }
518
721
  /**
519
722
  * @public
520
723
  * <p>The SNS targets that are notified when updates are made to an incident.</p>
@@ -558,7 +761,32 @@ export interface IncidentTemplate {
558
761
  title: string | undefined;
559
762
  /**
560
763
  * @public
561
- * <p>The impact of the incident on your customers and applications. </p>
764
+ * <p>The impact of the incident on your customers and applications.</p>
765
+ * <p class="title">
766
+ * <b>Supported impact codes</b>
767
+ * </p>
768
+ * <ul>
769
+ * <li>
770
+ * <p>
771
+ * <code>1</code> - Critical</p>
772
+ * </li>
773
+ * <li>
774
+ * <p>
775
+ * <code>2</code> - High</p>
776
+ * </li>
777
+ * <li>
778
+ * <p>
779
+ * <code>3</code> - Medium</p>
780
+ * </li>
781
+ * <li>
782
+ * <p>
783
+ * <code>4</code> - Low</p>
784
+ * </li>
785
+ * <li>
786
+ * <p>
787
+ * <code>5</code> - No Impact</p>
788
+ * </li>
789
+ * </ul>
562
790
  */
563
791
  impact: number | undefined;
564
792
  /**
@@ -569,8 +797,18 @@ export interface IncidentTemplate {
569
797
  summary?: string;
570
798
  /**
571
799
  * @public
572
- * <p>Used to stop Incident Manager from creating multiple incident records for the same incident.
573
- * </p>
800
+ * <p>The string Incident Manager uses to prevent the same root cause from creating multiple
801
+ * incidents in the same account.</p>
802
+ * <p>A deduplication string is a term or phrase the system uses to check for duplicate
803
+ * incidents. If you specify a deduplication string, Incident Manager searches for open incidents that
804
+ * contain the same string in the <code>dedupeString</code> field when it creates the incident.
805
+ * If a duplicate is detected, Incident Manager deduplicates the newer incident into the existing
806
+ * incident.</p>
807
+ * <note>
808
+ * <p>By default, Incident Manager automatically deduplicates multiple incidents created by the
809
+ * same Amazon CloudWatch alarm or Amazon EventBridge event. You don't have to enter
810
+ * your own deduplication string to prevent duplication for these resource types.</p>
811
+ * </note>
574
812
  */
575
813
  dedupeString?: string;
576
814
  /**
@@ -712,28 +950,6 @@ export interface CreateResponsePlanOutput {
712
950
  */
713
951
  arn: string | undefined;
714
952
  }
715
- /**
716
- * @public
717
- * <p>Request references a resource which doesn't exist. </p>
718
- */
719
- export declare class ResourceNotFoundException extends __BaseException {
720
- readonly name: "ResourceNotFoundException";
721
- readonly $fault: "client";
722
- /**
723
- * @public
724
- * The identifier for the requested resource
725
- */
726
- resourceIdentifier?: string;
727
- /**
728
- * @public
729
- * The resource type
730
- */
731
- resourceType?: ResourceType;
732
- /**
733
- * @internal
734
- */
735
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
736
- }
737
953
  /**
738
954
  * @public
739
955
  * <p>An item referenced in a <code>TimelineEvent</code> that is involved in or somehow
@@ -796,13 +1012,16 @@ export interface CreateTimelineEventInput {
796
1012
  incidentRecordArn: string | undefined;
797
1013
  /**
798
1014
  * @public
799
- * <p>The time that the event occurred.</p>
1015
+ * <p>The timestamp for when the event occurred.</p>
800
1016
  */
801
1017
  eventTime: Date | undefined;
802
1018
  /**
803
1019
  * @public
804
- * <p>The type of event. You can create timeline events of type <code>Custom
805
- * Event</code>.</p>
1020
+ * <p>The type of event. You can create timeline events of type <code>Custom Event</code> and
1021
+ * <code>Note</code>.</p>
1022
+ * <p>To make a Note-type event appear on the <i>Incident notes</i> panel in the
1023
+ * console, specify <code>eventType</code> as <code>Note</code>and enter the Amazon Resource Name
1024
+ * (ARN) of the incident as the value for <code>eventReference</code>.</p>
806
1025
  */
807
1026
  eventType: string | undefined;
808
1027
  /**
@@ -950,17 +1169,18 @@ export interface EventSummary {
950
1169
  eventId: string | undefined;
951
1170
  /**
952
1171
  * @public
953
- * <p>The time that the event occurred.</p>
1172
+ * <p>The timestamp for when the event occurred.</p>
954
1173
  */
955
1174
  eventTime: Date | undefined;
956
1175
  /**
957
1176
  * @public
958
- * <p>The time that the timeline event was last updated.</p>
1177
+ * <p>The timestamp for when the timeline event was last updated.</p>
959
1178
  */
960
1179
  eventUpdatedTime: Date | undefined;
961
1180
  /**
962
1181
  * @public
963
- * <p>The type of event. The timeline event must be <code>Custom Event</code>.</p>
1182
+ * <p>The type of event. The timeline event must be <code>Custom Event</code> or
1183
+ * <code>Note</code>.</p>
964
1184
  */
965
1185
  eventType: string | undefined;
966
1186
  /**
@@ -986,6 +1206,22 @@ export interface Filter {
986
1206
  */
987
1207
  condition: Condition | undefined;
988
1208
  }
1209
+ /**
1210
+ * @public
1211
+ * <p>Identifying information about the finding.</p>
1212
+ */
1213
+ export interface FindingSummary {
1214
+ /**
1215
+ * @public
1216
+ * <p>The ID of the finding.</p>
1217
+ */
1218
+ id: string | undefined;
1219
+ /**
1220
+ * @public
1221
+ * <p>The timestamp for when the finding was last updated.</p>
1222
+ */
1223
+ lastModifiedTime: Date | undefined;
1224
+ }
989
1225
  /**
990
1226
  * @public
991
1227
  */
@@ -1066,21 +1302,46 @@ export interface IncidentRecord {
1066
1302
  /**
1067
1303
  * @public
1068
1304
  * <p>The impact of the incident on customers and applications.</p>
1305
+ * <p class="title">
1306
+ * <b>Supported impact codes</b>
1307
+ * </p>
1308
+ * <ul>
1309
+ * <li>
1310
+ * <p>
1311
+ * <code>1</code> - Critical</p>
1312
+ * </li>
1313
+ * <li>
1314
+ * <p>
1315
+ * <code>2</code> - High</p>
1316
+ * </li>
1317
+ * <li>
1318
+ * <p>
1319
+ * <code>3</code> - Medium</p>
1320
+ * </li>
1321
+ * <li>
1322
+ * <p>
1323
+ * <code>4</code> - Low</p>
1324
+ * </li>
1325
+ * <li>
1326
+ * <p>
1327
+ * <code>5</code> - No Impact</p>
1328
+ * </li>
1329
+ * </ul>
1069
1330
  */
1070
1331
  impact: number | undefined;
1071
1332
  /**
1072
1333
  * @public
1073
- * <p>The time that Incident Manager created the incident record.</p>
1334
+ * <p>The timestamp for when Incident Manager created the incident record.</p>
1074
1335
  */
1075
1336
  creationTime: Date | undefined;
1076
1337
  /**
1077
1338
  * @public
1078
- * <p>The time at which the incident was resolved. This appears as a timeline event.</p>
1339
+ * <p>The timestamp for when the incident was resolved. This appears as a timeline event.</p>
1079
1340
  */
1080
1341
  resolvedTime?: Date;
1081
1342
  /**
1082
1343
  * @public
1083
- * <p>The time at which the incident was most recently modified.</p>
1344
+ * <p>The timestamp for when the incident was most recently modified.</p>
1084
1345
  */
1085
1346
  lastModifiedTime: Date | undefined;
1086
1347
  /**
@@ -1184,7 +1445,7 @@ export interface RegionInfo {
1184
1445
  statusMessage?: string;
1185
1446
  /**
1186
1447
  * @public
1187
- * <p>The most recent date and time that Incident Manager updated the Amazon Web Services Region's status.</p>
1448
+ * <p>The timestamp for when Incident Manager updated the status of the Amazon Web Services Region.</p>
1188
1449
  */
1189
1450
  statusUpdateDateTime: Date | undefined;
1190
1451
  }
@@ -1295,7 +1556,8 @@ export interface GetResourcePoliciesInput {
1295
1556
  maxResults?: number;
1296
1557
  /**
1297
1558
  * @public
1298
- * <p>The pagination token to continue to the next page of results.</p>
1559
+ * <p>The pagination token for the next set of items to return. (You received this token from a
1560
+ * previous call.)</p>
1299
1561
  */
1300
1562
  nextToken?: string;
1301
1563
  }
@@ -1332,7 +1594,8 @@ export interface GetResourcePoliciesOutput {
1332
1594
  resourcePolicies: ResourcePolicy[] | undefined;
1333
1595
  /**
1334
1596
  * @public
1335
- * <p>The pagination token to continue to the next page of results.</p>
1597
+ * <p>The pagination token to use when requesting the next set of items. If there are no
1598
+ * additional items to return, the string is null.</p>
1336
1599
  */
1337
1600
  nextToken?: string;
1338
1601
  }
@@ -1426,18 +1689,18 @@ export interface TimelineEvent {
1426
1689
  eventId: string | undefined;
1427
1690
  /**
1428
1691
  * @public
1429
- * <p>The time that the event occurred.</p>
1692
+ * <p>The timestamp for when the event occurred.</p>
1430
1693
  */
1431
1694
  eventTime: Date | undefined;
1432
1695
  /**
1433
1696
  * @public
1434
- * <p>The time that the timeline event was last updated.</p>
1697
+ * <p>The timestamp for when the timeline event was last updated.</p>
1435
1698
  */
1436
1699
  eventUpdatedTime: Date | undefined;
1437
1700
  /**
1438
1701
  * @public
1439
1702
  * <p>The type of event that occurred. Currently Incident Manager supports only the <code>Custom
1440
- * Event</code> type.</p>
1703
+ * Event</code> and <code>Note</code> types.</p>
1441
1704
  */
1442
1705
  eventType: string | undefined;
1443
1706
  /**
@@ -1489,12 +1752,12 @@ export interface IncidentRecordSummary {
1489
1752
  impact: number | undefined;
1490
1753
  /**
1491
1754
  * @public
1492
- * <p>The time the incident was created.</p>
1755
+ * <p>The timestamp for when the incident was created.</p>
1493
1756
  */
1494
1757
  creationTime: Date | undefined;
1495
1758
  /**
1496
1759
  * @public
1497
- * <p>The time the incident was resolved.</p>
1760
+ * <p>The timestamp for when the incident was resolved.</p>
1498
1761
  */
1499
1762
  resolvedTime?: Date;
1500
1763
  /**
@@ -1635,6 +1898,45 @@ export interface ItemIdentifier {
1635
1898
  */
1636
1899
  type: ItemType | undefined;
1637
1900
  }
1901
+ /**
1902
+ * @public
1903
+ */
1904
+ export interface ListIncidentFindingsInput {
1905
+ /**
1906
+ * @public
1907
+ * <p>The Amazon Resource Name (ARN) of the incident for which you want to view associated
1908
+ * findings.</p>
1909
+ */
1910
+ incidentRecordArn: string | undefined;
1911
+ /**
1912
+ * @public
1913
+ * <p>The maximum number of findings to retrieve per call.</p>
1914
+ */
1915
+ maxResults?: number;
1916
+ /**
1917
+ * @public
1918
+ * <p>The pagination token for the next set of items to return. (You received this token from a
1919
+ * previous call.)</p>
1920
+ */
1921
+ nextToken?: string;
1922
+ }
1923
+ /**
1924
+ * @public
1925
+ */
1926
+ export interface ListIncidentFindingsOutput {
1927
+ /**
1928
+ * @public
1929
+ * <p>A list of findings that represent deployments that might be the potential cause of the
1930
+ * incident.</p>
1931
+ */
1932
+ findings: FindingSummary[] | undefined;
1933
+ /**
1934
+ * @public
1935
+ * <p>The pagination token to use when requesting the next set of items. If there are no
1936
+ * additional items to return, the string is null.</p>
1937
+ */
1938
+ nextToken?: string;
1939
+ }
1638
1940
  /**
1639
1941
  * @public
1640
1942
  */
@@ -1688,7 +1990,8 @@ export interface ListIncidentRecordsInput {
1688
1990
  maxResults?: number;
1689
1991
  /**
1690
1992
  * @public
1691
- * <p>The pagination token to continue to the next page of results.</p>
1993
+ * <p>The pagination token for the next set of items to return. (You received this token from a
1994
+ * previous call.)</p>
1692
1995
  */
1693
1996
  nextToken?: string;
1694
1997
  }
@@ -1703,7 +2006,8 @@ export interface ListIncidentRecordsOutput {
1703
2006
  incidentRecordSummaries: IncidentRecordSummary[] | undefined;
1704
2007
  /**
1705
2008
  * @public
1706
- * <p>The pagination token to continue to the next page of results.</p>
2009
+ * <p>The pagination token to use when requesting the next set of items. If there are no
2010
+ * additional items to return, the string is null.</p>
1707
2011
  */
1708
2012
  nextToken?: string;
1709
2013
  }
@@ -1724,7 +2028,8 @@ export interface ListRelatedItemsInput {
1724
2028
  maxResults?: number;
1725
2029
  /**
1726
2030
  * @public
1727
- * <p>The pagination token to continue to the next page of results.</p>
2031
+ * <p>The pagination token for the next set of items to return. (You received this token from a
2032
+ * previous call.)</p>
1728
2033
  */
1729
2034
  nextToken?: string;
1730
2035
  }
@@ -1763,7 +2068,8 @@ export interface ListRelatedItemsOutput {
1763
2068
  relatedItems: RelatedItem[] | undefined;
1764
2069
  /**
1765
2070
  * @public
1766
- * <p>The pagination token to continue to the next page of results.</p>
2071
+ * <p>The pagination token to use when requesting the next set of items. If there are no
2072
+ * additional items to return, the string is null.</p>
1767
2073
  */
1768
2074
  nextToken?: string;
1769
2075
  }
@@ -1778,7 +2084,8 @@ export interface ListReplicationSetsInput {
1778
2084
  maxResults?: number;
1779
2085
  /**
1780
2086
  * @public
1781
- * <p>The pagination token to continue to the next page of results.</p>
2087
+ * <p>The pagination token for the next set of items to return. (You received this token from a
2088
+ * previous call.)</p>
1782
2089
  */
1783
2090
  nextToken?: string;
1784
2091
  }
@@ -1793,7 +2100,8 @@ export interface ListReplicationSetsOutput {
1793
2100
  replicationSetArns: string[] | undefined;
1794
2101
  /**
1795
2102
  * @public
1796
- * <p>The pagination token to continue to the next page of results.</p>
2103
+ * <p>The pagination token to use when requesting the next set of items. If there are no
2104
+ * additional items to return, the string is null.</p>
1797
2105
  */
1798
2106
  nextToken?: string;
1799
2107
  }
@@ -1808,7 +2116,8 @@ export interface ListResponsePlansInput {
1808
2116
  maxResults?: number;
1809
2117
  /**
1810
2118
  * @public
1811
- * <p>The pagination token to continue to the next page of results.</p>
2119
+ * <p>The pagination token for the next set of items to return. (You received this token from a
2120
+ * previous call.)</p>
1812
2121
  */
1813
2122
  nextToken?: string;
1814
2123
  }
@@ -1844,7 +2153,8 @@ export interface ListResponsePlansOutput {
1844
2153
  responsePlanSummaries: ResponsePlanSummary[] | undefined;
1845
2154
  /**
1846
2155
  * @public
1847
- * <p>The pagination token to continue to the next page of results.</p>
2156
+ * <p>The pagination token to use when requesting the next set of items. If there are no
2157
+ * additional items to return, the string is null.</p>
1848
2158
  */
1849
2159
  nextToken?: string;
1850
2160
  }
@@ -1854,7 +2164,7 @@ export interface ListResponsePlansOutput {
1854
2164
  export interface ListTagsForResourceRequest {
1855
2165
  /**
1856
2166
  * @public
1857
- * <p>The Amazon Resource Name (ARN) of the response plan.</p>
2167
+ * <p>The Amazon Resource Name (ARN) of the response plan or incident.</p>
1858
2168
  */
1859
2169
  resourceArn: string | undefined;
1860
2170
  }
@@ -1864,7 +2174,7 @@ export interface ListTagsForResourceRequest {
1864
2174
  export interface ListTagsForResourceResponse {
1865
2175
  /**
1866
2176
  * @public
1867
- * <p>A list of tags for the response plan.</p>
2177
+ * <p>A list of tags for the response plan or incident.</p>
1868
2178
  */
1869
2179
  tags: Record<string, string> | undefined;
1870
2180
  }
@@ -1907,6 +2217,11 @@ export interface ListTimelineEventsInput {
1907
2217
  * <ul>
1908
2218
  * <li>
1909
2219
  * <p>
2220
+ * <code>eventReference</code>
2221
+ * </p>
2222
+ * </li>
2223
+ * <li>
2224
+ * <p>
1910
2225
  * <code>eventTime</code>
1911
2226
  * </p>
1912
2227
  * </li>
@@ -1950,7 +2265,8 @@ export interface ListTimelineEventsInput {
1950
2265
  maxResults?: number;
1951
2266
  /**
1952
2267
  * @public
1953
- * <p>The pagination token to continue to the next page of results.</p>
2268
+ * <p>The pagination token for the next set of items to return. (You received this token from a
2269
+ * previous call.)</p>
1954
2270
  */
1955
2271
  nextToken?: string;
1956
2272
  }
@@ -1965,7 +2281,8 @@ export interface ListTimelineEventsOutput {
1965
2281
  eventSummaries: EventSummary[] | undefined;
1966
2282
  /**
1967
2283
  * @public
1968
- * <p>The pagination token to continue to the next page of results.</p>
2284
+ * <p>The pagination token to use when requesting the next set of items. If there are no
2285
+ * additional items to return, the string is null.</p>
1969
2286
  */
1970
2287
  nextToken?: string;
1971
2288
  }
@@ -2055,7 +2372,7 @@ export interface TriggerDetails {
2055
2372
  triggerArn?: string;
2056
2373
  /**
2057
2374
  * @public
2058
- * <p>The time that the incident was detected.</p>
2375
+ * <p>The timestamp for when the incident was detected.</p>
2059
2376
  */
2060
2377
  timestamp: Date | undefined;
2061
2378
  /**
@@ -2090,32 +2407,28 @@ export interface StartIncidentInput {
2090
2407
  * <p>Defines the impact to the customers. Providing an impact overwrites the impact provided by
2091
2408
  * a response plan.</p>
2092
2409
  * <p class="title">
2093
- * <b>Possible impacts:</b>
2410
+ * <b>Supported impact codes</b>
2094
2411
  * </p>
2095
2412
  * <ul>
2096
2413
  * <li>
2097
2414
  * <p>
2098
- * <code>1</code> - Critical impact, this typically relates to full application failure
2099
- * that impacts many to all customers. </p>
2415
+ * <code>1</code> - Critical</p>
2100
2416
  * </li>
2101
2417
  * <li>
2102
2418
  * <p>
2103
- * <code>2</code> - High impact, partial application failure with impact to many
2104
- * customers.</p>
2419
+ * <code>2</code> - High</p>
2105
2420
  * </li>
2106
2421
  * <li>
2107
2422
  * <p>
2108
- * <code>3</code> - Medium impact, the application is providing reduced service to
2109
- * customers.</p>
2423
+ * <code>3</code> - Medium</p>
2110
2424
  * </li>
2111
2425
  * <li>
2112
2426
  * <p>
2113
- * <code>4</code> - Low impact, customer might aren't impacted by the problem yet.</p>
2427
+ * <code>4</code> - Low</p>
2114
2428
  * </li>
2115
2429
  * <li>
2116
2430
  * <p>
2117
- * <code>5</code> - No impact, customers aren't currently impacted but urgent action is
2118
- * needed to avoid impact.</p>
2431
+ * <code>5</code> - No Impact</p>
2119
2432
  * </li>
2120
2433
  * </ul>
2121
2434
  */
@@ -2238,32 +2551,28 @@ export interface UpdateIncidentRecordInput {
2238
2551
  * <p>Defines the impact of the incident to customers and applications. If you provide an impact
2239
2552
  * for an incident, it overwrites the impact provided by the response plan.</p>
2240
2553
  * <p class="title">
2241
- * <b>Possible impacts:</b>
2554
+ * <b>Supported impact codes</b>
2242
2555
  * </p>
2243
2556
  * <ul>
2244
2557
  * <li>
2245
2558
  * <p>
2246
- * <code>1</code> - Critical impact, full application failure that impacts many to all
2247
- * customers. </p>
2559
+ * <code>1</code> - Critical</p>
2248
2560
  * </li>
2249
2561
  * <li>
2250
2562
  * <p>
2251
- * <code>2</code> - High impact, partial application failure with impact to many
2252
- * customers.</p>
2563
+ * <code>2</code> - High</p>
2253
2564
  * </li>
2254
2565
  * <li>
2255
2566
  * <p>
2256
- * <code>3</code> - Medium impact, the application is providing reduced service to
2257
- * customers.</p>
2567
+ * <code>3</code> - Medium</p>
2258
2568
  * </li>
2259
2569
  * <li>
2260
2570
  * <p>
2261
- * <code>4</code> - Low impact, customer aren't impacted by the problem yet.</p>
2571
+ * <code>4</code> - Low</p>
2262
2572
  * </li>
2263
2573
  * <li>
2264
2574
  * <p>
2265
- * <code>5</code> - No impact, customers aren't currently impacted but urgent action is
2266
- * needed to avoid impact.</p>
2575
+ * <code>5</code> - No Impact</p>
2267
2576
  * </li>
2268
2577
  * </ul>
2269
2578
  */
@@ -2419,28 +2728,28 @@ export interface UpdateResponsePlanInput {
2419
2728
  * <p>Defines the impact to the customers. Providing an impact overwrites the impact provided by
2420
2729
  * a response plan.</p>
2421
2730
  * <p class="title">
2422
- * <b>Possible impacts:</b>
2731
+ * <b>Supported impact codes</b>
2423
2732
  * </p>
2424
2733
  * <ul>
2425
2734
  * <li>
2426
2735
  * <p>
2427
- * <code>5</code> - Severe impact</p>
2736
+ * <code>1</code> - Critical</p>
2428
2737
  * </li>
2429
2738
  * <li>
2430
2739
  * <p>
2431
- * <code>4</code> - High impact</p>
2740
+ * <code>2</code> - High</p>
2432
2741
  * </li>
2433
2742
  * <li>
2434
2743
  * <p>
2435
- * <code>3</code> - Medium impact</p>
2744
+ * <code>3</code> - Medium</p>
2436
2745
  * </li>
2437
2746
  * <li>
2438
2747
  * <p>
2439
- * <code>2</code> - Low impact</p>
2748
+ * <code>4</code> - Low</p>
2440
2749
  * </li>
2441
2750
  * <li>
2442
2751
  * <p>
2443
- * <code>1</code> - No impact</p>
2752
+ * <code>5</code> - No Impact</p>
2444
2753
  * </li>
2445
2754
  * </ul>
2446
2755
  */
@@ -2522,12 +2831,13 @@ export interface UpdateTimelineEventInput {
2522
2831
  eventId: string | undefined;
2523
2832
  /**
2524
2833
  * @public
2525
- * <p>The time that the event occurred.</p>
2834
+ * <p>The timestamp for when the event occurred.</p>
2526
2835
  */
2527
2836
  eventTime?: Date;
2528
2837
  /**
2529
2838
  * @public
2530
- * <p>The type of event. You can update events of type <code>Custom Event</code>.</p>
2839
+ * <p>The type of event. You can update events of type <code>Custom Event</code> and
2840
+ * <code>Note</code>.</p>
2531
2841
  */
2532
2842
  eventType?: string;
2533
2843
  /**