cdk-docker-image-deployment 0.0.186 → 0.0.187

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.
@@ -69,11 +69,11 @@ declare class CodeArtifact extends Service {
69
69
  */
70
70
  deletePackage(callback?: (err: AWSError, data: CodeArtifact.Types.DeletePackageResult) => void): Request<CodeArtifact.Types.DeletePackageResult, AWSError>;
71
71
  /**
72
- * Deletes one or more versions of a package. A deleted package version cannot be restored in your repository. If you want to remove a package version from your repository and be able to restore it later, set its status to Archived. Archived packages cannot be downloaded from a repository and don't show up with list package APIs (for example, ListackageVersions), but you can restore them using UpdatePackageVersionsStatus.
72
+ * Deletes one or more versions of a package. A deleted package version cannot be restored in your repository. If you want to remove a package version from your repository and be able to restore it later, set its status to Archived. Archived packages cannot be downloaded from a repository and don't show up with list package APIs (for example, ListPackageVersions), but you can restore them using UpdatePackageVersionsStatus.
73
73
  */
74
74
  deletePackageVersions(params: CodeArtifact.Types.DeletePackageVersionsRequest, callback?: (err: AWSError, data: CodeArtifact.Types.DeletePackageVersionsResult) => void): Request<CodeArtifact.Types.DeletePackageVersionsResult, AWSError>;
75
75
  /**
76
- * Deletes one or more versions of a package. A deleted package version cannot be restored in your repository. If you want to remove a package version from your repository and be able to restore it later, set its status to Archived. Archived packages cannot be downloaded from a repository and don't show up with list package APIs (for example, ListackageVersions), but you can restore them using UpdatePackageVersionsStatus.
76
+ * Deletes one or more versions of a package. A deleted package version cannot be restored in your repository. If you want to remove a package version from your repository and be able to restore it later, set its status to Archived. Archived packages cannot be downloaded from a repository and don't show up with list package APIs (for example, ListPackageVersions), but you can restore them using UpdatePackageVersionsStatus.
77
77
  */
78
78
  deletePackageVersions(callback?: (err: AWSError, data: CodeArtifact.Types.DeletePackageVersionsResult) => void): Request<CodeArtifact.Types.DeletePackageVersionsResult, AWSError>;
79
79
  /**
@@ -252,6 +252,14 @@ declare class CodeArtifact extends Service {
252
252
  * Gets information about Amazon Web Services tags for a specified Amazon Resource Name (ARN) in CodeArtifact.
253
253
  */
254
254
  listTagsForResource(callback?: (err: AWSError, data: CodeArtifact.Types.ListTagsForResourceResult) => void): Request<CodeArtifact.Types.ListTagsForResourceResult, AWSError>;
255
+ /**
256
+ * Creates a new package version containing one or more assets (or files). The unfinished flag can be used to keep the package version in the Unfinished state until all of it’s assets have been uploaded (see Package version status in the CodeArtifact user guide). To set the package version’s status to Published, omit the unfinished flag when uploading the final asset, or set the status using UpdatePackageVersionStatus. Once a package version’s status is set to Published, it cannot change back to Unfinished. Only generic packages can be published using this API.
257
+ */
258
+ publishPackageVersion(params: CodeArtifact.Types.PublishPackageVersionRequest, callback?: (err: AWSError, data: CodeArtifact.Types.PublishPackageVersionResult) => void): Request<CodeArtifact.Types.PublishPackageVersionResult, AWSError>;
259
+ /**
260
+ * Creates a new package version containing one or more assets (or files). The unfinished flag can be used to keep the package version in the Unfinished state until all of it’s assets have been uploaded (see Package version status in the CodeArtifact user guide). To set the package version’s status to Published, omit the unfinished flag when uploading the final asset, or set the status using UpdatePackageVersionStatus. Once a package version’s status is set to Published, it cannot change back to Unfinished. Only generic packages can be published using this API.
261
+ */
262
+ publishPackageVersion(callback?: (err: AWSError, data: CodeArtifact.Types.PublishPackageVersionResult) => void): Request<CodeArtifact.Types.PublishPackageVersionResult, AWSError>;
255
263
  /**
256
264
  * Sets a resource policy on a domain that specifies permissions to access it. When you call PutDomainPermissionsPolicy, the resource policy on the domain is ignored when evaluting permissions. This ensures that the owner of a domain cannot lock themselves out of the domain, which would prevent them from being able to update the resource policy.
257
265
  */
@@ -380,7 +388,7 @@ declare namespace CodeArtifact {
380
388
  */
381
389
  format: PackageFormat;
382
390
  /**
383
- * The namespace of the package versions to be copied. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace is required when copying Maven package versions. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace.
391
+ * The namespace of the package versions to be copied. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace is required when copying Maven package versions. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace. The namespace of a generic package is it’s namespace.
384
392
  */
385
393
  namespace?: PackageNamespace;
386
394
  /**
@@ -549,7 +557,7 @@ declare namespace CodeArtifact {
549
557
  */
550
558
  format: PackageFormat;
551
559
  /**
552
- * The namespace of the package versions to be deleted. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace is required when deleting Maven package versions. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace.
560
+ * The namespace of the package versions to be deleted. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace is required when deleting Maven package versions. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace. The namespace of a generic package is it’s namespace.
553
561
  */
554
562
  namespace?: PackageNamespace;
555
563
  /**
@@ -650,7 +658,7 @@ declare namespace CodeArtifact {
650
658
  */
651
659
  format: PackageFormat;
652
660
  /**
653
- * The namespace of the requested package. The package component that specifies its namespace depends on its type. For example: The namespace of a Maven package is its groupId. The namespace is required when requesting Maven packages. The namespace of an npm package is its scope. Python and NuGet packages do not contain a corresponding component, packages of those formats do not have a namespace.
661
+ * The namespace of the requested package. The package component that specifies its namespace depends on its type. For example: The namespace of a Maven package is its groupId. The namespace is required when requesting Maven packages. The namespace of an npm package is its scope. Python and NuGet packages do not contain a corresponding component, packages of those formats do not have a namespace. The namespace of a generic package is it’s namespace.
654
662
  */
655
663
  namespace?: PackageNamespace;
656
664
  /**
@@ -682,7 +690,7 @@ declare namespace CodeArtifact {
682
690
  */
683
691
  format: PackageFormat;
684
692
  /**
685
- * The namespace of the requested package version. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace.
693
+ * The namespace of the requested package version. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace. The namespace of a generic package is it’s namespace.
686
694
  */
687
695
  namespace?: PackageNamespace;
688
696
  /**
@@ -763,7 +771,7 @@ declare namespace CodeArtifact {
763
771
  */
764
772
  format: PackageFormat;
765
773
  /**
766
- * The namespace of the package versions to be disposed. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace.
774
+ * The namespace of the package versions to be disposed. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace. The namespace of a generic package is it’s namespace.
767
775
  */
768
776
  namespace?: PackageNamespace;
769
777
  /**
@@ -931,7 +939,7 @@ declare namespace CodeArtifact {
931
939
  */
932
940
  format: PackageFormat;
933
941
  /**
934
- * The namespace of the package version with the requested asset file. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace.
942
+ * The namespace of the package version with the requested asset file. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace. The namespace of a generic package is it’s namespace.
935
943
  */
936
944
  namespace?: PackageNamespace;
937
945
  /**
@@ -983,7 +991,7 @@ declare namespace CodeArtifact {
983
991
  */
984
992
  repository: RepositoryName;
985
993
  /**
986
- * A format that specifies the type of the package version with the requested readme file. Although maven is listed as a valid value, CodeArtifact does not support displaying readme files for Maven packages.
994
+ * A format that specifies the type of the package version with the requested readme file.
987
995
  */
988
996
  format: PackageFormat;
989
997
  /**
@@ -1123,7 +1131,7 @@ declare namespace CodeArtifact {
1123
1131
  */
1124
1132
  format: PackageFormat;
1125
1133
  /**
1126
- * The namespace of the package version that contains the requested package version assets. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace.
1134
+ * The namespace of the package version that contains the requested package version assets. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace. The namespace of a generic package is it’s namespace.
1127
1135
  */
1128
1136
  namespace?: PackageNamespace;
1129
1137
  /**
@@ -1191,7 +1199,7 @@ declare namespace CodeArtifact {
1191
1199
  */
1192
1200
  format: PackageFormat;
1193
1201
  /**
1194
- * The namespace of the package version with the requested dependencies. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace.
1202
+ * The namespace of the package version with the requested dependencies. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace. The namespace of a generic package is it’s namespace.
1195
1203
  */
1196
1204
  namespace?: PackageNamespace;
1197
1205
  /**
@@ -1252,11 +1260,11 @@ declare namespace CodeArtifact {
1252
1260
  */
1253
1261
  repository: RepositoryName;
1254
1262
  /**
1255
- * The format of the returned package versions.
1263
+ * The format of the package versions you want to list.
1256
1264
  */
1257
1265
  format: PackageFormat;
1258
1266
  /**
1259
- * The namespace of the package that contains the requested package versions. The package component that specifies its namespace depends on its type. For example: The namespace of a Maven package is its groupId. The namespace of an npm package is its scope. Python and NuGet packages do not contain a corresponding component, packages of those formats do not have a namespace.
1267
+ * The namespace of the package that contains the requested package versions. The package component that specifies its namespace depends on its type. For example: The namespace of a Maven package is its groupId. The namespace of an npm package is its scope. Python and NuGet packages do not contain a corresponding component, packages of those formats do not have a namespace. The namespace of a generic package is it’s namespace.
1260
1268
  */
1261
1269
  namespace?: PackageNamespace;
1262
1270
  /**
@@ -1329,7 +1337,7 @@ declare namespace CodeArtifact {
1329
1337
  */
1330
1338
  format?: PackageFormat;
1331
1339
  /**
1332
- * The namespace used to filter requested packages. Only packages with the provided namespace will be returned. The package component that specifies its namespace depends on its type. For example: The namespace of a Maven package is its groupId. The namespace of an npm package is its scope. Python and NuGet packages do not contain a corresponding component, packages of those formats do not have a namespace.
1340
+ * The namespace prefix used to filter requested packages. Only packages with a namespace that starts with the provided string value are returned. Note that although this option is called --namespace and not --namespace-prefix, it has prefix-matching behavior. Each package format uses namespace as follows: The namespace of a Maven package is its groupId. The namespace of an npm package is its scope. Python and NuGet packages do not contain a corresponding component, packages of those formats do not have a namespace. The namespace of a generic package is it’s namespace.
1333
1341
  */
1334
1342
  namespace?: PackageNamespace;
1335
1343
  /**
@@ -1449,7 +1457,7 @@ declare namespace CodeArtifact {
1449
1457
  */
1450
1458
  package?: PackageName;
1451
1459
  /**
1452
- * The type of a package dependency. The possible values depend on the package type. Example types are compile, runtime, and test for Maven packages, and dev, prod, and optional for npm packages.
1460
+ * The type of a package dependency. The possible values depend on the package type. npm: regular, dev, peer, optional maven: optional, parent, compile, runtime, test, system, provided. Note that parent is not a regular Maven dependency type; instead this is extracted from the &lt;parent&gt; element if one is defined in the package version's POM file. nuget: The dependencyType field is never set for NuGet packages. pypi: Requires-Dist
1453
1461
  */
1454
1462
  dependencyType?: String;
1455
1463
  /**
@@ -1464,7 +1472,7 @@ declare namespace CodeArtifact {
1464
1472
  */
1465
1473
  format?: PackageFormat;
1466
1474
  /**
1467
- * The namespace of the package. The package component that specifies its namespace depends on its type. For example: The namespace of a Maven package is its groupId. The namespace of an npm package is its scope. Python and NuGet packages do not contain a corresponding component, packages of those formats do not have a namespace.
1475
+ * The namespace of the package. The package component that specifies its namespace depends on its type. For example: The namespace of a Maven package is its groupId. The namespace of an npm package is its scope. Python and NuGet packages do not contain a corresponding component, packages of those formats do not have a namespace. The namespace of a generic package is it’s namespace.
1468
1476
  */
1469
1477
  namespace?: PackageNamespace;
1470
1478
  /**
@@ -1476,7 +1484,7 @@ declare namespace CodeArtifact {
1476
1484
  */
1477
1485
  originConfiguration?: PackageOriginConfiguration;
1478
1486
  }
1479
- export type PackageFormat = "npm"|"pypi"|"maven"|"nuget"|string;
1487
+ export type PackageFormat = "npm"|"pypi"|"maven"|"nuget"|"generic"|string;
1480
1488
  export type PackageName = string;
1481
1489
  export type PackageNamespace = string;
1482
1490
  export interface PackageOriginConfiguration {
@@ -1501,7 +1509,7 @@ declare namespace CodeArtifact {
1501
1509
  */
1502
1510
  format?: PackageFormat;
1503
1511
  /**
1504
- * The namespace of the package. The package component that specifies its namespace depends on its type. For example: The namespace of a Maven package is its groupId. The namespace of an npm package is its scope. Python and NuGet packages do not contain a corresponding component, packages of those formats do not have a namespace.
1512
+ * The namespace of the package. The package component that specifies its namespace depends on its type. For example: The namespace of a Maven package is its groupId. The namespace of an npm package is its scope. Python and NuGet packages do not contain a corresponding component, packages of those formats do not have a namespace. The namespace of a generic package is it’s namespace.
1505
1513
  */
1506
1514
  namespace?: PackageNamespace;
1507
1515
  /**
@@ -1521,7 +1529,7 @@ declare namespace CodeArtifact {
1521
1529
  */
1522
1530
  format?: PackageFormat;
1523
1531
  /**
1524
- * The namespace of the package version. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace.
1532
+ * The namespace of the package version. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace. The namespace of a generic package is it’s namespace.
1525
1533
  */
1526
1534
  namespace?: PackageNamespace;
1527
1535
  /**
@@ -1619,6 +1627,82 @@ declare namespace CodeArtifact {
1619
1627
  export type PaginationToken = string;
1620
1628
  export type PolicyDocument = string;
1621
1629
  export type PolicyRevision = string;
1630
+ export interface PublishPackageVersionRequest {
1631
+ /**
1632
+ * The name of the domain that contains the repository that contains the package version to publish.
1633
+ */
1634
+ domain: DomainName;
1635
+ /**
1636
+ * The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
1637
+ */
1638
+ domainOwner?: AccountId;
1639
+ /**
1640
+ * The name of the repository that the package version will be published to.
1641
+ */
1642
+ repository: RepositoryName;
1643
+ /**
1644
+ * A format that specifies the type of the package version with the requested asset file.
1645
+ */
1646
+ format: PackageFormat;
1647
+ /**
1648
+ * The namespace of the package version to publish.
1649
+ */
1650
+ namespace?: PackageNamespace;
1651
+ /**
1652
+ * The name of the package version to publish.
1653
+ */
1654
+ package: PackageName;
1655
+ /**
1656
+ * The package version to publish (for example, 3.5.2).
1657
+ */
1658
+ packageVersion: PackageVersion;
1659
+ /**
1660
+ * The content of the asset to publish.
1661
+ */
1662
+ assetContent: Asset;
1663
+ /**
1664
+ * The name of the asset to publish. Asset names can include Unicode letters and numbers, and the following special characters: ~ ! @ ^ &amp; ( ) - ` _ + [ ] { } ; , . `
1665
+ */
1666
+ assetName: AssetName;
1667
+ /**
1668
+ * The SHA256 hash of the assetContent to publish. This value must be calculated by the caller and provided with the request. This value is used as an integrity check to verify that the assetContent has not changed after it was originally sent.
1669
+ */
1670
+ assetSHA256: SHA256;
1671
+ /**
1672
+ * Specifies whether the package version should remain in the unfinished state. If omitted, the package version status will be set to Published (see Package version status in the CodeArtifact User Guide). Valid values: unfinished
1673
+ */
1674
+ unfinished?: BooleanOptional;
1675
+ }
1676
+ export interface PublishPackageVersionResult {
1677
+ /**
1678
+ * The format of the package version.
1679
+ */
1680
+ format?: PackageFormat;
1681
+ /**
1682
+ * The namespace of the package version.
1683
+ */
1684
+ namespace?: PackageNamespace;
1685
+ /**
1686
+ * The name of the package.
1687
+ */
1688
+ package?: PackageName;
1689
+ /**
1690
+ * The version of the package.
1691
+ */
1692
+ version?: PackageVersion;
1693
+ /**
1694
+ * The revision of the package version.
1695
+ */
1696
+ versionRevision?: PackageVersionRevision;
1697
+ /**
1698
+ * A string that contains the status of the package version. For more information, see Package version status in the CodeArtifact User Guide.
1699
+ */
1700
+ status?: PackageVersionStatus;
1701
+ /**
1702
+ * An AssetSummary for the published asset.
1703
+ */
1704
+ asset?: AssetSummary;
1705
+ }
1622
1706
  export interface PutDomainPermissionsPolicyRequest {
1623
1707
  /**
1624
1708
  * The name of the domain on which to set the resource policy.
@@ -1661,7 +1745,7 @@ declare namespace CodeArtifact {
1661
1745
  */
1662
1746
  format: PackageFormat;
1663
1747
  /**
1664
- * The namespace of the package to be updated. The package component that specifies its namespace depends on its type. For example: The namespace of a Maven package is its groupId. The namespace of an npm package is its scope. Python and NuGet packages do not contain a corresponding component, packages of those formats do not have a namespace.
1748
+ * The namespace of the package to be updated. The package component that specifies its namespace depends on its type. For example: The namespace of a Maven package is its groupId. The namespace of an npm package is its scope. Python and NuGet packages do not contain a corresponding component, packages of those formats do not have a namespace. The namespace of a generic package is it’s namespace.
1665
1749
  */
1666
1750
  namespace?: PackageNamespace;
1667
1751
  /**
@@ -1798,6 +1882,7 @@ declare namespace CodeArtifact {
1798
1882
  */
1799
1883
  document?: PolicyDocument;
1800
1884
  }
1885
+ export type SHA256 = string;
1801
1886
  export type String = string;
1802
1887
  export type String255 = string;
1803
1888
  export interface SuccessfulPackageVersionInfo {
@@ -1868,7 +1953,7 @@ declare namespace CodeArtifact {
1868
1953
  */
1869
1954
  format: PackageFormat;
1870
1955
  /**
1871
- * The namespace of the package version to be updated. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace.
1956
+ * The namespace of the package version to be updated. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace. The namespace of a generic package is it’s namespace.
1872
1957
  */
1873
1958
  namespace?: PackageNamespace;
1874
1959
  /**
@@ -619,6 +619,14 @@ declare class Connect extends Service {
619
619
  * Gets historical metric data from the specified Amazon Connect instance. For a description of each historical metric, see Historical Metrics Definitions in the Amazon Connect Administrator Guide.
620
620
  */
621
621
  getMetricData(callback?: (err: AWSError, data: Connect.Types.GetMetricDataResponse) => void): Request<Connect.Types.GetMetricDataResponse, AWSError>;
622
+ /**
623
+ * Gets metric data from the specified Amazon Connect instance. GetMetricDataV2 offers more features than GetMetricData, the previous version of this API. It has new metrics, offers filtering at a metric level, and offers the ability to filter and group data by channels, queues, routing profiles, agents, and agent hierarchy levels. It can retrieve historical data for last the 14 days, in 24-hour intervals. For a description of the historical metrics that are supported by GetMetricDataV2 and GetMetricData, see Historical metrics definitions in the Amazon Connect Administrator's Guide. This API is not available in the Amazon Web Services GovCloud (US) Regions.
624
+ */
625
+ getMetricDataV2(params: Connect.Types.GetMetricDataV2Request, callback?: (err: AWSError, data: Connect.Types.GetMetricDataV2Response) => void): Request<Connect.Types.GetMetricDataV2Response, AWSError>;
626
+ /**
627
+ * Gets metric data from the specified Amazon Connect instance. GetMetricDataV2 offers more features than GetMetricData, the previous version of this API. It has new metrics, offers filtering at a metric level, and offers the ability to filter and group data by channels, queues, routing profiles, agents, and agent hierarchy levels. It can retrieve historical data for last the 14 days, in 24-hour intervals. For a description of the historical metrics that are supported by GetMetricDataV2 and GetMetricData, see Historical metrics definitions in the Amazon Connect Administrator's Guide. This API is not available in the Amazon Web Services GovCloud (US) Regions.
628
+ */
629
+ getMetricDataV2(callback?: (err: AWSError, data: Connect.Types.GetMetricDataV2Response) => void): Request<Connect.Types.GetMetricDataV2Response, AWSError>;
622
630
  /**
623
631
  * Gets details about a specific task template in the specified Amazon Connect instance.
624
632
  */
@@ -3209,6 +3217,9 @@ declare namespace Connect {
3209
3217
  Channel?: Channel;
3210
3218
  RoutingProfile?: RoutingProfileReference;
3211
3219
  }
3220
+ export type DimensionsV2Key = string;
3221
+ export type DimensionsV2Map = {[key: string]: DimensionsV2Value};
3222
+ export type DimensionsV2Value = string;
3212
3223
  export type DirectoryAlias = string;
3213
3224
  export type DirectoryId = string;
3214
3225
  export type DirectoryType = "SAML"|"CONNECT_MANAGED"|"EXISTING_DIRECTORY"|string;
@@ -3378,6 +3389,17 @@ declare namespace Connect {
3378
3389
  }
3379
3390
  export type EventBridgeActionName = string;
3380
3391
  export type EventSourceName = "OnPostCallAnalysisAvailable"|"OnRealTimeCallAnalysisAvailable"|"OnPostChatAnalysisAvailable"|"OnZendeskTicketCreate"|"OnZendeskTicketStatusUpdate"|"OnSalesforceCaseCreate"|string;
3392
+ export interface FilterV2 {
3393
+ /**
3394
+ * The key to use for filtering data. For example, QUEUE, ROUTING_PROFILE, AGENT, CHANNEL, AGENT_HIERARCHY_LEVEL_ONE, AGENT_HIERARCHY_LEVEL_TWO, AGENT_HIERARCHY_LEVEL_THREE, AGENT_HIERARCHY_LEVEL_FOUR, AGENT_HIERARCHY_LEVEL_FIVE. There must be at least 1 key and a maximum 5 keys.
3395
+ */
3396
+ FilterKey?: ResourceArnOrId;
3397
+ /**
3398
+ * The identifiers to use for filtering data. For example, if you have a filter key of QUEUE, you would add queue IDs or ARNs in FilterValues.
3399
+ */
3400
+ FilterValues?: FilterValueList;
3401
+ }
3402
+ export type FilterValueList = ResourceArnOrId[];
3381
3403
  export interface Filters {
3382
3404
  /**
3383
3405
  * The queues to use to filter the metrics. You should specify at least one queue, and can specify up to 100 queues per request. The GetCurrentMetricsData API in particular requires a queue when you include a Filter in your request.
@@ -3392,6 +3414,7 @@ declare namespace Connect {
3392
3414
  */
3393
3415
  RoutingProfiles?: RoutingProfiles;
3394
3416
  }
3417
+ export type FiltersV2List = FilterV2[];
3395
3418
  export type FunctionArn = string;
3396
3419
  export type FunctionArnsList = FunctionArn[];
3397
3420
  export interface GetContactAttributesRequest {
@@ -3558,6 +3581,50 @@ declare namespace Connect {
3558
3581
  */
3559
3582
  MetricResults?: HistoricalMetricResults;
3560
3583
  }
3584
+ export interface GetMetricDataV2Request {
3585
+ /**
3586
+ * The Amazon Resource Name (ARN) of the resource. This includes the instanceId an Amazon Connect instance.
3587
+ */
3588
+ ResourceArn: ARN;
3589
+ /**
3590
+ * The timestamp, in UNIX Epoch time format, at which to start the reporting interval for the retrieval of historical metrics data. The time must be before the end time timestamp. The time range between the start and end time must be less than 24 hours. The start time cannot be earlier than 14 days before the time of the request. Historical metrics are available for 14 days.
3591
+ */
3592
+ StartTime: Timestamp;
3593
+ /**
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.
3595
+ */
3596
+ EndTime: Timestamp;
3597
+ /**
3598
+ * The filters to apply to returned metrics. You can filter on the following resources: Queues Routing profiles Agents Channels User hierarchy groups At least one filter must be passed from queues, routing profiles, agents, or user hierarchy groups. To filter by phone number, see Create a historical metrics report in the Amazon Connect Administrator's Guide. Note the following limits: Filter keys: A maximum of 5 filter keys are supported in a single request. Valid filter keys: QUEUE | ROUTING_PROFILE | AGENT | CHANNEL | AGENT_HIERARCHY_LEVEL_ONE | AGENT_HIERARCHY_LEVEL_TWO | AGENT_HIERARCHY_LEVEL_THREE | AGENT_HIERARCHY_LEVEL_FOUR | AGENT_HIERARCHY_LEVEL_FIVE Filter values: A maximum of 100 filter values are supported in a single request. For example, a GetMetricDataV2 request can filter by 50 queues, 35 agents, and 15 routing profiles for a total of 100 filter values. VOICE, CHAT, and TASK are valid filterValue for the CHANNEL filter key.
3599
+ */
3600
+ Filters: FiltersV2List;
3601
+ /**
3602
+ * The grouping applied to the metrics that are returned. For example, when results are grouped by queue, the metrics returned are grouped by queue. The values that are returned apply to the metrics for each queue. They are not aggregated for all queues. If no grouping is specified, a summary of all metrics is returned. Valid grouping keys: QUEUE | ROUTING_PROFILE | AGENT | CHANNEL | AGENT_HIERARCHY_LEVEL_ONE | AGENT_HIERARCHY_LEVEL_TWO | AGENT_HIERARCHY_LEVEL_THREE | AGENT_HIERARCHY_LEVEL_FOUR | AGENT_HIERARCHY_LEVEL_FIVE
3603
+ */
3604
+ Groupings?: GroupingsV2;
3605
+ /**
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
3607
+ */
3608
+ Metrics: MetricsV2;
3609
+ /**
3610
+ * The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
3611
+ */
3612
+ NextToken?: NextToken2500;
3613
+ /**
3614
+ * The maximum number of results to return per page.
3615
+ */
3616
+ MaxResults?: MaxResult100;
3617
+ }
3618
+ export interface GetMetricDataV2Response {
3619
+ /**
3620
+ * If there are additional results, this is the token for the next set of results.
3621
+ */
3622
+ NextToken?: NextToken2500;
3623
+ /**
3624
+ * Information about the metrics requested in the API request If no grouping is specified, a summary of metric data is returned.
3625
+ */
3626
+ MetricResults?: MetricResultsV2;
3627
+ }
3561
3628
  export interface GetTaskTemplateRequest {
3562
3629
  /**
3563
3630
  * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
@@ -3647,7 +3714,9 @@ declare namespace Connect {
3647
3714
  Arn?: TrafficDistributionGroupArn;
3648
3715
  }
3649
3716
  export type Grouping = "QUEUE"|"CHANNEL"|"ROUTING_PROFILE"|string;
3717
+ export type GroupingV2 = string;
3650
3718
  export type Groupings = Grouping[];
3719
+ export type GroupingsV2 = GroupingV2[];
3651
3720
  export interface HierarchyGroup {
3652
3721
  /**
3653
3722
  * The identifier of the hierarchy group.
@@ -5052,6 +5121,56 @@ declare namespace Connect {
5052
5121
  */
5053
5122
  Concurrency: Concurrency;
5054
5123
  }
5124
+ export type MetricDataCollectionsV2 = MetricDataV2[];
5125
+ export interface MetricDataV2 {
5126
+ /**
5127
+ * The metric name, thresholds, and metric filters of the returned metric.
5128
+ */
5129
+ Metric?: MetricV2;
5130
+ /**
5131
+ * The corresponding value of the metric returned in the response.
5132
+ */
5133
+ Value?: Value;
5134
+ }
5135
+ export interface MetricFilterV2 {
5136
+ /**
5137
+ * The key to use for filtering data. Valid metric filter keys: INITIATION_METHOD, DISCONNECT_REASON
5138
+ */
5139
+ MetricFilterKey?: String;
5140
+ /**
5141
+ * The values to use for filtering data. Valid metric filter values for INITIATION_METHOD: INBOUND | OUTBOUND | TRANSFER | QUEUE_TRANSFER | CALLBACK | API Valid metric filter values for DISCONNECT_REASON: CUSTOMER_DISCONNECT | AGENT_DISCONNECT | THIRD_PARTY_DISCONNECT | TELECOM_PROBLEM | BARGED | CONTACT_FLOW_DISCONNECT | OTHER | EXPIRED | API
5142
+ */
5143
+ MetricFilterValues?: MetricFilterValueList;
5144
+ }
5145
+ export type MetricFilterValueList = String[];
5146
+ export type MetricFiltersV2List = MetricFilterV2[];
5147
+ export type MetricNameV2 = string;
5148
+ export interface MetricResultV2 {
5149
+ /**
5150
+ * The dimension for the metrics.
5151
+ */
5152
+ Dimensions?: DimensionsV2Map;
5153
+ /**
5154
+ * The set of metrics.
5155
+ */
5156
+ Collections?: MetricDataCollectionsV2;
5157
+ }
5158
+ export type MetricResultsV2 = MetricResultV2[];
5159
+ export interface MetricV2 {
5160
+ /**
5161
+ * The name of the metric.
5162
+ */
5163
+ Name?: MetricNameV2;
5164
+ /**
5165
+ * Contains information about the threshold for service level metrics.
5166
+ */
5167
+ Threshold?: ThresholdCollections;
5168
+ /**
5169
+ * Contains the filters to be used when returning data.
5170
+ */
5171
+ MetricFilters?: MetricFiltersV2List;
5172
+ }
5173
+ export type MetricsV2 = MetricV2[];
5055
5174
  export type MinutesLimit60 = number;
5056
5175
  export type MonitorCapability = "SILENT_MONITOR"|"BARGE"|string;
5057
5176
  export interface MonitorContactRequest {
@@ -5544,6 +5663,7 @@ declare namespace Connect {
5544
5663
  Id?: TaskTemplateFieldIdentifier;
5545
5664
  }
5546
5665
  export type RequiredTaskTemplateFields = RequiredFieldInfo[];
5666
+ export type ResourceArnOrId = string;
5547
5667
  export interface ResumeContactRecordingRequest {
5548
5668
  /**
5549
5669
  * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
@@ -6644,6 +6764,17 @@ declare namespace Connect {
6644
6764
  */
6645
6765
  ThresholdValue?: ThresholdValue;
6646
6766
  }
6767
+ export type ThresholdCollections = ThresholdV2[];
6768
+ export interface ThresholdV2 {
6769
+ /**
6770
+ * The type of comparison. Only "less than" (LT) comparisons are supported.
6771
+ */
6772
+ Comparison?: ResourceArnOrId;
6773
+ /**
6774
+ * The threshold value to compare.
6775
+ */
6776
+ ThresholdValue?: ThresholdValue;
6777
+ }
6647
6778
  export type ThresholdValue = number;
6648
6779
  export type TimeZone = string;
6649
6780
  export type TimerEligibleParticipantRoles = "CUSTOMER"|"AGENT"|string;
@@ -407,7 +407,7 @@ declare namespace Evidently {
407
407
  */
408
408
  description?: Description;
409
409
  /**
410
- * Specify users that should always be served a specific variation of a feature. Each user is specified by a key-value pair . For each key, specify a user by entering their user ID, account ID, or some other identifier. For the value, specify the name of the variation that they are to be served.
410
+ * Specify users that should always be served a specific variation of a feature. Each user is specified by a key-value pair . For each key, specify a user by entering their user ID, account ID, or some other identifier. For the value, specify the name of the variation that they are to be served. This parameter is limited to 2500 overrides or a total of 40KB. The 40KB limit includes an overhead of 6 bytes per override.
411
411
  */
412
412
  entityOverrides?: EntityOverrideMap;
413
413
  /**
@@ -2047,7 +2047,7 @@ declare namespace Evidently {
2047
2047
  */
2048
2048
  description?: Description;
2049
2049
  /**
2050
- * Specified users that should always be served a specific variation of a feature. Each user is specified by a key-value pair . For each key, specify a user by entering their user ID, account ID, or some other identifier. For the value, specify the name of the variation that they are to be served.
2050
+ * Specified users that should always be served a specific variation of a feature. Each user is specified by a key-value pair . For each key, specify a user by entering their user ID, account ID, or some other identifier. For the value, specify the name of the variation that they are to be served. This parameter is limited to 2500 overrides or a total of 40KB. The 40KB limit includes an overhead of 6 bytes per override.
2051
2051
  */
2052
2052
  entityOverrides?: EntityOverrideMap;
2053
2053
  /**
@@ -572,11 +572,11 @@ declare class NetworkManager extends Service {
572
572
  */
573
573
  putResourcePolicy(callback?: (err: AWSError, data: NetworkManager.Types.PutResourcePolicyResponse) => void): Request<NetworkManager.Types.PutResourcePolicyResponse, AWSError>;
574
574
  /**
575
- * Registers a transit gateway in your global network. The transit gateway can be in any Amazon Web Services Region, but it must be owned by the same Amazon Web Services account that owns the global network. You cannot register a transit gateway in more than one global network.
575
+ * Registers a transit gateway in your global network. Not all Regions support transit gateways for global networks. For a list of the supported Regions, see Region Availability in the Amazon Web Services Transit Gateways for Global Networks User Guide. The transit gateway can be in any of the supported Amazon Web Services Regions, but it must be owned by the same Amazon Web Services account that owns the global network. You cannot register a transit gateway in more than one global network.
576
576
  */
577
577
  registerTransitGateway(params: NetworkManager.Types.RegisterTransitGatewayRequest, callback?: (err: AWSError, data: NetworkManager.Types.RegisterTransitGatewayResponse) => void): Request<NetworkManager.Types.RegisterTransitGatewayResponse, AWSError>;
578
578
  /**
579
- * Registers a transit gateway in your global network. The transit gateway can be in any Amazon Web Services Region, but it must be owned by the same Amazon Web Services account that owns the global network. You cannot register a transit gateway in more than one global network.
579
+ * Registers a transit gateway in your global network. Not all Regions support transit gateways for global networks. For a list of the supported Regions, see Region Availability in the Amazon Web Services Transit Gateways for Global Networks User Guide. The transit gateway can be in any of the supported Amazon Web Services Regions, but it must be owned by the same Amazon Web Services account that owns the global network. You cannot register a transit gateway in more than one global network.
580
580
  */
581
581
  registerTransitGateway(callback?: (err: AWSError, data: NetworkManager.Types.RegisterTransitGatewayResponse) => void): Request<NetworkManager.Types.RegisterTransitGatewayResponse, AWSError>;
582
582
  /**
@@ -3823,7 +3823,7 @@ declare namespace NetworkManager {
3823
3823
  */
3824
3824
  PeeringId?: PeeringId;
3825
3825
  /**
3826
- * The ARN of the transit gateway attachment route table.
3826
+ * The ARN of the transit gateway attachment route table. For example, "TransitGatewayRouteTableArn": "arn:aws:ec2:us-west-2:123456789012:transit-gateway-route-table/tgw-rtb-9876543210123456".
3827
3827
  */
3828
3828
  TransitGatewayRouteTableArn?: TransitGatewayRouteTableArn;
3829
3829
  }