cdk-comprehend-s3olap 2.0.121 → 2.0.123

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 (89) hide show
  1. package/.jsii +4 -4
  2. package/lib/cdk-comprehend-s3olap.js +2 -2
  3. package/lib/comprehend-lambdas.js +2 -2
  4. package/lib/iam-roles.js +4 -4
  5. package/node_modules/@esbuild/linux-x64/bin/esbuild +0 -0
  6. package/node_modules/@esbuild/linux-x64/package.json +1 -1
  7. package/node_modules/aws-sdk/CHANGELOG.md +25 -1
  8. package/node_modules/aws-sdk/README.md +1 -1
  9. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +196 -187
  10. package/node_modules/aws-sdk/apis/ecr-public-2020-10-30.min.json +8 -8
  11. package/node_modules/aws-sdk/apis/emr-serverless-2021-07-13.min.json +3 -0
  12. package/node_modules/aws-sdk/apis/eventbridge-2015-10-07.min.json +18 -6
  13. package/node_modules/aws-sdk/apis/iot-data-2015-05-28.min.json +3 -0
  14. package/node_modules/aws-sdk/apis/marketplace-catalog-2018-09-17.min.json +82 -15
  15. package/node_modules/aws-sdk/apis/mediaconvert-2017-08-29.min.json +56 -32
  16. package/node_modules/aws-sdk/apis/rekognition-2016-06-27.min.json +224 -138
  17. package/node_modules/aws-sdk/apis/wafv2-2019-07-29.min.json +55 -28
  18. package/node_modules/aws-sdk/clients/connect.d.ts +15 -4
  19. package/node_modules/aws-sdk/clients/ecrpublic.d.ts +2 -2
  20. package/node_modules/aws-sdk/clients/ecs.d.ts +24 -24
  21. package/node_modules/aws-sdk/clients/emrserverless.d.ts +7 -3
  22. package/node_modules/aws-sdk/clients/eventbridge.d.ts +3 -1
  23. package/node_modules/aws-sdk/clients/iotdata.d.ts +5 -0
  24. package/node_modules/aws-sdk/clients/marketplacecatalog.d.ts +67 -7
  25. package/node_modules/aws-sdk/clients/mediaconvert.d.ts +20 -1
  26. package/node_modules/aws-sdk/clients/omics.d.ts +2 -2
  27. package/node_modules/aws-sdk/clients/rekognition.d.ts +114 -16
  28. package/node_modules/aws-sdk/clients/wafv2.d.ts +89 -62
  29. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  30. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +2537 -880
  31. package/node_modules/aws-sdk/dist/aws-sdk.js +508 -343
  32. package/node_modules/aws-sdk/dist/aws-sdk.min.js +79 -79
  33. package/node_modules/aws-sdk/dist/xml2js.js +2579 -922
  34. package/node_modules/aws-sdk/lib/core.js +1 -1
  35. package/node_modules/aws-sdk/package.json +2 -2
  36. package/node_modules/esbuild/bin/esbuild +1 -1
  37. package/node_modules/esbuild/lib/main.js +8 -8
  38. package/node_modules/esbuild/package.json +23 -23
  39. package/node_modules/xml2js/README.md +108 -7
  40. package/node_modules/xml2js/lib/parser.js +35 -7
  41. package/node_modules/xml2js/lib/xml2js.js +2 -0
  42. package/node_modules/xml2js/node_modules/xmlbuilder/CHANGELOG.md +47 -0
  43. package/node_modules/xml2js/node_modules/xmlbuilder/LICENSE +21 -21
  44. package/node_modules/xml2js/node_modules/xmlbuilder/README.md +86 -85
  45. package/node_modules/xml2js/node_modules/xmlbuilder/appveyor.yml +20 -0
  46. package/node_modules/xml2js/node_modules/xmlbuilder/lib/Derivation.js +10 -0
  47. package/node_modules/xml2js/node_modules/xmlbuilder/lib/DocumentPosition.js +12 -0
  48. package/node_modules/xml2js/node_modules/xmlbuilder/lib/NodeType.js +23 -0
  49. package/node_modules/xml2js/node_modules/xmlbuilder/lib/OperationType.js +11 -0
  50. package/node_modules/xml2js/node_modules/xmlbuilder/lib/Utility.js +11 -1
  51. package/node_modules/xml2js/node_modules/xmlbuilder/lib/WriterState.js +10 -0
  52. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLAttribute.js +86 -9
  53. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLCData.js +10 -6
  54. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLCharacterData.js +79 -0
  55. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLComment.js +10 -6
  56. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMConfiguration.js +64 -0
  57. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMErrorHandler.js +16 -0
  58. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMImplementation.js +32 -0
  59. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMStringList.js +28 -0
  60. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDAttList.js +16 -11
  61. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDElement.js +7 -4
  62. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDEntity.js +49 -8
  63. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDNotation.js +20 -5
  64. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDeclaration.js +5 -2
  65. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocType.js +84 -5
  66. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocument.js +199 -5
  67. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocumentCB.js +165 -39
  68. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocumentFragment.js +24 -0
  69. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDummy.js +31 -0
  70. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLElement.js +207 -20
  71. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNamedNodeMap.js +58 -0
  72. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNode.js +403 -50
  73. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNodeFilter.js +48 -0
  74. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNodeList.js +28 -0
  75. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLProcessingInstruction.js +19 -5
  76. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLRaw.js +6 -3
  77. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLStreamWriter.js +94 -197
  78. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLStringWriter.js +6 -305
  79. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLStringifier.js +109 -32
  80. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLText.js +43 -6
  81. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLTypeInfo.js +21 -0
  82. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLUserDataHandler.js +16 -0
  83. package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLWriterBase.js +397 -59
  84. package/node_modules/xml2js/node_modules/xmlbuilder/lib/index.js +15 -3
  85. package/node_modules/xml2js/node_modules/xmlbuilder/package.json +5 -3
  86. package/node_modules/xml2js/node_modules/xmlbuilder/typings/index.d.ts +153 -0
  87. package/node_modules/xml2js/package.json +11 -5
  88. package/package.json +4 -4
  89. package/node_modules/xml2js/node_modules/xmlbuilder/.npmignore +0 -5
@@ -188,6 +188,9 @@
188
188
  },
189
189
  "TokenDomains": {
190
190
  "shape": "S4k"
191
+ },
192
+ "AssociationConfig": {
193
+ "shape": "S4m"
191
194
  }
192
195
  }
193
196
  },
@@ -195,7 +198,7 @@
195
198
  "type": "structure",
196
199
  "members": {
197
200
  "Summary": {
198
- "shape": "S4n"
201
+ "shape": "S4s"
199
202
  }
200
203
  }
201
204
  }
@@ -370,10 +373,10 @@
370
373
  },
371
374
  "LabelNamespace": {},
372
375
  "AvailableLabels": {
373
- "shape": "S56"
376
+ "shape": "S5b"
374
377
  },
375
378
  "ConsumedLabels": {
376
- "shape": "S56"
379
+ "shape": "S5b"
377
380
  }
378
381
  }
379
382
  }
@@ -467,7 +470,7 @@
467
470
  "type": "structure",
468
471
  "members": {
469
472
  "LoggingConfiguration": {
470
- "shape": "S5j"
473
+ "shape": "S5o"
471
474
  }
472
475
  }
473
476
  }
@@ -603,10 +606,10 @@
603
606
  "type": "structure",
604
607
  "members": {
605
608
  "ManagedKeysIPV4": {
606
- "shape": "S6c"
609
+ "shape": "S6h"
607
610
  },
608
611
  "ManagedKeysIPV6": {
609
- "shape": "S6c"
612
+ "shape": "S6h"
610
613
  }
611
614
  }
612
615
  }
@@ -685,10 +688,10 @@
685
688
  "shape": "S4c"
686
689
  },
687
690
  "AvailableLabels": {
688
- "shape": "S56"
691
+ "shape": "S5b"
689
692
  },
690
693
  "ConsumedLabels": {
691
- "shape": "S56"
694
+ "shape": "S5b"
692
695
  }
693
696
  }
694
697
  },
@@ -711,7 +714,7 @@
711
714
  "RuleMetricName": {},
712
715
  "Scope": {},
713
716
  "TimeWindow": {
714
- "shape": "S6k"
717
+ "shape": "S6p"
715
718
  },
716
719
  "MaxItems": {
717
720
  "type": "long"
@@ -739,7 +742,7 @@
739
742
  "Method": {},
740
743
  "HTTPVersion": {},
741
744
  "Headers": {
742
- "shape": "S6v"
745
+ "shape": "S70"
743
746
  }
744
747
  }
745
748
  },
@@ -752,7 +755,7 @@
752
755
  "Action": {},
753
756
  "RuleNameWithinRuleGroup": {},
754
757
  "RequestHeadersInserted": {
755
- "shape": "S6v"
758
+ "shape": "S70"
756
759
  },
757
760
  "ResponseCodeSent": {
758
761
  "type": "integer"
@@ -792,7 +795,7 @@
792
795
  "type": "long"
793
796
  },
794
797
  "TimeWindow": {
795
- "shape": "S6k"
798
+ "shape": "S6p"
796
799
  }
797
800
  }
798
801
  }
@@ -815,7 +818,7 @@
815
818
  "type": "structure",
816
819
  "members": {
817
820
  "WebACL": {
818
- "shape": "S79"
821
+ "shape": "S7e"
819
822
  },
820
823
  "LockToken": {},
821
824
  "ApplicationIntegrationURL": {}
@@ -836,7 +839,7 @@
836
839
  "type": "structure",
837
840
  "members": {
838
841
  "WebACL": {
839
- "shape": "S79"
842
+ "shape": "S7e"
840
843
  }
841
844
  }
842
845
  }
@@ -961,7 +964,7 @@
961
964
  "LoggingConfigurations": {
962
965
  "type": "list",
963
966
  "member": {
964
- "shape": "S5j"
967
+ "shape": "S5o"
965
968
  }
966
969
  },
967
970
  "NextMarker": {}
@@ -1162,7 +1165,7 @@
1162
1165
  "WebACLs": {
1163
1166
  "type": "list",
1164
1167
  "member": {
1165
- "shape": "S4n"
1168
+ "shape": "S4s"
1166
1169
  }
1167
1170
  }
1168
1171
  }
@@ -1176,7 +1179,7 @@
1176
1179
  ],
1177
1180
  "members": {
1178
1181
  "LoggingConfiguration": {
1179
- "shape": "S5j"
1182
+ "shape": "S5o"
1180
1183
  }
1181
1184
  }
1182
1185
  },
@@ -1184,7 +1187,7 @@
1184
1187
  "type": "structure",
1185
1188
  "members": {
1186
1189
  "LoggingConfiguration": {
1187
- "shape": "S5j"
1190
+ "shape": "S5o"
1188
1191
  }
1189
1192
  }
1190
1193
  }
@@ -1442,6 +1445,9 @@
1442
1445
  },
1443
1446
  "TokenDomains": {
1444
1447
  "shape": "S4k"
1448
+ },
1449
+ "AssociationConfig": {
1450
+ "shape": "S4m"
1445
1451
  }
1446
1452
  }
1447
1453
  },
@@ -2344,7 +2350,25 @@
2344
2350
  "type": "list",
2345
2351
  "member": {}
2346
2352
  },
2347
- "S4n": {
2353
+ "S4m": {
2354
+ "type": "structure",
2355
+ "members": {
2356
+ "RequestBody": {
2357
+ "type": "map",
2358
+ "key": {},
2359
+ "value": {
2360
+ "type": "structure",
2361
+ "required": [
2362
+ "DefaultSizeInspectionLimit"
2363
+ ],
2364
+ "members": {
2365
+ "DefaultSizeInspectionLimit": {}
2366
+ }
2367
+ }
2368
+ }
2369
+ }
2370
+ },
2371
+ "S4s": {
2348
2372
  "type": "structure",
2349
2373
  "members": {
2350
2374
  "Name": {},
@@ -2354,7 +2378,7 @@
2354
2378
  "ARN": {}
2355
2379
  }
2356
2380
  },
2357
- "S56": {
2381
+ "S5b": {
2358
2382
  "type": "list",
2359
2383
  "member": {
2360
2384
  "type": "structure",
@@ -2363,7 +2387,7 @@
2363
2387
  }
2364
2388
  }
2365
2389
  },
2366
- "S5j": {
2390
+ "S5o": {
2367
2391
  "type": "structure",
2368
2392
  "required": [
2369
2393
  "ResourceArn",
@@ -2437,7 +2461,7 @@
2437
2461
  }
2438
2462
  }
2439
2463
  },
2440
- "S6c": {
2464
+ "S6h": {
2441
2465
  "type": "structure",
2442
2466
  "members": {
2443
2467
  "IPAddressVersion": {},
@@ -2446,7 +2470,7 @@
2446
2470
  }
2447
2471
  }
2448
2472
  },
2449
- "S6k": {
2473
+ "S6p": {
2450
2474
  "type": "structure",
2451
2475
  "required": [
2452
2476
  "StartTime",
@@ -2461,7 +2485,7 @@
2461
2485
  }
2462
2486
  }
2463
2487
  },
2464
- "S6v": {
2488
+ "S70": {
2465
2489
  "type": "list",
2466
2490
  "member": {
2467
2491
  "type": "structure",
@@ -2471,7 +2495,7 @@
2471
2495
  }
2472
2496
  }
2473
2497
  },
2474
- "S79": {
2498
+ "S7e": {
2475
2499
  "type": "structure",
2476
2500
  "required": [
2477
2501
  "Name",
@@ -2498,10 +2522,10 @@
2498
2522
  "type": "long"
2499
2523
  },
2500
2524
  "PreProcessFirewallManagerRuleGroups": {
2501
- "shape": "S7a"
2525
+ "shape": "S7f"
2502
2526
  },
2503
2527
  "PostProcessFirewallManagerRuleGroups": {
2504
- "shape": "S7a"
2528
+ "shape": "S7f"
2505
2529
  },
2506
2530
  "ManagedByFirewallManager": {
2507
2531
  "type": "boolean"
@@ -2518,10 +2542,13 @@
2518
2542
  },
2519
2543
  "TokenDomains": {
2520
2544
  "shape": "S4k"
2545
+ },
2546
+ "AssociationConfig": {
2547
+ "shape": "S4m"
2521
2548
  }
2522
2549
  }
2523
2550
  },
2524
- "S7a": {
2551
+ "S7f": {
2525
2552
  "type": "list",
2526
2553
  "member": {
2527
2554
  "type": "structure",
@@ -1697,6 +1697,7 @@ declare namespace Connect {
1697
1697
  }
1698
1698
  export type AvailableNumbersList = AvailableNumberSummary[];
1699
1699
  export type AwsRegion = string;
1700
+ export type BehaviorType = "ROUTE_CURRENT_CHANNEL_ONLY"|"ROUTE_ANY_CHANNEL"|string;
1700
1701
  export type Boolean = boolean;
1701
1702
  export type BotName = string;
1702
1703
  export type BucketName = string;
@@ -1709,11 +1710,11 @@ declare namespace Connect {
1709
1710
  export type ChatDurationInMinutes = number;
1710
1711
  export interface ChatMessage {
1711
1712
  /**
1712
- * The type of the content. Supported types are text/plain, text/markdown, and application/json.
1713
+ * The type of the content. Supported types are text/plain, text/markdown, application/json, and application/vnd.amazonaws.connect.message.interactive.response.
1713
1714
  */
1714
1715
  ContentType: ChatContentType;
1715
1716
  /**
1716
- * The content of the chat message. For text/plain and text/markdown, the Length Constraints are Minimum of 1, Maximum of 1024. For application/json, the Length Constraints are Minimum of 1, Maximum of 12000.
1717
+ * The content of the chat message. For text/plain and text/markdown, the Length Constraints are Minimum of 1, Maximum of 1024. For application/json, the Length Constraints are Minimum of 1, Maximum of 12000. For application/vnd.amazonaws.connect.message.interactive.response, the Length Constraints are Minimum of 1, Maximum of 12288.
1717
1718
  */
1718
1719
  Content: ChatContent;
1719
1720
  }
@@ -2682,6 +2683,12 @@ declare namespace Connect {
2682
2683
  */
2683
2684
  RefreshTokenExpiration?: timestamp;
2684
2685
  }
2686
+ export interface CrossChannelBehavior {
2687
+ /**
2688
+ * Specifies the other channels that can be routed to an agent handling their current channel.
2689
+ */
2690
+ BehaviorType: BehaviorType;
2691
+ }
2685
2692
  export interface CurrentMetric {
2686
2693
  /**
2687
2694
  * The name of the metric.
@@ -3591,7 +3598,7 @@ declare namespace Connect {
3591
3598
  */
3592
3599
  StartTime: Timestamp;
3593
3600
  /**
3594
- * The timestamp, in UNIX Epoch time format, at which to end the reporting interval for the retrieval of historical metrics data. The time must be later than the start time timestamp. The time range between the start and end time must be less than 24 hours.
3601
+ * The timestamp, in UNIX Epoch time format, at which to end the reporting interval for the retrieval of historical metrics data. The time must be later than the start time timestamp. It cannot be later than the current timestamp. The time range between the start and end time must be less than 24 hours.
3595
3602
  */
3596
3603
  EndTime: Timestamp;
3597
3604
  /**
@@ -3603,7 +3610,7 @@ declare namespace Connect {
3603
3610
  */
3604
3611
  Groupings?: GroupingsV2;
3605
3612
  /**
3606
- * The metrics to retrieve. Specify the name, groupings, and filters for each metric. The following historical metrics are available. For a description of each metric, see Historical metrics definitions in the Amazon Connect Administrator's Guide. AGENT_ADHERENT_TIME This metric is available only in Amazon Web Services Regions where Forecasting, capacity planning, and scheduling is available. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AGENT_NON_RESPONSE Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AGENT_OCCUPANCY Unit: Percentage Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy AGENT_SCHEDULE_ADHERENCE This metric is available only in Amazon Web Services Regions where Forecasting, capacity planning, and scheduling is available. Unit: Percent Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AGENT_SCHEDULED_TIME This metric is available only in Amazon Web Services Regions where Forecasting, capacity planning, and scheduling is available. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_ABANDON_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_AFTER_CONTACT_WORK_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_AGENT_CONNECTING_TIME Unit: Seconds Valid metric filter key: INITIATION_METHOD. For now, this metric only supports the following as INITIATION_METHOD: INBOUND | OUTBOUND | CALLBACK | API Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_HANDLE_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_HOLD_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_INTERACTION_AND_HOLD_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_INTERACTION_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile AVG_QUEUE_ANSWER_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile CONTACTS_ABANDONED Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_CREATED Unit: Count Valid metric filter key: INITIATION_METHOD Valid groupings and filters: Queue, Channel, Routing Profile CONTACTS_HANDLED Unit: Count Valid metric filter key: INITIATION_METHOD, DISCONNECT_REASON Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_HOLD_ABANDONS Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_QUEUED Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_TRANSFERRED_OUT Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_TRANSFERRED_OUT_BY_AGENT Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_TRANSFERRED_OUT_FROM_QUEUE Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy MAX_QUEUED_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy SERVICE_LEVEL You can include up to 20 SERVICE_LEVEL metrics in a request. Unit: Percent Valid groupings and filters: Queue, Channel, Routing Profile Threshold: For ThresholdValue, enter any whole number from 1 to 604800 (inclusive), in seconds. For Comparison, you must enter LT (for "Less than"). SUM_CONTACTS_ANSWERED_IN_X Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile SUM_CONTACTS_ABANDONED_IN_X Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile SUM_CONTACTS_DISCONNECTED Valid metric filter key: DISCONNECT_REASON Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile SUM_RETRY_CALLBACK_ATTEMPTS Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile
3613
+ * The metrics to retrieve. Specify the name, groupings, and filters for each metric. The following historical metrics are available. For a description of each metric, see Historical metrics definitions in the Amazon Connect Administrator's Guide. AGENT_ADHERENT_TIME This metric is available only in Amazon Web Services Regions where Forecasting, capacity planning, and scheduling is available. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AGENT_NON_RESPONSE Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AGENT_OCCUPANCY Unit: Percentage Valid groupings and filters: Routing Profile, Agent, Agent Hierarchy AGENT_SCHEDULE_ADHERENCE This metric is available only in Amazon Web Services Regions where Forecasting, capacity planning, and scheduling is available. Unit: Percent Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AGENT_SCHEDULED_TIME This metric is available only in Amazon Web Services Regions where Forecasting, capacity planning, and scheduling is available. Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_ABANDON_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_AFTER_CONTACT_WORK_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_AGENT_CONNECTING_TIME Unit: Seconds Valid metric filter key: INITIATION_METHOD. For now, this metric only supports the following as INITIATION_METHOD: INBOUND | OUTBOUND | CALLBACK | API Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_HANDLE_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_HOLD_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_INTERACTION_AND_HOLD_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy AVG_INTERACTION_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile AVG_QUEUE_ANSWER_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile CONTACTS_ABANDONED Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_CREATED Unit: Count Valid metric filter key: INITIATION_METHOD Valid groupings and filters: Queue, Channel, Routing Profile CONTACTS_HANDLED Unit: Count Valid metric filter key: INITIATION_METHOD, DISCONNECT_REASON Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_HOLD_ABANDONS Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_QUEUED Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_TRANSFERRED_OUT Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_TRANSFERRED_OUT_BY_AGENT Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy CONTACTS_TRANSFERRED_OUT_FROM_QUEUE Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy MAX_QUEUED_TIME Unit: Seconds Valid groupings and filters: Queue, Channel, Routing Profile, Agent, Agent Hierarchy SERVICE_LEVEL You can include up to 20 SERVICE_LEVEL metrics in a request. Unit: Percent Valid groupings and filters: Queue, Channel, Routing Profile Threshold: For ThresholdValue, enter any whole number from 1 to 604800 (inclusive), in seconds. For Comparison, you must enter LT (for "Less than"). SUM_CONTACTS_ANSWERED_IN_X Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile Threshold: For ThresholdValue, enter any whole number from 1 to 604800 (inclusive), in seconds. For Comparison, you must enter LT (for "Less than"). SUM_CONTACTS_ABANDONED_IN_X Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile Threshold: For ThresholdValue, enter any whole number from 1 to 604800 (inclusive), in seconds. For Comparison, you must enter LT (for "Less than"). SUM_CONTACTS_DISCONNECTED Valid metric filter key: DISCONNECT_REASON Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile SUM_RETRY_CALLBACK_ATTEMPTS Unit: Count Valid groupings and filters: Queue, Channel, Routing Profile
3607
3614
  */
3608
3615
  Metrics: MetricsV2;
3609
3616
  /**
@@ -5120,6 +5127,10 @@ declare namespace Connect {
5120
5127
  * The number of contacts an agent can have on a channel simultaneously. Valid Range for VOICE: Minimum value of 1. Maximum value of 1. Valid Range for CHAT: Minimum value of 1. Maximum value of 10. Valid Range for TASK: Minimum value of 1. Maximum value of 10.
5121
5128
  */
5122
5129
  Concurrency: Concurrency;
5130
+ /**
5131
+ * Defines the cross-channel routing behavior for each channel that is enabled for this Routing Profile. For example, this allows you to offer an agent a different contact from another channel when they are currently working with a contact from a Voice channel.
5132
+ */
5133
+ CrossChannelBehavior?: CrossChannelBehavior;
5123
5134
  }
5124
5135
  export type MetricDataCollectionsV2 = MetricDataV2[];
5125
5136
  export interface MetricDataV2 {
@@ -238,9 +238,9 @@ declare namespace ECRPUBLIC {
238
238
  }
239
239
  export interface BatchDeleteImageRequest {
240
240
  /**
241
- * The Amazon Web Services account ID that's associated with the registry that contains the image to delete. If you do not specify a registry, the default public registry is assumed.
241
+ * The Amazon Web Services account ID, or registry alias, that's associated with the registry that contains the image to delete. If you do not specify a registry, the default public registry is assumed.
242
242
  */
243
- registryId?: RegistryId;
243
+ registryId?: RegistryIdOrAlias;
244
244
  /**
245
245
  * The repository in a public registry that contains the image to delete.
246
246
  */
@@ -277,11 +277,11 @@ declare class ECS extends Service {
277
277
  */
278
278
  listTasks(callback?: (err: AWSError, data: ECS.Types.ListTasksResponse) => void): Request<ECS.Types.ListTasksResponse, AWSError>;
279
279
  /**
280
- * Modifies an account setting. Account settings are set on a per-Region basis. If you change the account setting for the root user, the default settings for all of the users and roles that no individual account setting was specified are reset for. For more information, see Account Settings in the Amazon Elastic Container Service Developer Guide. When serviceLongArnFormat, taskLongArnFormat, or containerInstanceLongArnFormat are specified, the Amazon Resource Name (ARN) and resource ID format of the resource type for a specified user, role, or the root user for an account is affected. The opt-in and opt-out account setting must be set for each Amazon ECS resource separately. The ARN and resource ID format of a resource is defined by the opt-in status of the user or role that created the resource. You must turn on this setting to use Amazon ECS features such as resource tagging. When awsvpcTrunking is specified, the elastic network interface (ENI) limit for any new container instances that support the feature is changed. If awsvpcTrunking is enabled, any new container instances that support the feature are launched have the increased ENI limits available to them. For more information, see Elastic Network Interface Trunking in the Amazon Elastic Container Service Developer Guide. When containerInsights is specified, the default setting indicating whether CloudWatch Container Insights is enabled for your clusters is changed. If containerInsights is enabled, any new clusters that are created will have Container Insights enabled unless you disable it during cluster creation. For more information, see CloudWatch Container Insights in the Amazon Elastic Container Service Developer Guide.
280
+ * Modifies an account setting. Account settings are set on a per-Region basis. If you change the root user account setting, the default settings are reset for users and roles that do not have specified individual account settings. For more information, see Account Settings in the Amazon Elastic Container Service Developer Guide. When serviceLongArnFormat, taskLongArnFormat, or containerInstanceLongArnFormat are specified, the Amazon Resource Name (ARN) and resource ID format of the resource type for a specified user, role, or the root user for an account is affected. The opt-in and opt-out account setting must be set for each Amazon ECS resource separately. The ARN and resource ID format of a resource is defined by the opt-in status of the user or role that created the resource. You must turn on this setting to use Amazon ECS features such as resource tagging. When awsvpcTrunking is specified, the elastic network interface (ENI) limit for any new container instances that support the feature is changed. If awsvpcTrunking is turned on, any new container instances that support the feature are launched have the increased ENI limits available to them. For more information, see Elastic Network Interface Trunking in the Amazon Elastic Container Service Developer Guide. When containerInsights is specified, the default setting indicating whether Amazon Web Services CloudWatch Container Insights is turned on for your clusters is changed. If containerInsights is turned on, any new clusters that are created will have Container Insights turned on unless you disable it during cluster creation. For more information, see CloudWatch Container Insights in the Amazon Elastic Container Service Developer Guide.
281
281
  */
282
282
  putAccountSetting(params: ECS.Types.PutAccountSettingRequest, callback?: (err: AWSError, data: ECS.Types.PutAccountSettingResponse) => void): Request<ECS.Types.PutAccountSettingResponse, AWSError>;
283
283
  /**
284
- * Modifies an account setting. Account settings are set on a per-Region basis. If you change the account setting for the root user, the default settings for all of the users and roles that no individual account setting was specified are reset for. For more information, see Account Settings in the Amazon Elastic Container Service Developer Guide. When serviceLongArnFormat, taskLongArnFormat, or containerInstanceLongArnFormat are specified, the Amazon Resource Name (ARN) and resource ID format of the resource type for a specified user, role, or the root user for an account is affected. The opt-in and opt-out account setting must be set for each Amazon ECS resource separately. The ARN and resource ID format of a resource is defined by the opt-in status of the user or role that created the resource. You must turn on this setting to use Amazon ECS features such as resource tagging. When awsvpcTrunking is specified, the elastic network interface (ENI) limit for any new container instances that support the feature is changed. If awsvpcTrunking is enabled, any new container instances that support the feature are launched have the increased ENI limits available to them. For more information, see Elastic Network Interface Trunking in the Amazon Elastic Container Service Developer Guide. When containerInsights is specified, the default setting indicating whether CloudWatch Container Insights is enabled for your clusters is changed. If containerInsights is enabled, any new clusters that are created will have Container Insights enabled unless you disable it during cluster creation. For more information, see CloudWatch Container Insights in the Amazon Elastic Container Service Developer Guide.
284
+ * Modifies an account setting. Account settings are set on a per-Region basis. If you change the root user account setting, the default settings are reset for users and roles that do not have specified individual account settings. For more information, see Account Settings in the Amazon Elastic Container Service Developer Guide. When serviceLongArnFormat, taskLongArnFormat, or containerInstanceLongArnFormat are specified, the Amazon Resource Name (ARN) and resource ID format of the resource type for a specified user, role, or the root user for an account is affected. The opt-in and opt-out account setting must be set for each Amazon ECS resource separately. The ARN and resource ID format of a resource is defined by the opt-in status of the user or role that created the resource. You must turn on this setting to use Amazon ECS features such as resource tagging. When awsvpcTrunking is specified, the elastic network interface (ENI) limit for any new container instances that support the feature is changed. If awsvpcTrunking is turned on, any new container instances that support the feature are launched have the increased ENI limits available to them. For more information, see Elastic Network Interface Trunking in the Amazon Elastic Container Service Developer Guide. When containerInsights is specified, the default setting indicating whether Amazon Web Services CloudWatch Container Insights is turned on for your clusters is changed. If containerInsights is turned on, any new clusters that are created will have Container Insights turned on unless you disable it during cluster creation. For more information, see CloudWatch Container Insights in the Amazon Elastic Container Service Developer Guide.
285
285
  */
286
286
  putAccountSetting(callback?: (err: AWSError, data: ECS.Types.PutAccountSettingResponse) => void): Request<ECS.Types.PutAccountSettingResponse, AWSError>;
287
287
  /**
@@ -445,11 +445,11 @@ declare class ECS extends Service {
445
445
  */
446
446
  updateServicePrimaryTaskSet(callback?: (err: AWSError, data: ECS.Types.UpdateServicePrimaryTaskSetResponse) => void): Request<ECS.Types.UpdateServicePrimaryTaskSetResponse, AWSError>;
447
447
  /**
448
- * Updates the protection status of a task. You can set protectionEnabled to true to protect your task from termination during scale-in events from Service Autoscaling or deployments. Task-protection, by default, expires after 2 hours at which point Amazon ECS unsets the protectionEnabled property making the task eligible for termination by a subsequent scale-in event. You can specify a custom expiration period for task protection from 1 minute to up to 2,880 minutes (48 hours). To specify the custom expiration period, set the expiresInMinutes property. The expiresInMinutes property is always reset when you invoke this operation for a task that already has protectionEnabled set to true. You can keep extending the protection expiration period of a task by invoking this operation repeatedly. To learn more about Amazon ECS task protection, see Task scale-in protection in the Amazon Elastic Container Service Developer Guide . This operation is only supported for tasks belonging to an Amazon ECS service. Invoking this operation for a standalone task will result in an TASK_NOT_VALID failure. For more information, see API failure reasons. If you prefer to set task protection from within the container, we recommend using the Task scale-in protection endpoint.
448
+ * Updates the protection status of a task. You can set protectionEnabled to true to protect your task from termination during scale-in events from Service Autoscaling or deployments. Task-protection, by default, expires after 2 hours at which point Amazon ECS clears the protectionEnabled property making the task eligible for termination by a subsequent scale-in event. You can specify a custom expiration period for task protection from 1 minute to up to 2,880 minutes (48 hours). To specify the custom expiration period, set the expiresInMinutes property. The expiresInMinutes property is always reset when you invoke this operation for a task that already has protectionEnabled set to true. You can keep extending the protection expiration period of a task by invoking this operation repeatedly. To learn more about Amazon ECS task protection, see Task scale-in protection in the Amazon Elastic Container Service Developer Guide . This operation is only supported for tasks belonging to an Amazon ECS service. Invoking this operation for a standalone task will result in an TASK_NOT_VALID failure. For more information, see API failure reasons. If you prefer to set task protection from within the container, we recommend using the Task scale-in protection endpoint.
449
449
  */
450
450
  updateTaskProtection(params: ECS.Types.UpdateTaskProtectionRequest, callback?: (err: AWSError, data: ECS.Types.UpdateTaskProtectionResponse) => void): Request<ECS.Types.UpdateTaskProtectionResponse, AWSError>;
451
451
  /**
452
- * Updates the protection status of a task. You can set protectionEnabled to true to protect your task from termination during scale-in events from Service Autoscaling or deployments. Task-protection, by default, expires after 2 hours at which point Amazon ECS unsets the protectionEnabled property making the task eligible for termination by a subsequent scale-in event. You can specify a custom expiration period for task protection from 1 minute to up to 2,880 minutes (48 hours). To specify the custom expiration period, set the expiresInMinutes property. The expiresInMinutes property is always reset when you invoke this operation for a task that already has protectionEnabled set to true. You can keep extending the protection expiration period of a task by invoking this operation repeatedly. To learn more about Amazon ECS task protection, see Task scale-in protection in the Amazon Elastic Container Service Developer Guide . This operation is only supported for tasks belonging to an Amazon ECS service. Invoking this operation for a standalone task will result in an TASK_NOT_VALID failure. For more information, see API failure reasons. If you prefer to set task protection from within the container, we recommend using the Task scale-in protection endpoint.
452
+ * Updates the protection status of a task. You can set protectionEnabled to true to protect your task from termination during scale-in events from Service Autoscaling or deployments. Task-protection, by default, expires after 2 hours at which point Amazon ECS clears the protectionEnabled property making the task eligible for termination by a subsequent scale-in event. You can specify a custom expiration period for task protection from 1 minute to up to 2,880 minutes (48 hours). To specify the custom expiration period, set the expiresInMinutes property. The expiresInMinutes property is always reset when you invoke this operation for a task that already has protectionEnabled set to true. You can keep extending the protection expiration period of a task by invoking this operation repeatedly. To learn more about Amazon ECS task protection, see Task scale-in protection in the Amazon Elastic Container Service Developer Guide . This operation is only supported for tasks belonging to an Amazon ECS service. Invoking this operation for a standalone task will result in an TASK_NOT_VALID failure. For more information, see API failure reasons. If you prefer to set task protection from within the container, we recommend using the Task scale-in protection endpoint.
453
453
  */
454
454
  updateTaskProtection(callback?: (err: AWSError, data: ECS.Types.UpdateTaskProtectionResponse) => void): Request<ECS.Types.UpdateTaskProtectionResponse, AWSError>;
455
455
  /**
@@ -557,7 +557,7 @@ declare namespace ECS {
557
557
  */
558
558
  managedScaling?: ManagedScaling;
559
559
  /**
560
- * The managed termination protection setting to use for the Auto Scaling group capacity provider. This determines whether the Auto Scaling group has managed termination protection. The default is off. When using managed termination protection, managed scaling must also be used otherwise managed termination protection doesn't work. When managed termination protection is on, Amazon ECS prevents the Amazon EC2 instances in an Auto Scaling group that contain tasks from being terminated during a scale-in action. The Auto Scaling group and each instance in the Auto Scaling group must have instance protection from scale-in actions enabled as well. For more information, see Instance Protection in the Auto Scaling User Guide. When managed termination protection is off, your Amazon EC2 instances aren't protected from termination when the Auto Scaling group scales in.
560
+ * The managed termination protection setting to use for the Auto Scaling group capacity provider. This determines whether the Auto Scaling group has managed termination protection. The default is off. When using managed termination protection, managed scaling must also be used otherwise managed termination protection doesn't work. When managed termination protection is on, Amazon ECS prevents the Amazon EC2 instances in an Auto Scaling group that contain tasks from being terminated during a scale-in action. The Auto Scaling group and each instance in the Auto Scaling group must have instance protection from scale-in actions on as well. For more information, see Instance Protection in the Auto Scaling User Guide. When managed termination protection is off, your Amazon EC2 instances aren't protected from termination when the Auto Scaling group scales in.
561
561
  */
562
562
  managedTerminationProtection?: ManagedTerminationProtection;
563
563
  }
@@ -729,11 +729,11 @@ declare namespace ECS {
729
729
  }
730
730
  export interface ClusterSetting {
731
731
  /**
732
- * The name of the cluster setting. The only supported value is containerInsights.
732
+ * The name of the cluster setting. The value is containerInsights .
733
733
  */
734
734
  name?: ClusterSettingName;
735
735
  /**
736
- * The value to set for the cluster setting. The supported values are enabled and disabled. If enabled is specified, CloudWatch Container Insights will be enabled for the cluster, otherwise it will be off unless the containerInsights account setting is turned on. If a cluster value is specified, it will override the containerInsights value set with PutAccountSetting or PutAccountSettingDefault.
736
+ * The value to set for the cluster setting. The supported values are enabled and disabled. If you set name to containerInsights and value to enabled, CloudWatch Container Insights will be on for the cluster, otherwise it will be off unless the containerInsights account setting is turned on. If a cluster value is specified, it will override the containerInsights value set with PutAccountSetting or PutAccountSettingDefault.
737
737
  */
738
738
  value?: String;
739
739
  }
@@ -1205,7 +1205,7 @@ declare namespace ECS {
1205
1205
  */
1206
1206
  serviceName: String;
1207
1207
  /**
1208
- * The family and revision (family:revision) or full ARN of the task definition to run in your service. If a revision isn't specified, the latest ACTIVE revision is used. A task definition must be specified if the service uses either the ECS or CODE_DEPLOY deployment controllers.
1208
+ * The family and revision (family:revision) or full ARN of the task definition to run in your service. If a revision isn't specified, the latest ACTIVE revision is used. A task definition must be specified if the service uses either the ECS or CODE_DEPLOY deployment controllers. For more information about deployment types, see Amazon ECS deployment types.
1209
1209
  */
1210
1210
  taskDefinition?: String;
1211
1211
  /**
@@ -1281,7 +1281,7 @@ declare namespace ECS {
1281
1281
  */
1282
1282
  propagateTags?: PropagateTags;
1283
1283
  /**
1284
- * Determines whether the execute command functionality is enabled for the service. If true, this enables execute command functionality on all containers in the service tasks.
1284
+ * Determines whether the execute command functionality is turned on for the service. If true, this enables execute command functionality on all containers in the service tasks.
1285
1285
  */
1286
1286
  enableExecuteCommand?: Boolean;
1287
1287
  /**
@@ -1529,7 +1529,7 @@ declare namespace ECS {
1529
1529
  */
1530
1530
  networkConfiguration?: NetworkConfiguration;
1531
1531
  /**
1532
- * The rolloutState of a service is only returned for services that use the rolling update (ECS) deployment type that aren't behind a Classic Load Balancer. The rollout state of the deployment. When a service deployment is started, it begins in an IN_PROGRESS state. When the service reaches a steady state, the deployment transitions to a COMPLETED state. If the service fails to reach a steady state and circuit breaker is enabled, the deployment transitions to a FAILED state. A deployment in FAILED state doesn't launch any new tasks. For more information, see DeploymentCircuitBreaker.
1532
+ * The rolloutState of a service is only returned for services that use the rolling update (ECS) deployment type that aren't behind a Classic Load Balancer. The rollout state of the deployment. When a service deployment is started, it begins in an IN_PROGRESS state. When the service reaches a steady state, the deployment transitions to a COMPLETED state. If the service fails to reach a steady state and circuit breaker is turned on, the deployment transitions to a FAILED state. A deployment in FAILED state doesn't launch any new tasks. For more information, see DeploymentCircuitBreaker.
1533
1533
  */
1534
1534
  rolloutState?: DeploymentRolloutState;
1535
1535
  /**
@@ -1868,11 +1868,11 @@ declare namespace ECS {
1868
1868
  export type Double = number;
1869
1869
  export interface EFSAuthorizationConfig {
1870
1870
  /**
1871
- * The Amazon EFS access point ID to use. If an access point is specified, the root directory value specified in the EFSVolumeConfiguration must either be omitted or set to / which will enforce the path set on the EFS access point. If an access point is used, transit encryption must be enabled in the EFSVolumeConfiguration. For more information, see Working with Amazon EFS access points in the Amazon Elastic File System User Guide.
1871
+ * The Amazon EFS access point ID to use. If an access point is specified, the root directory value specified in the EFSVolumeConfiguration must either be omitted or set to / which will enforce the path set on the EFS access point. If an access point is used, transit encryption must be on in the EFSVolumeConfiguration. For more information, see Working with Amazon EFS access points in the Amazon Elastic File System User Guide.
1872
1872
  */
1873
1873
  accessPointId?: String;
1874
1874
  /**
1875
- * Determines whether to use the Amazon ECS task role defined in a task definition when mounting the Amazon EFS file system. If enabled, transit encryption must be enabled in the EFSVolumeConfiguration. If this parameter is omitted, the default value of DISABLED is used. For more information, see Using Amazon EFS access points in the Amazon Elastic Container Service Developer Guide.
1875
+ * Determines whether to use the Amazon ECS task role defined in a task definition when mounting the Amazon EFS file system. If it is turned on, transit encryption must be turned on in the EFSVolumeConfiguration. If this parameter is omitted, the default value of DISABLED is used. For more information, see Using Amazon EFS access points in the Amazon Elastic Container Service Developer Guide.
1876
1876
  */
1877
1877
  iam?: EFSAuthorizationConfigIAM;
1878
1878
  }
@@ -1888,7 +1888,7 @@ declare namespace ECS {
1888
1888
  */
1889
1889
  rootDirectory?: String;
1890
1890
  /**
1891
- * Determines whether to use encryption for Amazon EFS data in transit between the Amazon ECS host and the Amazon EFS server. Transit encryption must be enabled if Amazon EFS IAM authorization is used. If this parameter is omitted, the default value of DISABLED is used. For more information, see Encrypting data in transit in the Amazon Elastic File System User Guide.
1891
+ * Determines whether to use encryption for Amazon EFS data in transit between the Amazon ECS host and the Amazon EFS server. Transit encryption must be turned on if Amazon EFS IAM authorization is used. If this parameter is omitted, the default value of DISABLED is used. For more information, see Encrypting data in transit in the Amazon Elastic File System User Guide.
1892
1892
  */
1893
1893
  transitEncryption?: EFSTransitEncryption;
1894
1894
  /**
@@ -2067,7 +2067,7 @@ declare namespace ECS {
2067
2067
  }
2068
2068
  export interface GetTaskProtectionResponse {
2069
2069
  /**
2070
- * A list of tasks with the following information. taskArn: The task ARN. protectionEnabled: The protection status of the task. If scale-in protection is enabled for a task, the value is true. Otherwise, it is false. expirationDate: The epoch time when protection for the task will expire.
2070
+ * A list of tasks with the following information. taskArn: The task ARN. protectionEnabled: The protection status of the task. If scale-in protection is turned on for a task, the value is true. Otherwise, it is false. expirationDate: The epoch time when protection for the task will expire.
2071
2071
  */
2072
2072
  protectedTasks?: ProtectedTasks;
2073
2073
  /**
@@ -2554,7 +2554,7 @@ declare namespace ECS {
2554
2554
  */
2555
2555
  lastStartedAt?: Timestamp;
2556
2556
  /**
2557
- * The name of the managed agent. When the execute command feature is enabled, the managed agent name is ExecuteCommandAgent.
2557
+ * The name of the managed agent. When the execute command feature is turned on, the managed agent name is ExecuteCommandAgent.
2558
2558
  */
2559
2559
  name?: ManagedAgentName;
2560
2560
  /**
@@ -2722,7 +2722,7 @@ declare namespace ECS {
2722
2722
  */
2723
2723
  containerPort?: BoxedInteger;
2724
2724
  /**
2725
- * The port number on the container instance to reserve for your container. If you specify a containerPortRange, leave this field empty and the value of the hostPort is set as follows: For containers in a task with the awsvpc network mode, the hostPort is set to the same value as the containerPort. This is a static mapping strategy. For containers in a task with the bridge network mode, the Amazon ECS agent finds open ports on the host and automaticaly binds them to the container ports. This is a dynamic mapping strategy. If you use containers in a task with the awsvpc or host network mode, the hostPort can either be left blank or set to the same value as the containerPort. If you use containers in a task with the bridge network mode, you can specify a non-reserved host port for your container port mapping, or you can omit the hostPort (or set it to 0) while specifying a containerPort and your container automatically receives a port in the ephemeral port range for your container instance operating system and Docker version. The default ephemeral port range for Docker version 1.6.0 and later is listed on the instance under /proc/sys/net/ipv4/ip_local_port_range. If this kernel parameter is unavailable, the default ephemeral port range from 49153 through 65535 is used. Do not attempt to specify a host port in the ephemeral port range as these are reserved for automatic assignment. In general, ports below 32768 are outside of the ephemeral port range. The default reserved ports are 22 for SSH, the Docker ports 2375 and 2376, and the Amazon ECS container agent ports 51678-51680. Any host port that was previously specified in a running task is also reserved while the task is running. That is, after a task stops, the host port is released. The current reserved ports are displayed in the remainingResources of DescribeContainerInstances output. A container instance can have up to 100 reserved ports at a time. This number includes the default reserved ports. Automatically assigned ports aren't included in the 100 reserved ports quota.
2725
+ * The port number on the container instance to reserve for your container. If you specify a containerPortRange, leave this field empty and the value of the hostPort is set as follows: For containers in a task with the awsvpc network mode, the hostPort is set to the same value as the containerPort. This is a static mapping strategy. For containers in a task with the bridge network mode, the Amazon ECS agent finds open ports on the host and automatically binds them to the container ports. This is a dynamic mapping strategy. If you use containers in a task with the awsvpc or host network mode, the hostPort can either be left blank or set to the same value as the containerPort. If you use containers in a task with the bridge network mode, you can specify a non-reserved host port for your container port mapping, or you can omit the hostPort (or set it to 0) while specifying a containerPort and your container automatically receives a port in the ephemeral port range for your container instance operating system and Docker version. The default ephemeral port range for Docker version 1.6.0 and later is listed on the instance under /proc/sys/net/ipv4/ip_local_port_range. If this kernel parameter is unavailable, the default ephemeral port range from 49153 through 65535 is used. Do not attempt to specify a host port in the ephemeral port range as these are reserved for automatic assignment. In general, ports below 32768 are outside of the ephemeral port range. The default reserved ports are 22 for SSH, the Docker ports 2375 and 2376, and the Amazon ECS container agent ports 51678-51680. Any host port that was previously specified in a running task is also reserved while the task is running. That is, after a task stops, the host port is released. The current reserved ports are displayed in the remainingResources of DescribeContainerInstances output. A container instance can have up to 100 reserved ports at a time. This number includes the default reserved ports. Automatically assigned ports aren't included in the 100 reserved ports quota.
2726
2726
  */
2727
2727
  hostPort?: BoxedInteger;
2728
2728
  /**
@@ -2778,7 +2778,7 @@ declare namespace ECS {
2778
2778
  export type ProxyConfigurationType = "APPMESH"|string;
2779
2779
  export interface PutAccountSettingDefaultRequest {
2780
2780
  /**
2781
- * The resource name for which to modify the account setting. If serviceLongArnFormat is specified, the ARN for your Amazon ECS services is affected. If taskLongArnFormat is specified, the ARN and resource ID for your Amazon ECS tasks is affected. If containerInstanceLongArnFormat is specified, the ARN and resource ID for your Amazon ECS container instances is affected. If awsvpcTrunking is specified, the ENI limit for your Amazon ECS container instances is affected. If containerInsights is specified, the default setting for CloudWatch Container Insights for your clusters is affected. Fargate is transitioning from task count-based quotas to vCPU-based quotas. You can set the name to fargateVCPULimit to opt in or opt out of the vCPU-based quotas. For information about the opt in timeline, see Fargate vCPU-based quotas timeline in the Amazon ECS Developer Guide.
2781
+ * The resource name for which to modify the account setting. If serviceLongArnFormat is specified, the ARN for your Amazon ECS services is affected. If taskLongArnFormat is specified, the ARN and resource ID for your Amazon ECS tasks is affected. If containerInstanceLongArnFormat is specified, the ARN and resource ID for your Amazon ECS container instances is affected. If awsvpcTrunking is specified, the ENI limit for your Amazon ECS container instances is affected. If containerInsights is specified, the default setting for Amazon Web Services CloudWatch Container Insights for your clusters is affected. When you specify fargateFIPSMode for the name and enabled for the value, Fargate uses FIPS-140 compliant cryptographic algorithms on your tasks. For more information about FIPS-140 compliance with Fargate, see Amazon Web Services Fargate Federal Information Processing Standard (FIPS) 140-2 compliance in the Amazon Elastic Container Service Developer Guide.
2782
2782
  */
2783
2783
  name: SettingName;
2784
2784
  /**
@@ -2794,7 +2794,7 @@ declare namespace ECS {
2794
2794
  }
2795
2795
  export interface PutAccountSettingRequest {
2796
2796
  /**
2797
- * The Amazon ECS resource name for which to modify the account setting. If serviceLongArnFormat is specified, the ARN for your Amazon ECS services is affected. If taskLongArnFormat is specified, the ARN and resource ID for your Amazon ECS tasks is affected. If containerInstanceLongArnFormat is specified, the ARN and resource ID for your Amazon ECS container instances is affected. If awsvpcTrunking is specified, the elastic network interface (ENI) limit for your Amazon ECS container instances is affected. If containerInsights is specified, the default setting for CloudWatch Container Insights for your clusters is affected.
2797
+ * The Amazon ECS resource name for which to modify the account setting. If serviceLongArnFormat is specified, the ARN for your Amazon ECS services is affected. If taskLongArnFormat is specified, the ARN and resource ID for your Amazon ECS tasks is affected. If containerInstanceLongArnFormat is specified, the ARN and resource ID for your Amazon ECS container instances is affected. If awsvpcTrunking is specified, the elastic network interface (ENI) limit for your Amazon ECS container instances is affected. If containerInsights is specified, the default setting for Amazon Web Services CloudWatch Container Insights for your clusters is affected. If fargateFIPSMode is specified, Fargate FIPS 140 compliance is affected.
2798
2798
  */
2799
2799
  name: SettingName;
2800
2800
  /**
@@ -2954,7 +2954,7 @@ declare namespace ECS {
2954
2954
  */
2955
2955
  inferenceAccelerators?: InferenceAccelerators;
2956
2956
  /**
2957
- * The amount of ephemeral storage to allocate for the task. This parameter is used to expand the total amount of ephemeral storage available, beyond the default amount, for tasks hosted on Fargate. For more information, see Fargate task storage in the Amazon ECS User Guide for Fargate. This parameter is only supported for tasks hosted on Fargate using the following platform versions: Linux platform version 1.4.0 or later.
2957
+ * The amount of ephemeral storage to allocate for the task. This parameter is used to expand the total amount of ephemeral storage available, beyond the default amount, for tasks hosted on Fargate. For more information, see Fargate task storage in the Amazon ECS User Guide for Fargate. For tasks using the Fargate launch type, the task requires the following platforms: Linux platform version 1.4.0 or later.
2958
2958
  */
2959
2959
  ephemeralStorage?: EphemeralStorage;
2960
2960
  /**
@@ -3255,7 +3255,7 @@ declare namespace ECS {
3255
3255
  */
3256
3256
  propagateTags?: PropagateTags;
3257
3257
  /**
3258
- * Determines whether the execute command functionality is enabled for the service. If true, the execute command functionality is enabled for all containers in tasks as part of the service.
3258
+ * Determines whether the execute command functionality is turned on for the service. If true, the execute command functionality is turned on for all containers in tasks as part of the service.
3259
3259
  */
3260
3260
  enableExecuteCommand?: Boolean;
3261
3261
  }
@@ -3380,7 +3380,7 @@ declare namespace ECS {
3380
3380
  */
3381
3381
  principalArn?: String;
3382
3382
  }
3383
- export type SettingName = "serviceLongArnFormat"|"taskLongArnFormat"|"containerInstanceLongArnFormat"|"awsvpcTrunking"|"containerInsights"|string;
3383
+ export type SettingName = "serviceLongArnFormat"|"taskLongArnFormat"|"containerInstanceLongArnFormat"|"awsvpcTrunking"|"containerInsights"|"fargateFIPSMode"|string;
3384
3384
  export type Settings = Setting[];
3385
3385
  export type SortOrder = "ASC"|"DESC"|string;
3386
3386
  export type StabilityStatus = "STEADY_STATE"|"STABILIZING"|string;
@@ -3398,7 +3398,7 @@ declare namespace ECS {
3398
3398
  */
3399
3399
  enableECSManagedTags?: Boolean;
3400
3400
  /**
3401
- * Whether or not the execute command functionality is enabled for the task. If true, this enables execute command functionality on all containers in the task.
3401
+ * Whether or not the execute command functionality is turned on for the task. If true, this enables execute command functionality on all containers in the task.
3402
3402
  */
3403
3403
  enableExecuteCommand?: Boolean;
3404
3404
  /**
@@ -3660,7 +3660,7 @@ declare namespace ECS {
3660
3660
  */
3661
3661
  desiredStatus?: String;
3662
3662
  /**
3663
- * Determines whether execute command functionality is enabled for this task. If true, execute command functionality is enabled on all the containers in the task.
3663
+ * Determines whether execute command functionality is turned on for this task. If true, execute command functionality is turned on all the containers in the task.
3664
3664
  */
3665
3665
  enableExecuteCommand?: Boolean;
3666
3666
  /**
@@ -4267,7 +4267,7 @@ declare namespace ECS {
4267
4267
  }
4268
4268
  export interface UpdateTaskProtectionResponse {
4269
4269
  /**
4270
- * A list of tasks with the following information. taskArn: The task ARN. protectionEnabled: The protection status of the task. If scale-in protection is enabled for a task, the value is true. Otherwise, it is false. expirationDate: The epoch time when protection for the task will expire.
4270
+ * A list of tasks with the following information. taskArn: The task ARN. protectionEnabled: The protection status of the task. If scale-in protection is turned on for a task, the value is true. Otherwise, it is false. expirationDate: The epoch time when protection for the task will expire.
4271
4271
  */
4272
4272
  protectedTasks?: ProtectedTasks;
4273
4273
  /**
@@ -108,11 +108,11 @@ declare class EMRServerless extends Service {
108
108
  */
109
109
  stopApplication(callback?: (err: AWSError, data: EMRServerless.Types.StopApplicationResponse) => void): Request<EMRServerless.Types.StopApplicationResponse, AWSError>;
110
110
  /**
111
- * Assigns tags to resources. A tag is a label that you assign to an AWS resource. Each tag consists of a key and an optional value, both of which you define. Tags enable you to categorize your AWS resources by attributes such as purpose, owner, or environment. When you have many resources of the same type, you can quickly identify a specific resource based on the tags you've assigned to it.
111
+ * Assigns tags to resources. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value, both of which you define. Tags enable you to categorize your Amazon Web Services resources by attributes such as purpose, owner, or environment. When you have many resources of the same type, you can quickly identify a specific resource based on the tags you've assigned to it.
112
112
  */
113
113
  tagResource(params: EMRServerless.Types.TagResourceRequest, callback?: (err: AWSError, data: EMRServerless.Types.TagResourceResponse) => void): Request<EMRServerless.Types.TagResourceResponse, AWSError>;
114
114
  /**
115
- * Assigns tags to resources. A tag is a label that you assign to an AWS resource. Each tag consists of a key and an optional value, both of which you define. Tags enable you to categorize your AWS resources by attributes such as purpose, owner, or environment. When you have many resources of the same type, you can quickly identify a specific resource based on the tags you've assigned to it.
115
+ * Assigns tags to resources. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value, both of which you define. Tags enable you to categorize your Amazon Web Services resources by attributes such as purpose, owner, or environment. When you have many resources of the same type, you can quickly identify a specific resource based on the tags you've assigned to it.
116
116
  */
117
117
  tagResource(callback?: (err: AWSError, data: EMRServerless.Types.TagResourceResponse) => void): Request<EMRServerless.Types.TagResourceResponse, AWSError>;
118
118
  /**
@@ -574,6 +574,10 @@ declare namespace EMRServerless {
574
574
  * The job run total execution duration in seconds. This field is only available for job runs in a COMPLETED, FAILED, or CANCELLED state.
575
575
  */
576
576
  totalExecutionDurationSeconds?: Integer;
577
+ /**
578
+ * Maximum duration for the job run to run. If the job run runs beyond this duration, it will be automatically cancelled.
579
+ */
580
+ executionTimeoutMinutes?: Duration;
577
581
  }
578
582
  export type JobRunId = string;
579
583
  export type JobRunState = "SUBMITTED"|"PENDING"|"SCHEDULED"|"RUNNING"|"SUCCESS"|"FAILED"|"CANCELLING"|"CANCELLED"|string;
@@ -834,7 +838,7 @@ declare namespace EMRServerless {
834
838
  */
835
839
  jobRunId: JobRunId;
836
840
  /**
837
- * The output lists the execution role ARN of the job run.
841
+ * This output displays the ARN of the job run..
838
842
  */
839
843
  arn: JobArn;
840
844
  }