aws-sdk 2.902.0 → 2.906.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +23 -1
- package/README.md +1 -1
- package/apis/config-2014-11-12.paginators.json +196 -2
- package/apis/connect-2017-08-08.min.json +8 -2
- package/apis/eks-2017-11-01.min.json +39 -11
- package/apis/iotwireless-2020-11-22.min.json +46 -17
- package/apis/kinesisanalyticsv2-2018-05-23.min.json +64 -1
- package/apis/lakeformation-2017-03-31.min.json +465 -95
- package/apis/mediaconvert-2017-08-29.min.json +187 -107
- package/apis/metadata.json +8 -0
- package/apis/ssm-2014-11-06.min.json +461 -344
- package/apis/ssm-2014-11-06.paginators.json +6 -0
- package/apis/ssm-contacts-2021-05-03.examples.json +5 -0
- package/apis/ssm-contacts-2021-05-03.min.json +833 -0
- package/apis/ssm-contacts-2021-05-03.paginators.json +40 -0
- package/apis/ssm-incidents-2018-05-10.examples.json +5 -0
- package/apis/ssm-incidents-2018-05-10.min.json +1311 -0
- package/apis/ssm-incidents-2018-05-10.paginators.json +40 -0
- package/apis/ssm-incidents-2018-05-10.waiters2.json +53 -0
- package/clients/all.d.ts +2 -0
- package/clients/all.js +3 -1
- package/clients/codeartifact.d.ts +23 -23
- package/clients/connect.d.ts +36 -28
- package/clients/ec2.d.ts +3 -3
- package/clients/ecs.d.ts +8 -8
- package/clients/eks.d.ts +47 -7
- package/clients/iotwireless.d.ts +11 -0
- package/clients/kinesisanalyticsv2.d.ts +77 -8
- package/clients/lakeformation.d.ts +428 -4
- package/clients/lookoutmetrics.d.ts +16 -16
- package/clients/mediaconvert.d.ts +98 -3
- package/clients/s3control.d.ts +72 -72
- package/clients/ssm.d.ts +181 -3
- package/clients/ssmcontacts.d.ts +1079 -0
- package/clients/ssmcontacts.js +18 -0
- package/clients/ssmincidents.d.ts +1382 -0
- package/clients/ssmincidents.js +19 -0
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +94 -13
- package/dist/aws-sdk.js +682 -351
- package/dist/aws-sdk.min.js +68 -68
- package/lib/config_service_placeholders.d.ts +4 -0
- package/lib/core.js +1 -1
- package/lib/http/node.js +6 -2
- package/package.json +1 -1
- package/scripts/changelog/change-creator.js +1 -1
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"pagination": {
|
|
3
|
+
"GetResourcePolicies": {
|
|
4
|
+
"input_token": "nextToken",
|
|
5
|
+
"output_token": "nextToken",
|
|
6
|
+
"limit_key": "maxResults",
|
|
7
|
+
"result_key": "resourcePolicies"
|
|
8
|
+
},
|
|
9
|
+
"ListIncidentRecords": {
|
|
10
|
+
"input_token": "nextToken",
|
|
11
|
+
"output_token": "nextToken",
|
|
12
|
+
"limit_key": "maxResults",
|
|
13
|
+
"result_key": "incidentRecordSummaries"
|
|
14
|
+
},
|
|
15
|
+
"ListRelatedItems": {
|
|
16
|
+
"input_token": "nextToken",
|
|
17
|
+
"output_token": "nextToken",
|
|
18
|
+
"limit_key": "maxResults",
|
|
19
|
+
"result_key": "relatedItems"
|
|
20
|
+
},
|
|
21
|
+
"ListReplicationSets": {
|
|
22
|
+
"input_token": "nextToken",
|
|
23
|
+
"output_token": "nextToken",
|
|
24
|
+
"limit_key": "maxResults",
|
|
25
|
+
"result_key": "replicationSetArns"
|
|
26
|
+
},
|
|
27
|
+
"ListResponsePlans": {
|
|
28
|
+
"input_token": "nextToken",
|
|
29
|
+
"output_token": "nextToken",
|
|
30
|
+
"limit_key": "maxResults",
|
|
31
|
+
"result_key": "responsePlanSummaries"
|
|
32
|
+
},
|
|
33
|
+
"ListTimelineEvents": {
|
|
34
|
+
"input_token": "nextToken",
|
|
35
|
+
"output_token": "nextToken",
|
|
36
|
+
"limit_key": "maxResults",
|
|
37
|
+
"result_key": "eventSummaries"
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version" : 2,
|
|
3
|
+
"waiters" : {
|
|
4
|
+
"WaitForReplicationSetActive" : {
|
|
5
|
+
"description" : "Wait for a replication set to become ACTIVE",
|
|
6
|
+
"delay" : 30,
|
|
7
|
+
"maxAttempts" : 5,
|
|
8
|
+
"operation" : "GetReplicationSet",
|
|
9
|
+
"acceptors" : [ {
|
|
10
|
+
"matcher" : "path",
|
|
11
|
+
"argument" : "replicationSet.status",
|
|
12
|
+
"state" : "success",
|
|
13
|
+
"expected" : "ACTIVE"
|
|
14
|
+
}, {
|
|
15
|
+
"matcher" : "path",
|
|
16
|
+
"argument" : "replicationSet.status",
|
|
17
|
+
"state" : "retry",
|
|
18
|
+
"expected" : "CREATING"
|
|
19
|
+
}, {
|
|
20
|
+
"matcher" : "path",
|
|
21
|
+
"argument" : "replicationSet.status",
|
|
22
|
+
"state" : "retry",
|
|
23
|
+
"expected" : "UPDATING"
|
|
24
|
+
}, {
|
|
25
|
+
"matcher" : "path",
|
|
26
|
+
"argument" : "replicationSet.status",
|
|
27
|
+
"state" : "failure",
|
|
28
|
+
"expected" : "FAILED"
|
|
29
|
+
} ]
|
|
30
|
+
},
|
|
31
|
+
"WaitForReplicationSetDeleted" : {
|
|
32
|
+
"description" : "Wait for a replication set to be deleted",
|
|
33
|
+
"delay" : 30,
|
|
34
|
+
"maxAttempts" : 5,
|
|
35
|
+
"operation" : "GetReplicationSet",
|
|
36
|
+
"acceptors" : [ {
|
|
37
|
+
"matcher" : "error",
|
|
38
|
+
"state" : "success",
|
|
39
|
+
"expected" : "ResourceNotFoundException"
|
|
40
|
+
}, {
|
|
41
|
+
"matcher" : "path",
|
|
42
|
+
"argument" : "replicationSet.status",
|
|
43
|
+
"state" : "retry",
|
|
44
|
+
"expected" : "DELETING"
|
|
45
|
+
}, {
|
|
46
|
+
"matcher" : "path",
|
|
47
|
+
"argument" : "replicationSet.status",
|
|
48
|
+
"state" : "failure",
|
|
49
|
+
"expected" : "FAILED"
|
|
50
|
+
} ]
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
package/clients/all.d.ts
CHANGED
|
@@ -264,3 +264,5 @@ export import LookoutEquipment = require('./lookoutequipment');
|
|
|
264
264
|
export import Nimble = require('./nimble');
|
|
265
265
|
export import Finspace = require('./finspace');
|
|
266
266
|
export import Finspacedata = require('./finspacedata');
|
|
267
|
+
export import SSMContacts = require('./ssmcontacts');
|
|
268
|
+
export import SSMIncidents = require('./ssmincidents');
|
package/clients/all.js
CHANGED
|
@@ -265,5 +265,7 @@ module.exports = {
|
|
|
265
265
|
LookoutEquipment: require('./lookoutequipment'),
|
|
266
266
|
Nimble: require('./nimble'),
|
|
267
267
|
Finspace: require('./finspace'),
|
|
268
|
-
Finspacedata: require('./finspacedata')
|
|
268
|
+
Finspacedata: require('./finspacedata'),
|
|
269
|
+
SSMContacts: require('./ssmcontacts'),
|
|
270
|
+
SSMIncidents: require('./ssmincidents')
|
|
269
271
|
};
|
|
@@ -85,19 +85,19 @@ declare class CodeArtifact extends Service {
|
|
|
85
85
|
*/
|
|
86
86
|
deleteRepositoryPermissionsPolicy(callback?: (err: AWSError, data: CodeArtifact.Types.DeleteRepositoryPermissionsPolicyResult) => void): Request<CodeArtifact.Types.DeleteRepositoryPermissionsPolicyResult, AWSError>;
|
|
87
87
|
/**
|
|
88
|
-
* Returns a
|
|
88
|
+
* Returns a DomainDescription object that contains information about the requested domain.
|
|
89
89
|
*/
|
|
90
90
|
describeDomain(params: CodeArtifact.Types.DescribeDomainRequest, callback?: (err: AWSError, data: CodeArtifact.Types.DescribeDomainResult) => void): Request<CodeArtifact.Types.DescribeDomainResult, AWSError>;
|
|
91
91
|
/**
|
|
92
|
-
* Returns a
|
|
92
|
+
* Returns a DomainDescription object that contains information about the requested domain.
|
|
93
93
|
*/
|
|
94
94
|
describeDomain(callback?: (err: AWSError, data: CodeArtifact.Types.DescribeDomainResult) => void): Request<CodeArtifact.Types.DescribeDomainResult, AWSError>;
|
|
95
95
|
/**
|
|
96
|
-
* Returns a
|
|
96
|
+
* Returns a PackageVersionDescription object that contains information about the requested package version.
|
|
97
97
|
*/
|
|
98
98
|
describePackageVersion(params: CodeArtifact.Types.DescribePackageVersionRequest, callback?: (err: AWSError, data: CodeArtifact.Types.DescribePackageVersionResult) => void): Request<CodeArtifact.Types.DescribePackageVersionResult, AWSError>;
|
|
99
99
|
/**
|
|
100
|
-
* Returns a
|
|
100
|
+
* Returns a PackageVersionDescription object that contains information about the requested package version.
|
|
101
101
|
*/
|
|
102
102
|
describePackageVersion(callback?: (err: AWSError, data: CodeArtifact.Types.DescribePackageVersionResult) => void): Request<CodeArtifact.Types.DescribePackageVersionResult, AWSError>;
|
|
103
103
|
/**
|
|
@@ -117,11 +117,11 @@ declare class CodeArtifact extends Service {
|
|
|
117
117
|
*/
|
|
118
118
|
disassociateExternalConnection(callback?: (err: AWSError, data: CodeArtifact.Types.DisassociateExternalConnectionResult) => void): Request<CodeArtifact.Types.DisassociateExternalConnectionResult, AWSError>;
|
|
119
119
|
/**
|
|
120
|
-
* Deletes the assets in package versions and sets the package versions' status to Disposed. A disposed package version cannot be restored in your repository because its assets are deleted. To view all disposed package versions in a repository, use
|
|
120
|
+
* Deletes the assets in package versions and sets the package versions' status to Disposed. A disposed package version cannot be restored in your repository because its assets are deleted. To view all disposed package versions in a repository, use ListPackageVersions and set the status parameter to Disposed. To view information about a disposed package version, use DescribePackageVersion.
|
|
121
121
|
*/
|
|
122
122
|
disposePackageVersions(params: CodeArtifact.Types.DisposePackageVersionsRequest, callback?: (err: AWSError, data: CodeArtifact.Types.DisposePackageVersionsResult) => void): Request<CodeArtifact.Types.DisposePackageVersionsResult, AWSError>;
|
|
123
123
|
/**
|
|
124
|
-
* Deletes the assets in package versions and sets the package versions' status to Disposed. A disposed package version cannot be restored in your repository because its assets are deleted. To view all disposed package versions in a repository, use
|
|
124
|
+
* Deletes the assets in package versions and sets the package versions' status to Disposed. A disposed package version cannot be restored in your repository because its assets are deleted. To view all disposed package versions in a repository, use ListPackageVersions and set the status parameter to Disposed. To view information about a disposed package version, use DescribePackageVersion.
|
|
125
125
|
*/
|
|
126
126
|
disposePackageVersions(callback?: (err: AWSError, data: CodeArtifact.Types.DisposePackageVersionsResult) => void): Request<CodeArtifact.Types.DisposePackageVersionsResult, AWSError>;
|
|
127
127
|
/**
|
|
@@ -181,51 +181,51 @@ declare class CodeArtifact extends Service {
|
|
|
181
181
|
*/
|
|
182
182
|
listDomains(callback?: (err: AWSError, data: CodeArtifact.Types.ListDomainsResult) => void): Request<CodeArtifact.Types.ListDomainsResult, AWSError>;
|
|
183
183
|
/**
|
|
184
|
-
* Returns a list of
|
|
184
|
+
* Returns a list of AssetSummary objects for assets in a package version.
|
|
185
185
|
*/
|
|
186
186
|
listPackageVersionAssets(params: CodeArtifact.Types.ListPackageVersionAssetsRequest, callback?: (err: AWSError, data: CodeArtifact.Types.ListPackageVersionAssetsResult) => void): Request<CodeArtifact.Types.ListPackageVersionAssetsResult, AWSError>;
|
|
187
187
|
/**
|
|
188
|
-
* Returns a list of
|
|
188
|
+
* Returns a list of AssetSummary objects for assets in a package version.
|
|
189
189
|
*/
|
|
190
190
|
listPackageVersionAssets(callback?: (err: AWSError, data: CodeArtifact.Types.ListPackageVersionAssetsResult) => void): Request<CodeArtifact.Types.ListPackageVersionAssetsResult, AWSError>;
|
|
191
191
|
/**
|
|
192
|
-
* Returns the direct dependencies for a package version. The dependencies are returned as
|
|
192
|
+
* Returns the direct dependencies for a package version. The dependencies are returned as PackageDependency objects. CodeArtifact extracts the dependencies for a package version from the metadata file for the package format (for example, the package.json file for npm packages and the pom.xml file for Maven). Any package version dependencies that are not listed in the configuration file are not returned.
|
|
193
193
|
*/
|
|
194
194
|
listPackageVersionDependencies(params: CodeArtifact.Types.ListPackageVersionDependenciesRequest, callback?: (err: AWSError, data: CodeArtifact.Types.ListPackageVersionDependenciesResult) => void): Request<CodeArtifact.Types.ListPackageVersionDependenciesResult, AWSError>;
|
|
195
195
|
/**
|
|
196
|
-
* Returns the direct dependencies for a package version. The dependencies are returned as
|
|
196
|
+
* Returns the direct dependencies for a package version. The dependencies are returned as PackageDependency objects. CodeArtifact extracts the dependencies for a package version from the metadata file for the package format (for example, the package.json file for npm packages and the pom.xml file for Maven). Any package version dependencies that are not listed in the configuration file are not returned.
|
|
197
197
|
*/
|
|
198
198
|
listPackageVersionDependencies(callback?: (err: AWSError, data: CodeArtifact.Types.ListPackageVersionDependenciesResult) => void): Request<CodeArtifact.Types.ListPackageVersionDependenciesResult, AWSError>;
|
|
199
199
|
/**
|
|
200
|
-
* Returns a list of
|
|
200
|
+
* Returns a list of PackageVersionSummary objects for package versions in a repository that match the request parameters.
|
|
201
201
|
*/
|
|
202
202
|
listPackageVersions(params: CodeArtifact.Types.ListPackageVersionsRequest, callback?: (err: AWSError, data: CodeArtifact.Types.ListPackageVersionsResult) => void): Request<CodeArtifact.Types.ListPackageVersionsResult, AWSError>;
|
|
203
203
|
/**
|
|
204
|
-
* Returns a list of
|
|
204
|
+
* Returns a list of PackageVersionSummary objects for package versions in a repository that match the request parameters.
|
|
205
205
|
*/
|
|
206
206
|
listPackageVersions(callback?: (err: AWSError, data: CodeArtifact.Types.ListPackageVersionsResult) => void): Request<CodeArtifact.Types.ListPackageVersionsResult, AWSError>;
|
|
207
207
|
/**
|
|
208
|
-
* Returns a list of
|
|
208
|
+
* Returns a list of PackageSummary objects for packages in a repository that match the request parameters.
|
|
209
209
|
*/
|
|
210
210
|
listPackages(params: CodeArtifact.Types.ListPackagesRequest, callback?: (err: AWSError, data: CodeArtifact.Types.ListPackagesResult) => void): Request<CodeArtifact.Types.ListPackagesResult, AWSError>;
|
|
211
211
|
/**
|
|
212
|
-
* Returns a list of
|
|
212
|
+
* Returns a list of PackageSummary objects for packages in a repository that match the request parameters.
|
|
213
213
|
*/
|
|
214
214
|
listPackages(callback?: (err: AWSError, data: CodeArtifact.Types.ListPackagesResult) => void): Request<CodeArtifact.Types.ListPackagesResult, AWSError>;
|
|
215
215
|
/**
|
|
216
|
-
* Returns a list of
|
|
216
|
+
* Returns a list of RepositorySummary objects. Each RepositorySummary contains information about a repository in the specified AWS account and that matches the input parameters.
|
|
217
217
|
*/
|
|
218
218
|
listRepositories(params: CodeArtifact.Types.ListRepositoriesRequest, callback?: (err: AWSError, data: CodeArtifact.Types.ListRepositoriesResult) => void): Request<CodeArtifact.Types.ListRepositoriesResult, AWSError>;
|
|
219
219
|
/**
|
|
220
|
-
* Returns a list of
|
|
220
|
+
* Returns a list of RepositorySummary objects. Each RepositorySummary contains information about a repository in the specified AWS account and that matches the input parameters.
|
|
221
221
|
*/
|
|
222
222
|
listRepositories(callback?: (err: AWSError, data: CodeArtifact.Types.ListRepositoriesResult) => void): Request<CodeArtifact.Types.ListRepositoriesResult, AWSError>;
|
|
223
223
|
/**
|
|
224
|
-
* Returns a list of
|
|
224
|
+
* Returns a list of RepositorySummary objects. Each RepositorySummary contains information about a repository in the specified domain and that matches the input parameters.
|
|
225
225
|
*/
|
|
226
226
|
listRepositoriesInDomain(params: CodeArtifact.Types.ListRepositoriesInDomainRequest, callback?: (err: AWSError, data: CodeArtifact.Types.ListRepositoriesInDomainResult) => void): Request<CodeArtifact.Types.ListRepositoriesInDomainResult, AWSError>;
|
|
227
227
|
/**
|
|
228
|
-
* Returns a list of
|
|
228
|
+
* Returns a list of RepositorySummary objects. Each RepositorySummary contains information about a repository in the specified domain and that matches the input parameters.
|
|
229
229
|
*/
|
|
230
230
|
listRepositoriesInDomain(callback?: (err: AWSError, data: CodeArtifact.Types.ListRepositoriesInDomainResult) => void): Request<CodeArtifact.Types.ListRepositoriesInDomainResult, AWSError>;
|
|
231
231
|
/**
|
|
@@ -1072,7 +1072,7 @@ declare namespace CodeArtifact {
|
|
|
1072
1072
|
*/
|
|
1073
1073
|
nextToken?: PaginationToken;
|
|
1074
1074
|
/**
|
|
1075
|
-
* The returned list of
|
|
1075
|
+
* The returned list of AssetSummary objects.
|
|
1076
1076
|
*/
|
|
1077
1077
|
assets?: AssetSummaryList;
|
|
1078
1078
|
}
|
|
@@ -1136,7 +1136,7 @@ declare namespace CodeArtifact {
|
|
|
1136
1136
|
*/
|
|
1137
1137
|
nextToken?: PaginationToken;
|
|
1138
1138
|
/**
|
|
1139
|
-
* The returned list of
|
|
1139
|
+
* The returned list of PackageDependency objects.
|
|
1140
1140
|
*/
|
|
1141
1141
|
dependencies?: PackageDependencyList;
|
|
1142
1142
|
}
|
|
@@ -1201,7 +1201,7 @@ declare namespace CodeArtifact {
|
|
|
1201
1201
|
*/
|
|
1202
1202
|
package?: PackageName;
|
|
1203
1203
|
/**
|
|
1204
|
-
* The returned list of
|
|
1204
|
+
* The returned list of PackageVersionSummary objects.
|
|
1205
1205
|
*/
|
|
1206
1206
|
versions?: PackageVersionSummaryList;
|
|
1207
1207
|
/**
|
|
@@ -1246,7 +1246,7 @@ declare namespace CodeArtifact {
|
|
|
1246
1246
|
}
|
|
1247
1247
|
export interface ListPackagesResult {
|
|
1248
1248
|
/**
|
|
1249
|
-
* The list of returned
|
|
1249
|
+
* The list of returned PackageSummary objects.
|
|
1250
1250
|
*/
|
|
1251
1251
|
packages?: PackageSummaryList;
|
|
1252
1252
|
/**
|
|
@@ -1308,7 +1308,7 @@ declare namespace CodeArtifact {
|
|
|
1308
1308
|
}
|
|
1309
1309
|
export interface ListRepositoriesResult {
|
|
1310
1310
|
/**
|
|
1311
|
-
* The returned list of
|
|
1311
|
+
* The returned list of RepositorySummary objects.
|
|
1312
1312
|
*/
|
|
1313
1313
|
repositories?: RepositorySummaryList;
|
|
1314
1314
|
/**
|
package/clients/connect.d.ts
CHANGED
|
@@ -76,19 +76,19 @@ declare class Connect extends Service {
|
|
|
76
76
|
*/
|
|
77
77
|
createContactFlow(callback?: (err: AWSError, data: Connect.Types.CreateContactFlowResponse) => void): Request<Connect.Types.CreateContactFlowResponse, AWSError>;
|
|
78
78
|
/**
|
|
79
|
-
* This API is in preview release for Amazon Connect and is subject to change. Initiates an Amazon Connect instance with all the supported channels enabled. It does not attach any storage, such as Amazon Simple Storage Service (Amazon S3) or Amazon Kinesis. It also does not allow for any configurations on features, such as Contact Lens for Amazon Connect.
|
|
79
|
+
* This API is in preview release for Amazon Connect and is subject to change. Initiates an Amazon Connect instance with all the supported channels enabled. It does not attach any storage, such as Amazon Simple Storage Service (Amazon S3) or Amazon Kinesis. It also does not allow for any configurations on features, such as Contact Lens for Amazon Connect. Amazon Connect enforces a limit on the total number of instances that you can create or delete in 30 days. If you exceed this limit, you will get an error message indicating there has been an excessive number of attempts at creating or deleting instances. You must wait 30 days before you can restart creating and deleting instances in your account.
|
|
80
80
|
*/
|
|
81
81
|
createInstance(params: Connect.Types.CreateInstanceRequest, callback?: (err: AWSError, data: Connect.Types.CreateInstanceResponse) => void): Request<Connect.Types.CreateInstanceResponse, AWSError>;
|
|
82
82
|
/**
|
|
83
|
-
* This API is in preview release for Amazon Connect and is subject to change. Initiates an Amazon Connect instance with all the supported channels enabled. It does not attach any storage, such as Amazon Simple Storage Service (Amazon S3) or Amazon Kinesis. It also does not allow for any configurations on features, such as Contact Lens for Amazon Connect.
|
|
83
|
+
* This API is in preview release for Amazon Connect and is subject to change. Initiates an Amazon Connect instance with all the supported channels enabled. It does not attach any storage, such as Amazon Simple Storage Service (Amazon S3) or Amazon Kinesis. It also does not allow for any configurations on features, such as Contact Lens for Amazon Connect. Amazon Connect enforces a limit on the total number of instances that you can create or delete in 30 days. If you exceed this limit, you will get an error message indicating there has been an excessive number of attempts at creating or deleting instances. You must wait 30 days before you can restart creating and deleting instances in your account.
|
|
84
84
|
*/
|
|
85
85
|
createInstance(callback?: (err: AWSError, data: Connect.Types.CreateInstanceResponse) => void): Request<Connect.Types.CreateInstanceResponse, AWSError>;
|
|
86
86
|
/**
|
|
87
|
-
*
|
|
87
|
+
* Create an AppIntegration association with an Amazon Connect instance.
|
|
88
88
|
*/
|
|
89
89
|
createIntegrationAssociation(params: Connect.Types.CreateIntegrationAssociationRequest, callback?: (err: AWSError, data: Connect.Types.CreateIntegrationAssociationResponse) => void): Request<Connect.Types.CreateIntegrationAssociationResponse, AWSError>;
|
|
90
90
|
/**
|
|
91
|
-
*
|
|
91
|
+
* Create an AppIntegration association with an Amazon Connect instance.
|
|
92
92
|
*/
|
|
93
93
|
createIntegrationAssociation(callback?: (err: AWSError, data: Connect.Types.CreateIntegrationAssociationResponse) => void): Request<Connect.Types.CreateIntegrationAssociationResponse, AWSError>;
|
|
94
94
|
/**
|
|
@@ -116,11 +116,11 @@ declare class Connect extends Service {
|
|
|
116
116
|
*/
|
|
117
117
|
createRoutingProfile(callback?: (err: AWSError, data: Connect.Types.CreateRoutingProfileResponse) => void): Request<Connect.Types.CreateRoutingProfileResponse, AWSError>;
|
|
118
118
|
/**
|
|
119
|
-
*
|
|
119
|
+
* Creates a use case for an AppIntegration association.
|
|
120
120
|
*/
|
|
121
121
|
createUseCase(params: Connect.Types.CreateUseCaseRequest, callback?: (err: AWSError, data: Connect.Types.CreateUseCaseResponse) => void): Request<Connect.Types.CreateUseCaseResponse, AWSError>;
|
|
122
122
|
/**
|
|
123
|
-
*
|
|
123
|
+
* Creates a use case for an AppIntegration association.
|
|
124
124
|
*/
|
|
125
125
|
createUseCase(callback?: (err: AWSError, data: Connect.Types.CreateUseCaseResponse) => void): Request<Connect.Types.CreateUseCaseResponse, AWSError>;
|
|
126
126
|
/**
|
|
@@ -140,19 +140,19 @@ declare class Connect extends Service {
|
|
|
140
140
|
*/
|
|
141
141
|
createUserHierarchyGroup(callback?: (err: AWSError, data: Connect.Types.CreateUserHierarchyGroupResponse) => void): Request<Connect.Types.CreateUserHierarchyGroupResponse, AWSError>;
|
|
142
142
|
/**
|
|
143
|
-
* This API is in preview release for Amazon Connect and is subject to change. Deletes the Amazon Connect instance.
|
|
143
|
+
* This API is in preview release for Amazon Connect and is subject to change. Deletes the Amazon Connect instance. Amazon Connect enforces a limit on the total number of instances that you can create or delete in 30 days. If you exceed this limit, you will get an error message indicating there has been an excessive number of attempts at creating or deleting instances. You must wait 30 days before you can restart creating and deleting instances in your account.
|
|
144
144
|
*/
|
|
145
145
|
deleteInstance(params: Connect.Types.DeleteInstanceRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
146
146
|
/**
|
|
147
|
-
* This API is in preview release for Amazon Connect and is subject to change. Deletes the Amazon Connect instance.
|
|
147
|
+
* This API is in preview release for Amazon Connect and is subject to change. Deletes the Amazon Connect instance. Amazon Connect enforces a limit on the total number of instances that you can create or delete in 30 days. If you exceed this limit, you will get an error message indicating there has been an excessive number of attempts at creating or deleting instances. You must wait 30 days before you can restart creating and deleting instances in your account.
|
|
148
148
|
*/
|
|
149
149
|
deleteInstance(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
150
150
|
/**
|
|
151
|
-
*
|
|
151
|
+
* Deletes an AppIntegration association from an Amazon Connect instance. The association must not have any use cases associated with it.
|
|
152
152
|
*/
|
|
153
153
|
deleteIntegrationAssociation(params: Connect.Types.DeleteIntegrationAssociationRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
154
154
|
/**
|
|
155
|
-
*
|
|
155
|
+
* Deletes an AppIntegration association from an Amazon Connect instance. The association must not have any use cases associated with it.
|
|
156
156
|
*/
|
|
157
157
|
deleteIntegrationAssociation(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
158
158
|
/**
|
|
@@ -164,11 +164,11 @@ declare class Connect extends Service {
|
|
|
164
164
|
*/
|
|
165
165
|
deleteQuickConnect(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
166
166
|
/**
|
|
167
|
-
*
|
|
167
|
+
* Deletes a use case from an AppIntegration association.
|
|
168
168
|
*/
|
|
169
169
|
deleteUseCase(params: Connect.Types.DeleteUseCaseRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
170
170
|
/**
|
|
171
|
-
*
|
|
171
|
+
* Deletes a use case from an AppIntegration association.
|
|
172
172
|
*/
|
|
173
173
|
deleteUseCase(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
174
174
|
/**
|
|
@@ -348,11 +348,11 @@ declare class Connect extends Service {
|
|
|
348
348
|
*/
|
|
349
349
|
getCurrentMetricData(callback?: (err: AWSError, data: Connect.Types.GetCurrentMetricDataResponse) => void): Request<Connect.Types.GetCurrentMetricDataResponse, AWSError>;
|
|
350
350
|
/**
|
|
351
|
-
* Retrieves a token for federation.
|
|
351
|
+
* Retrieves a token for federation. This API doesn't support root users. If you try to invoke GetFederationToken with root credentials, an error message similar to the following one appears: Provided identity: Principal: .... User: .... cannot be used for federation with Amazon Connect
|
|
352
352
|
*/
|
|
353
353
|
getFederationToken(params: Connect.Types.GetFederationTokenRequest, callback?: (err: AWSError, data: Connect.Types.GetFederationTokenResponse) => void): Request<Connect.Types.GetFederationTokenResponse, AWSError>;
|
|
354
354
|
/**
|
|
355
|
-
* Retrieves a token for federation.
|
|
355
|
+
* Retrieves a token for federation. This API doesn't support root users. If you try to invoke GetFederationToken with root credentials, an error message similar to the following one appears: Provided identity: Principal: .... User: .... cannot be used for federation with Amazon Connect
|
|
356
356
|
*/
|
|
357
357
|
getFederationToken(callback?: (err: AWSError, data: Connect.Types.GetFederationTokenResponse) => void): Request<Connect.Types.GetFederationTokenResponse, AWSError>;
|
|
358
358
|
/**
|
|
@@ -412,11 +412,11 @@ declare class Connect extends Service {
|
|
|
412
412
|
*/
|
|
413
413
|
listInstances(callback?: (err: AWSError, data: Connect.Types.ListInstancesResponse) => void): Request<Connect.Types.ListInstancesResponse, AWSError>;
|
|
414
414
|
/**
|
|
415
|
-
*
|
|
415
|
+
* Provides summary information about the AppIntegration associations for the specified Amazon Connect instance.
|
|
416
416
|
*/
|
|
417
417
|
listIntegrationAssociations(params: Connect.Types.ListIntegrationAssociationsRequest, callback?: (err: AWSError, data: Connect.Types.ListIntegrationAssociationsResponse) => void): Request<Connect.Types.ListIntegrationAssociationsResponse, AWSError>;
|
|
418
418
|
/**
|
|
419
|
-
*
|
|
419
|
+
* Provides summary information about the AppIntegration associations for the specified Amazon Connect instance.
|
|
420
420
|
*/
|
|
421
421
|
listIntegrationAssociations(callback?: (err: AWSError, data: Connect.Types.ListIntegrationAssociationsResponse) => void): Request<Connect.Types.ListIntegrationAssociationsResponse, AWSError>;
|
|
422
422
|
/**
|
|
@@ -460,11 +460,11 @@ declare class Connect extends Service {
|
|
|
460
460
|
*/
|
|
461
461
|
listQueueQuickConnects(callback?: (err: AWSError, data: Connect.Types.ListQueueQuickConnectsResponse) => void): Request<Connect.Types.ListQueueQuickConnectsResponse, AWSError>;
|
|
462
462
|
/**
|
|
463
|
-
* Provides information about the queues for the specified Amazon Connect instance. For more information about queues, see Queues: Standard and Agent in the Amazon Connect Administrator Guide.
|
|
463
|
+
* Provides information about the queues for the specified Amazon Connect instance. If you do not specify a QueueTypes parameter, both standard and agent queues are returned. This might cause an unexpected truncation of results if you have more than 1000 agents and you limit the number of results of the API call in code. For more information about queues, see Queues: Standard and Agent in the Amazon Connect Administrator Guide.
|
|
464
464
|
*/
|
|
465
465
|
listQueues(params: Connect.Types.ListQueuesRequest, callback?: (err: AWSError, data: Connect.Types.ListQueuesResponse) => void): Request<Connect.Types.ListQueuesResponse, AWSError>;
|
|
466
466
|
/**
|
|
467
|
-
* Provides information about the queues for the specified Amazon Connect instance. For more information about queues, see Queues: Standard and Agent in the Amazon Connect Administrator Guide.
|
|
467
|
+
* Provides information about the queues for the specified Amazon Connect instance. If you do not specify a QueueTypes parameter, both standard and agent queues are returned. This might cause an unexpected truncation of results if you have more than 1000 agents and you limit the number of results of the API call in code. For more information about queues, see Queues: Standard and Agent in the Amazon Connect Administrator Guide.
|
|
468
468
|
*/
|
|
469
469
|
listQueues(callback?: (err: AWSError, data: Connect.Types.ListQueuesResponse) => void): Request<Connect.Types.ListQueuesResponse, AWSError>;
|
|
470
470
|
/**
|
|
@@ -516,11 +516,11 @@ declare class Connect extends Service {
|
|
|
516
516
|
*/
|
|
517
517
|
listTagsForResource(callback?: (err: AWSError, data: Connect.Types.ListTagsForResourceResponse) => void): Request<Connect.Types.ListTagsForResourceResponse, AWSError>;
|
|
518
518
|
/**
|
|
519
|
-
*
|
|
519
|
+
* Lists the use cases.
|
|
520
520
|
*/
|
|
521
521
|
listUseCases(params: Connect.Types.ListUseCasesRequest, callback?: (err: AWSError, data: Connect.Types.ListUseCasesResponse) => void): Request<Connect.Types.ListUseCasesResponse, AWSError>;
|
|
522
522
|
/**
|
|
523
|
-
*
|
|
523
|
+
* Lists the use cases.
|
|
524
524
|
*/
|
|
525
525
|
listUseCases(callback?: (err: AWSError, data: Connect.Types.ListUseCasesResponse) => void): Request<Connect.Types.ListUseCasesResponse, AWSError>;
|
|
526
526
|
/**
|
|
@@ -548,11 +548,11 @@ declare class Connect extends Service {
|
|
|
548
548
|
*/
|
|
549
549
|
resumeContactRecording(callback?: (err: AWSError, data: Connect.Types.ResumeContactRecordingResponse) => void): Request<Connect.Types.ResumeContactRecordingResponse, AWSError>;
|
|
550
550
|
/**
|
|
551
|
-
* Initiates a contact flow to start a new chat for the customer. Response of this API provides a token required to obtain credentials from the CreateParticipantConnection API in the Amazon Connect Participant Service. When a new chat contact is successfully created, clients must subscribe to the participant’s connection for the created chat within 5 minutes. This is achieved by invoking CreateParticipantConnection with WEBSOCKET and CONNECTION_CREDENTIALS. A 429 error occurs in two situations: API rate limit is exceeded. API TPS throttling returns a TooManyRequests exception
|
|
551
|
+
* Initiates a contact flow to start a new chat for the customer. Response of this API provides a token required to obtain credentials from the CreateParticipantConnection API in the Amazon Connect Participant Service. When a new chat contact is successfully created, clients must subscribe to the participant’s connection for the created chat within 5 minutes. This is achieved by invoking CreateParticipantConnection with WEBSOCKET and CONNECTION_CREDENTIALS. A 429 error occurs in two situations: API rate limit is exceeded. API TPS throttling returns a TooManyRequests exception. The quota for concurrent active chats is exceeded. Active chat throttling returns a LimitExceededException. For more information about chat, see Chat in the Amazon Connect Administrator Guide.
|
|
552
552
|
*/
|
|
553
553
|
startChatContact(params: Connect.Types.StartChatContactRequest, callback?: (err: AWSError, data: Connect.Types.StartChatContactResponse) => void): Request<Connect.Types.StartChatContactResponse, AWSError>;
|
|
554
554
|
/**
|
|
555
|
-
* Initiates a contact flow to start a new chat for the customer. Response of this API provides a token required to obtain credentials from the CreateParticipantConnection API in the Amazon Connect Participant Service. When a new chat contact is successfully created, clients must subscribe to the participant’s connection for the created chat within 5 minutes. This is achieved by invoking CreateParticipantConnection with WEBSOCKET and CONNECTION_CREDENTIALS. A 429 error occurs in two situations: API rate limit is exceeded. API TPS throttling returns a TooManyRequests exception
|
|
555
|
+
* Initiates a contact flow to start a new chat for the customer. Response of this API provides a token required to obtain credentials from the CreateParticipantConnection API in the Amazon Connect Participant Service. When a new chat contact is successfully created, clients must subscribe to the participant’s connection for the created chat within 5 minutes. This is achieved by invoking CreateParticipantConnection with WEBSOCKET and CONNECTION_CREDENTIALS. A 429 error occurs in two situations: API rate limit is exceeded. API TPS throttling returns a TooManyRequests exception. The quota for concurrent active chats is exceeded. Active chat throttling returns a LimitExceededException. For more information about chat, see Chat in the Amazon Connect Administrator Guide.
|
|
556
556
|
*/
|
|
557
557
|
startChatContact(callback?: (err: AWSError, data: Connect.Types.StartChatContactResponse) => void): Request<Connect.Types.StartChatContactResponse, AWSError>;
|
|
558
558
|
/**
|
|
@@ -620,11 +620,11 @@ declare class Connect extends Service {
|
|
|
620
620
|
*/
|
|
621
621
|
untagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
622
622
|
/**
|
|
623
|
-
* Creates or updates
|
|
623
|
+
* Creates or updates user-defined contact attributes associated with the specified contact. You can create or update user-defined attributes for both ongoing and completed contacts. For example, while the call is active, you can update the customer's name or the reason the customer called. You can add notes about steps that the agent took during the call that display to the next agent that takes the call. You can also update attributes for a contact using data from your CRM application and save the data with the contact in Amazon Connect. You could also flag calls for additional analysis, such as legal review or to identify abusive callers. Contact attributes are available in Amazon Connect for 24 months, and are then deleted. For information about CTR retention and the maximum size of the CTR attributes section, see Feature specifications in the Amazon Connect Administrator Guide. Important: You cannot use the operation to update attributes for contacts that occurred prior to the release of the API, which was September 12, 2018. You can update attributes only for contacts that started after the release of the API. If you attempt to update attributes for a contact that occurred prior to the release of the API, a 400 error is returned. This applies also to queued callbacks that were initiated prior to the release of the API but are still active in your instance.
|
|
624
624
|
*/
|
|
625
625
|
updateContactAttributes(params: Connect.Types.UpdateContactAttributesRequest, callback?: (err: AWSError, data: Connect.Types.UpdateContactAttributesResponse) => void): Request<Connect.Types.UpdateContactAttributesResponse, AWSError>;
|
|
626
626
|
/**
|
|
627
|
-
* Creates or updates
|
|
627
|
+
* Creates or updates user-defined contact attributes associated with the specified contact. You can create or update user-defined attributes for both ongoing and completed contacts. For example, while the call is active, you can update the customer's name or the reason the customer called. You can add notes about steps that the agent took during the call that display to the next agent that takes the call. You can also update attributes for a contact using data from your CRM application and save the data with the contact in Amazon Connect. You could also flag calls for additional analysis, such as legal review or to identify abusive callers. Contact attributes are available in Amazon Connect for 24 months, and are then deleted. For information about CTR retention and the maximum size of the CTR attributes section, see Feature specifications in the Amazon Connect Administrator Guide. Important: You cannot use the operation to update attributes for contacts that occurred prior to the release of the API, which was September 12, 2018. You can update attributes only for contacts that started after the release of the API. If you attempt to update attributes for a contact that occurred prior to the release of the API, a 400 error is returned. This applies also to queued callbacks that were initiated prior to the release of the API but are still active in your instance.
|
|
628
628
|
*/
|
|
629
629
|
updateContactAttributes(callback?: (err: AWSError, data: Connect.Types.UpdateContactAttributesResponse) => void): Request<Connect.Types.UpdateContactAttributesResponse, AWSError>;
|
|
630
630
|
/**
|
|
@@ -1095,6 +1095,10 @@ declare namespace Connect {
|
|
|
1095
1095
|
* The type of the data source.
|
|
1096
1096
|
*/
|
|
1097
1097
|
SourceType: SourceType;
|
|
1098
|
+
/**
|
|
1099
|
+
* One or more tags.
|
|
1100
|
+
*/
|
|
1101
|
+
Tags?: TagMap;
|
|
1098
1102
|
}
|
|
1099
1103
|
export interface CreateIntegrationAssociationResponse {
|
|
1100
1104
|
/**
|
|
@@ -1235,6 +1239,10 @@ declare namespace Connect {
|
|
|
1235
1239
|
* The type of use case to associate to the AppIntegration association. Each AppIntegration association can have only one of each use case type.
|
|
1236
1240
|
*/
|
|
1237
1241
|
UseCaseType: UseCaseType;
|
|
1242
|
+
/**
|
|
1243
|
+
* One or more tags.
|
|
1244
|
+
*/
|
|
1245
|
+
Tags?: TagMap;
|
|
1238
1246
|
}
|
|
1239
1247
|
export interface CreateUseCaseResponse {
|
|
1240
1248
|
/**
|
|
@@ -1815,15 +1823,15 @@ declare namespace Connect {
|
|
|
1815
1823
|
*/
|
|
1816
1824
|
EndTime: timestamp;
|
|
1817
1825
|
/**
|
|
1818
|
-
* The queues, up to 100, or channels, to use to filter the metrics returned. Metric data is retrieved only for the resources associated with the queues or channels included in the filter. You can include both queue IDs and queue ARNs in the same request. VOICE, CHAT, and TASK channels are supported.
|
|
1826
|
+
* The queues, up to 100, or channels, to use to filter the metrics returned. Metric data is retrieved only for the resources associated with the queues or channels included in the filter. You can include both queue IDs and queue ARNs in the same request. VOICE, CHAT, and TASK channels are supported. To filter by Queues, enter the queue ID/ARN, not the name of the queue.
|
|
1819
1827
|
*/
|
|
1820
1828
|
Filters: Filters;
|
|
1821
1829
|
/**
|
|
1822
|
-
* The grouping applied to the metrics returned. For example, when results are grouped by queue, the metrics returned are grouped by queue. The values returned apply to the metrics for each queue rather than aggregated for all queues.
|
|
1830
|
+
* The grouping applied to the metrics returned. For example, when results are grouped by queue, the metrics returned are grouped by queue. The values returned apply to the metrics for each queue rather than aggregated for all queues. If no grouping is specified, a summary of metrics for all queues is returned.
|
|
1823
1831
|
*/
|
|
1824
1832
|
Groupings?: Groupings;
|
|
1825
1833
|
/**
|
|
1826
|
-
* The metrics to retrieve. Specify the name, unit, and statistic for each metric. The following historical metrics are available. For a description of each metric, see Historical Metrics Definitions in the Amazon Connect Administrator Guide. ABANDON_TIME Unit: SECONDS Statistic: AVG AFTER_CONTACT_WORK_TIME Unit: SECONDS Statistic: AVG API_CONTACTS_HANDLED Unit: COUNT Statistic: SUM CALLBACK_CONTACTS_HANDLED Unit: COUNT Statistic: SUM CONTACTS_ABANDONED Unit: COUNT Statistic: SUM CONTACTS_AGENT_HUNG_UP_FIRST Unit: COUNT Statistic: SUM CONTACTS_CONSULTED Unit: COUNT Statistic: SUM CONTACTS_HANDLED Unit: COUNT Statistic: SUM CONTACTS_HANDLED_INCOMING Unit: COUNT Statistic: SUM CONTACTS_HANDLED_OUTBOUND Unit: COUNT Statistic: SUM CONTACTS_HOLD_ABANDONS Unit: COUNT Statistic: SUM CONTACTS_MISSED Unit: COUNT Statistic: SUM CONTACTS_QUEUED Unit: COUNT Statistic: SUM CONTACTS_TRANSFERRED_IN Unit: COUNT Statistic: SUM CONTACTS_TRANSFERRED_IN_FROM_QUEUE Unit: COUNT Statistic: SUM CONTACTS_TRANSFERRED_OUT Unit: COUNT Statistic: SUM CONTACTS_TRANSFERRED_OUT_FROM_QUEUE Unit: COUNT Statistic: SUM HANDLE_TIME Unit: SECONDS Statistic: AVG HOLD_TIME Unit: SECONDS Statistic: AVG INTERACTION_AND_HOLD_TIME Unit: SECONDS Statistic: AVG INTERACTION_TIME Unit: SECONDS Statistic: AVG OCCUPANCY Unit: PERCENT Statistic: AVG QUEUE_ANSWER_TIME Unit: SECONDS Statistic: AVG QUEUED_TIME Unit: SECONDS Statistic: MAX SERVICE_LEVEL Unit: PERCENT Statistic: AVG Threshold:
|
|
1834
|
+
* The metrics to retrieve. Specify the name, unit, and statistic for each metric. The following historical metrics are available. For a description of each metric, see Historical Metrics Definitions in the Amazon Connect Administrator Guide. ABANDON_TIME Unit: SECONDS Statistic: AVG AFTER_CONTACT_WORK_TIME Unit: SECONDS Statistic: AVG API_CONTACTS_HANDLED Unit: COUNT Statistic: SUM CALLBACK_CONTACTS_HANDLED Unit: COUNT Statistic: SUM CONTACTS_ABANDONED Unit: COUNT Statistic: SUM CONTACTS_AGENT_HUNG_UP_FIRST Unit: COUNT Statistic: SUM CONTACTS_CONSULTED Unit: COUNT Statistic: SUM CONTACTS_HANDLED Unit: COUNT Statistic: SUM CONTACTS_HANDLED_INCOMING Unit: COUNT Statistic: SUM CONTACTS_HANDLED_OUTBOUND Unit: COUNT Statistic: SUM CONTACTS_HOLD_ABANDONS Unit: COUNT Statistic: SUM CONTACTS_MISSED Unit: COUNT Statistic: SUM CONTACTS_QUEUED Unit: COUNT Statistic: SUM CONTACTS_TRANSFERRED_IN Unit: COUNT Statistic: SUM CONTACTS_TRANSFERRED_IN_FROM_QUEUE Unit: COUNT Statistic: SUM CONTACTS_TRANSFERRED_OUT Unit: COUNT Statistic: SUM CONTACTS_TRANSFERRED_OUT_FROM_QUEUE Unit: COUNT Statistic: SUM HANDLE_TIME Unit: SECONDS Statistic: AVG HOLD_TIME Unit: SECONDS Statistic: AVG INTERACTION_AND_HOLD_TIME Unit: SECONDS Statistic: AVG INTERACTION_TIME Unit: SECONDS Statistic: AVG OCCUPANCY Unit: PERCENT Statistic: AVG QUEUE_ANSWER_TIME Unit: SECONDS Statistic: AVG QUEUED_TIME Unit: SECONDS Statistic: MAX SERVICE_LEVEL You can include up to 20 SERVICE_LEVEL metrics in a request. Unit: PERCENT Statistic: AVG Threshold: For ThresholdValue, enter any whole number from 1 to 604800 (inclusive), in seconds. For Comparison, you must enter LT (for "Less than").
|
|
1827
1835
|
*/
|
|
1828
1836
|
HistoricalMetrics: HistoricalMetrics;
|
|
1829
1837
|
/**
|
|
@@ -2848,7 +2856,7 @@ declare namespace Connect {
|
|
|
2848
2856
|
*/
|
|
2849
2857
|
Channel: Channel;
|
|
2850
2858
|
/**
|
|
2851
|
-
* The number of contacts an agent can have on a channel simultaneously.
|
|
2859
|
+
* 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 5. Valid Range for TASK: Minimum value of 1. Maximum value of 10.
|
|
2852
2860
|
*/
|
|
2853
2861
|
Concurrency: Concurrency;
|
|
2854
2862
|
}
|
package/clients/ec2.d.ts
CHANGED
|
@@ -11904,7 +11904,7 @@ declare namespace EC2 {
|
|
|
11904
11904
|
*/
|
|
11905
11905
|
AvailabilityZone?: String;
|
|
11906
11906
|
/**
|
|
11907
|
-
* One or more filters. availability-zone - The Availability Zone where the Reserved Instance can be used. duration - The duration of the Reserved Instance (for example, one year or three years), in seconds (31536000 | 94608000). fixed-price - The purchase price of the Reserved Instance (for example, 9800.0). instance-type - The instance type that is covered by the reservation. marketplace - Set to true to show only Reserved Instance Marketplace offerings. When this filter is not used, which is the default behavior, all offerings from both AWS and the Reserved Instance Marketplace are listed. product-description - The Reserved Instance product platform description. Instances that include (Amazon VPC) in the product platform description will only be displayed to EC2-Classic account holders and are for use with Amazon VPC. (Linux/UNIX | Linux/UNIX (Amazon VPC) | SUSE Linux | SUSE Linux (Amazon VPC) | Red Hat Enterprise Linux | Red Hat Enterprise Linux (Amazon VPC) |
|
|
11907
|
+
* One or more filters. availability-zone - The Availability Zone where the Reserved Instance can be used. duration - The duration of the Reserved Instance (for example, one year or three years), in seconds (31536000 | 94608000). fixed-price - The purchase price of the Reserved Instance (for example, 9800.0). instance-type - The instance type that is covered by the reservation. marketplace - Set to true to show only Reserved Instance Marketplace offerings. When this filter is not used, which is the default behavior, all offerings from both AWS and the Reserved Instance Marketplace are listed. product-description - The Reserved Instance product platform description. Instances that include (Amazon VPC) in the product platform description will only be displayed to EC2-Classic account holders and are for use with Amazon VPC. (Linux/UNIX | Linux/UNIX (Amazon VPC) | SUSE Linux | SUSE Linux (Amazon VPC) | Red Hat Enterprise Linux | Red Hat Enterprise Linux (Amazon VPC) | Windows | Windows (Amazon VPC) | Windows with SQL Server Standard | Windows with SQL Server Standard (Amazon VPC) | Windows with SQL Server Web | Windows with SQL Server Web (Amazon VPC) | Windows with SQL Server Enterprise | Windows with SQL Server Enterprise (Amazon VPC)) reserved-instances-offering-id - The Reserved Instances offering ID. scope - The scope of the Reserved Instance (Availability Zone or Region). usage-price - The usage price of the Reserved Instance, per hour (for example, 0.84).
|
|
11908
11908
|
*/
|
|
11909
11909
|
Filters?: FilterList;
|
|
11910
11910
|
/**
|
|
@@ -11972,7 +11972,7 @@ declare namespace EC2 {
|
|
|
11972
11972
|
}
|
|
11973
11973
|
export interface DescribeReservedInstancesRequest {
|
|
11974
11974
|
/**
|
|
11975
|
-
* One or more filters. availability-zone - The Availability Zone where the Reserved Instance can be used. duration - The duration of the Reserved Instance (one year or three years), in seconds (31536000 | 94608000). end - The time when the Reserved Instance expires (for example, 2015-08-07T11:54:42.000Z). fixed-price - The purchase price of the Reserved Instance (for example, 9800.0). instance-type - The instance type that is covered by the reservation. scope - The scope of the Reserved Instance (Region or Availability Zone). product-description - The Reserved Instance product platform description. Instances that include (Amazon VPC) in the product platform description will only be displayed to EC2-Classic account holders and are for use with Amazon VPC (Linux/UNIX | Linux/UNIX (Amazon VPC) | SUSE Linux | SUSE Linux (Amazon VPC) | Red Hat Enterprise Linux | Red Hat Enterprise Linux (Amazon VPC) |
|
|
11975
|
+
* One or more filters. availability-zone - The Availability Zone where the Reserved Instance can be used. duration - The duration of the Reserved Instance (one year or three years), in seconds (31536000 | 94608000). end - The time when the Reserved Instance expires (for example, 2015-08-07T11:54:42.000Z). fixed-price - The purchase price of the Reserved Instance (for example, 9800.0). instance-type - The instance type that is covered by the reservation. scope - The scope of the Reserved Instance (Region or Availability Zone). product-description - The Reserved Instance product platform description. Instances that include (Amazon VPC) in the product platform description will only be displayed to EC2-Classic account holders and are for use with Amazon VPC (Linux/UNIX | Linux/UNIX (Amazon VPC) | SUSE Linux | SUSE Linux (Amazon VPC) | Red Hat Enterprise Linux | Red Hat Enterprise Linux (Amazon VPC) | Windows | Windows (Amazon VPC) | Windows with SQL Server Standard | Windows with SQL Server Standard (Amazon VPC) | Windows with SQL Server Web | Windows with SQL Server Web (Amazon VPC) | Windows with SQL Server Enterprise | Windows with SQL Server Enterprise (Amazon VPC)). reserved-instances-id - The ID of the Reserved Instance. start - The time at which the Reserved Instance purchase request was placed (for example, 2014-08-07T11:54:42.000Z). state - The state of the Reserved Instance (payment-pending | active | payment-failed | retired). tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value. tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value. usage-price - The usage price of the Reserved Instance, per hour (for example, 0.84).
|
|
11976
11976
|
*/
|
|
11977
11977
|
Filters?: FilterList;
|
|
11978
11978
|
/**
|
|
@@ -17892,7 +17892,7 @@ declare namespace EC2 {
|
|
|
17892
17892
|
*/
|
|
17893
17893
|
IncludeAllTagsOfInstance?: Boolean;
|
|
17894
17894
|
}
|
|
17895
|
-
export type InstanceType = "t1.micro"|"t2.nano"|"t2.micro"|"t2.small"|"t2.medium"|"t2.large"|"t2.xlarge"|"t2.2xlarge"|"t3.nano"|"t3.micro"|"t3.small"|"t3.medium"|"t3.large"|"t3.xlarge"|"t3.2xlarge"|"t3a.nano"|"t3a.micro"|"t3a.small"|"t3a.medium"|"t3a.large"|"t3a.xlarge"|"t3a.2xlarge"|"t4g.nano"|"t4g.micro"|"t4g.small"|"t4g.medium"|"t4g.large"|"t4g.xlarge"|"t4g.2xlarge"|"m1.small"|"m1.medium"|"m1.large"|"m1.xlarge"|"m3.medium"|"m3.large"|"m3.xlarge"|"m3.2xlarge"|"m4.large"|"m4.xlarge"|"m4.2xlarge"|"m4.4xlarge"|"m4.10xlarge"|"m4.16xlarge"|"m2.xlarge"|"m2.2xlarge"|"m2.4xlarge"|"cr1.8xlarge"|"r3.large"|"r3.xlarge"|"r3.2xlarge"|"r3.4xlarge"|"r3.8xlarge"|"r4.large"|"r4.xlarge"|"r4.2xlarge"|"r4.4xlarge"|"r4.8xlarge"|"r4.16xlarge"|"r5.large"|"r5.xlarge"|"r5.2xlarge"|"r5.4xlarge"|"r5.8xlarge"|"r5.12xlarge"|"r5.16xlarge"|"r5.24xlarge"|"r5.metal"|"r5a.large"|"r5a.xlarge"|"r5a.2xlarge"|"r5a.4xlarge"|"r5a.8xlarge"|"r5a.12xlarge"|"r5a.16xlarge"|"r5a.24xlarge"|"r5b.large"|"r5b.xlarge"|"r5b.2xlarge"|"r5b.4xlarge"|"r5b.8xlarge"|"r5b.12xlarge"|"r5b.16xlarge"|"r5b.24xlarge"|"r5b.metal"|"r5d.large"|"r5d.xlarge"|"r5d.2xlarge"|"r5d.4xlarge"|"r5d.8xlarge"|"r5d.12xlarge"|"r5d.16xlarge"|"r5d.24xlarge"|"r5d.metal"|"r5ad.large"|"r5ad.xlarge"|"r5ad.2xlarge"|"r5ad.4xlarge"|"r5ad.8xlarge"|"r5ad.12xlarge"|"r5ad.16xlarge"|"r5ad.24xlarge"|"r6g.metal"|"r6g.medium"|"r6g.large"|"r6g.xlarge"|"r6g.2xlarge"|"r6g.4xlarge"|"r6g.8xlarge"|"r6g.12xlarge"|"r6g.16xlarge"|"r6gd.metal"|"r6gd.medium"|"r6gd.large"|"r6gd.xlarge"|"r6gd.2xlarge"|"r6gd.4xlarge"|"r6gd.8xlarge"|"r6gd.12xlarge"|"r6gd.16xlarge"|"x1.16xlarge"|"x1.32xlarge"|"x1e.xlarge"|"x1e.2xlarge"|"x1e.4xlarge"|"x1e.8xlarge"|"x1e.16xlarge"|"x1e.32xlarge"|"i2.xlarge"|"i2.2xlarge"|"i2.4xlarge"|"i2.8xlarge"|"i3.large"|"i3.xlarge"|"i3.2xlarge"|"i3.4xlarge"|"i3.8xlarge"|"i3.16xlarge"|"i3.metal"|"i3en.large"|"i3en.xlarge"|"i3en.2xlarge"|"i3en.3xlarge"|"i3en.6xlarge"|"i3en.12xlarge"|"i3en.24xlarge"|"i3en.metal"|"hi1.4xlarge"|"hs1.8xlarge"|"c1.medium"|"c1.xlarge"|"c3.large"|"c3.xlarge"|"c3.2xlarge"|"c3.4xlarge"|"c3.8xlarge"|"c4.large"|"c4.xlarge"|"c4.2xlarge"|"c4.4xlarge"|"c4.8xlarge"|"c5.large"|"c5.xlarge"|"c5.2xlarge"|"c5.4xlarge"|"c5.9xlarge"|"c5.12xlarge"|"c5.18xlarge"|"c5.24xlarge"|"c5.metal"|"c5a.large"|"c5a.xlarge"|"c5a.2xlarge"|"c5a.4xlarge"|"c5a.8xlarge"|"c5a.12xlarge"|"c5a.16xlarge"|"c5a.24xlarge"|"c5ad.large"|"c5ad.xlarge"|"c5ad.2xlarge"|"c5ad.4xlarge"|"c5ad.8xlarge"|"c5ad.12xlarge"|"c5ad.16xlarge"|"c5ad.24xlarge"|"c5d.large"|"c5d.xlarge"|"c5d.2xlarge"|"c5d.4xlarge"|"c5d.9xlarge"|"c5d.12xlarge"|"c5d.18xlarge"|"c5d.24xlarge"|"c5d.metal"|"c5n.large"|"c5n.xlarge"|"c5n.2xlarge"|"c5n.4xlarge"|"c5n.9xlarge"|"c5n.18xlarge"|"c5n.metal"|"c6g.metal"|"c6g.medium"|"c6g.large"|"c6g.xlarge"|"c6g.2xlarge"|"c6g.4xlarge"|"c6g.8xlarge"|"c6g.12xlarge"|"c6g.16xlarge"|"c6gd.metal"|"c6gd.medium"|"c6gd.large"|"c6gd.xlarge"|"c6gd.2xlarge"|"c6gd.4xlarge"|"c6gd.8xlarge"|"c6gd.12xlarge"|"c6gd.16xlarge"|"c6gn.medium"|"c6gn.large"|"c6gn.xlarge"|"c6gn.2xlarge"|"c6gn.4xlarge"|"c6gn.8xlarge"|"c6gn.12xlarge"|"c6gn.16xlarge"|"cc1.4xlarge"|"cc2.8xlarge"|"g2.2xlarge"|"g2.8xlarge"|"g3.4xlarge"|"g3.8xlarge"|"g3.16xlarge"|"g3s.xlarge"|"g4ad.4xlarge"|"g4ad.8xlarge"|"g4ad.16xlarge"|"g4dn.xlarge"|"g4dn.2xlarge"|"g4dn.4xlarge"|"g4dn.8xlarge"|"g4dn.12xlarge"|"g4dn.16xlarge"|"g4dn.metal"|"cg1.4xlarge"|"p2.xlarge"|"p2.8xlarge"|"p2.16xlarge"|"p3.2xlarge"|"p3.8xlarge"|"p3.16xlarge"|"p3dn.24xlarge"|"p4d.24xlarge"|"d2.xlarge"|"d2.2xlarge"|"d2.4xlarge"|"d2.8xlarge"|"d3.xlarge"|"d3.2xlarge"|"d3.4xlarge"|"d3.8xlarge"|"d3en.xlarge"|"d3en.2xlarge"|"d3en.4xlarge"|"d3en.6xlarge"|"d3en.8xlarge"|"d3en.12xlarge"|"f1.2xlarge"|"f1.4xlarge"|"f1.16xlarge"|"m5.large"|"m5.xlarge"|"m5.2xlarge"|"m5.4xlarge"|"m5.8xlarge"|"m5.12xlarge"|"m5.16xlarge"|"m5.24xlarge"|"m5.metal"|"m5a.large"|"m5a.xlarge"|"m5a.2xlarge"|"m5a.4xlarge"|"m5a.8xlarge"|"m5a.12xlarge"|"m5a.16xlarge"|"m5a.24xlarge"|"m5d.large"|"m5d.xlarge"|"m5d.2xlarge"|"m5d.4xlarge"|"m5d.8xlarge"|"m5d.12xlarge"|"m5d.16xlarge"|"m5d.24xlarge"|"m5d.metal"|"m5ad.large"|"m5ad.xlarge"|"m5ad.2xlarge"|"m5ad.4xlarge"|"m5ad.8xlarge"|"m5ad.12xlarge"|"m5ad.16xlarge"|"m5ad.24xlarge"|"m5zn.large"|"m5zn.xlarge"|"m5zn.2xlarge"|"m5zn.3xlarge"|"m5zn.6xlarge"|"m5zn.12xlarge"|"m5zn.metal"|"h1.2xlarge"|"h1.4xlarge"|"h1.8xlarge"|"h1.16xlarge"|"z1d.large"|"z1d.xlarge"|"z1d.2xlarge"|"z1d.3xlarge"|"z1d.6xlarge"|"z1d.12xlarge"|"z1d.metal"|"u-6tb1.metal"|"u-9tb1.metal"|"u-12tb1.metal"|"u-18tb1.metal"|"u-24tb1.metal"|"a1.medium"|"a1.large"|"a1.xlarge"|"a1.2xlarge"|"a1.4xlarge"|"a1.metal"|"m5dn.large"|"m5dn.xlarge"|"m5dn.2xlarge"|"m5dn.4xlarge"|"m5dn.8xlarge"|"m5dn.12xlarge"|"m5dn.16xlarge"|"m5dn.24xlarge"|"m5n.large"|"m5n.xlarge"|"m5n.2xlarge"|"m5n.4xlarge"|"m5n.8xlarge"|"m5n.12xlarge"|"m5n.16xlarge"|"m5n.24xlarge"|"r5dn.large"|"r5dn.xlarge"|"r5dn.2xlarge"|"r5dn.4xlarge"|"r5dn.8xlarge"|"r5dn.12xlarge"|"r5dn.16xlarge"|"r5dn.24xlarge"|"r5n.large"|"r5n.xlarge"|"r5n.2xlarge"|"r5n.4xlarge"|"r5n.8xlarge"|"r5n.12xlarge"|"r5n.16xlarge"|"r5n.24xlarge"|"inf1.xlarge"|"inf1.2xlarge"|"inf1.6xlarge"|"inf1.24xlarge"|"m6g.metal"|"m6g.medium"|"m6g.large"|"m6g.xlarge"|"m6g.2xlarge"|"m6g.4xlarge"|"m6g.8xlarge"|"m6g.12xlarge"|"m6g.16xlarge"|"m6gd.metal"|"m6gd.medium"|"m6gd.large"|"m6gd.xlarge"|"m6gd.2xlarge"|"m6gd.4xlarge"|"m6gd.8xlarge"|"m6gd.12xlarge"|"m6gd.16xlarge"|"mac1.metal"|"x2gd.medium"|"x2gd.large"|"x2gd.xlarge"|"x2gd.2xlarge"|"x2gd.4xlarge"|"x2gd.8xlarge"|"x2gd.12xlarge"|"x2gd.16xlarge"|"x2gd.metal"|string;
|
|
17895
|
+
export type InstanceType = "t1.micro"|"t2.nano"|"t2.micro"|"t2.small"|"t2.medium"|"t2.large"|"t2.xlarge"|"t2.2xlarge"|"t3.nano"|"t3.micro"|"t3.small"|"t3.medium"|"t3.large"|"t3.xlarge"|"t3.2xlarge"|"t3a.nano"|"t3a.micro"|"t3a.small"|"t3a.medium"|"t3a.large"|"t3a.xlarge"|"t3a.2xlarge"|"t4g.nano"|"t4g.micro"|"t4g.small"|"t4g.medium"|"t4g.large"|"t4g.xlarge"|"t4g.2xlarge"|"m1.small"|"m1.medium"|"m1.large"|"m1.xlarge"|"m3.medium"|"m3.large"|"m3.xlarge"|"m3.2xlarge"|"m4.large"|"m4.xlarge"|"m4.2xlarge"|"m4.4xlarge"|"m4.10xlarge"|"m4.16xlarge"|"m2.xlarge"|"m2.2xlarge"|"m2.4xlarge"|"cr1.8xlarge"|"r3.large"|"r3.xlarge"|"r3.2xlarge"|"r3.4xlarge"|"r3.8xlarge"|"r4.large"|"r4.xlarge"|"r4.2xlarge"|"r4.4xlarge"|"r4.8xlarge"|"r4.16xlarge"|"r5.large"|"r5.xlarge"|"r5.2xlarge"|"r5.4xlarge"|"r5.8xlarge"|"r5.12xlarge"|"r5.16xlarge"|"r5.24xlarge"|"r5.metal"|"r5a.large"|"r5a.xlarge"|"r5a.2xlarge"|"r5a.4xlarge"|"r5a.8xlarge"|"r5a.12xlarge"|"r5a.16xlarge"|"r5a.24xlarge"|"r5b.large"|"r5b.xlarge"|"r5b.2xlarge"|"r5b.4xlarge"|"r5b.8xlarge"|"r5b.12xlarge"|"r5b.16xlarge"|"r5b.24xlarge"|"r5b.metal"|"r5d.large"|"r5d.xlarge"|"r5d.2xlarge"|"r5d.4xlarge"|"r5d.8xlarge"|"r5d.12xlarge"|"r5d.16xlarge"|"r5d.24xlarge"|"r5d.metal"|"r5ad.large"|"r5ad.xlarge"|"r5ad.2xlarge"|"r5ad.4xlarge"|"r5ad.8xlarge"|"r5ad.12xlarge"|"r5ad.16xlarge"|"r5ad.24xlarge"|"r6g.metal"|"r6g.medium"|"r6g.large"|"r6g.xlarge"|"r6g.2xlarge"|"r6g.4xlarge"|"r6g.8xlarge"|"r6g.12xlarge"|"r6g.16xlarge"|"r6gd.metal"|"r6gd.medium"|"r6gd.large"|"r6gd.xlarge"|"r6gd.2xlarge"|"r6gd.4xlarge"|"r6gd.8xlarge"|"r6gd.12xlarge"|"r6gd.16xlarge"|"x1.16xlarge"|"x1.32xlarge"|"x1e.xlarge"|"x1e.2xlarge"|"x1e.4xlarge"|"x1e.8xlarge"|"x1e.16xlarge"|"x1e.32xlarge"|"i2.xlarge"|"i2.2xlarge"|"i2.4xlarge"|"i2.8xlarge"|"i3.large"|"i3.xlarge"|"i3.2xlarge"|"i3.4xlarge"|"i3.8xlarge"|"i3.16xlarge"|"i3.metal"|"i3en.large"|"i3en.xlarge"|"i3en.2xlarge"|"i3en.3xlarge"|"i3en.6xlarge"|"i3en.12xlarge"|"i3en.24xlarge"|"i3en.metal"|"hi1.4xlarge"|"hs1.8xlarge"|"c1.medium"|"c1.xlarge"|"c3.large"|"c3.xlarge"|"c3.2xlarge"|"c3.4xlarge"|"c3.8xlarge"|"c4.large"|"c4.xlarge"|"c4.2xlarge"|"c4.4xlarge"|"c4.8xlarge"|"c5.large"|"c5.xlarge"|"c5.2xlarge"|"c5.4xlarge"|"c5.9xlarge"|"c5.12xlarge"|"c5.18xlarge"|"c5.24xlarge"|"c5.metal"|"c5a.large"|"c5a.xlarge"|"c5a.2xlarge"|"c5a.4xlarge"|"c5a.8xlarge"|"c5a.12xlarge"|"c5a.16xlarge"|"c5a.24xlarge"|"c5ad.large"|"c5ad.xlarge"|"c5ad.2xlarge"|"c5ad.4xlarge"|"c5ad.8xlarge"|"c5ad.12xlarge"|"c5ad.16xlarge"|"c5ad.24xlarge"|"c5d.large"|"c5d.xlarge"|"c5d.2xlarge"|"c5d.4xlarge"|"c5d.9xlarge"|"c5d.12xlarge"|"c5d.18xlarge"|"c5d.24xlarge"|"c5d.metal"|"c5n.large"|"c5n.xlarge"|"c5n.2xlarge"|"c5n.4xlarge"|"c5n.9xlarge"|"c5n.18xlarge"|"c5n.metal"|"c6g.metal"|"c6g.medium"|"c6g.large"|"c6g.xlarge"|"c6g.2xlarge"|"c6g.4xlarge"|"c6g.8xlarge"|"c6g.12xlarge"|"c6g.16xlarge"|"c6gd.metal"|"c6gd.medium"|"c6gd.large"|"c6gd.xlarge"|"c6gd.2xlarge"|"c6gd.4xlarge"|"c6gd.8xlarge"|"c6gd.12xlarge"|"c6gd.16xlarge"|"c6gn.medium"|"c6gn.large"|"c6gn.xlarge"|"c6gn.2xlarge"|"c6gn.4xlarge"|"c6gn.8xlarge"|"c6gn.12xlarge"|"c6gn.16xlarge"|"cc1.4xlarge"|"cc2.8xlarge"|"g2.2xlarge"|"g2.8xlarge"|"g3.4xlarge"|"g3.8xlarge"|"g3.16xlarge"|"g3s.xlarge"|"g4ad.4xlarge"|"g4ad.8xlarge"|"g4ad.16xlarge"|"g4dn.xlarge"|"g4dn.2xlarge"|"g4dn.4xlarge"|"g4dn.8xlarge"|"g4dn.12xlarge"|"g4dn.16xlarge"|"g4dn.metal"|"cg1.4xlarge"|"p2.xlarge"|"p2.8xlarge"|"p2.16xlarge"|"p3.2xlarge"|"p3.8xlarge"|"p3.16xlarge"|"p3dn.24xlarge"|"p4d.24xlarge"|"d2.xlarge"|"d2.2xlarge"|"d2.4xlarge"|"d2.8xlarge"|"d3.xlarge"|"d3.2xlarge"|"d3.4xlarge"|"d3.8xlarge"|"d3en.xlarge"|"d3en.2xlarge"|"d3en.4xlarge"|"d3en.6xlarge"|"d3en.8xlarge"|"d3en.12xlarge"|"f1.2xlarge"|"f1.4xlarge"|"f1.16xlarge"|"m5.large"|"m5.xlarge"|"m5.2xlarge"|"m5.4xlarge"|"m5.8xlarge"|"m5.12xlarge"|"m5.16xlarge"|"m5.24xlarge"|"m5.metal"|"m5a.large"|"m5a.xlarge"|"m5a.2xlarge"|"m5a.4xlarge"|"m5a.8xlarge"|"m5a.12xlarge"|"m5a.16xlarge"|"m5a.24xlarge"|"m5d.large"|"m5d.xlarge"|"m5d.2xlarge"|"m5d.4xlarge"|"m5d.8xlarge"|"m5d.12xlarge"|"m5d.16xlarge"|"m5d.24xlarge"|"m5d.metal"|"m5ad.large"|"m5ad.xlarge"|"m5ad.2xlarge"|"m5ad.4xlarge"|"m5ad.8xlarge"|"m5ad.12xlarge"|"m5ad.16xlarge"|"m5ad.24xlarge"|"m5zn.large"|"m5zn.xlarge"|"m5zn.2xlarge"|"m5zn.3xlarge"|"m5zn.6xlarge"|"m5zn.12xlarge"|"m5zn.metal"|"h1.2xlarge"|"h1.4xlarge"|"h1.8xlarge"|"h1.16xlarge"|"z1d.large"|"z1d.xlarge"|"z1d.2xlarge"|"z1d.3xlarge"|"z1d.6xlarge"|"z1d.12xlarge"|"z1d.metal"|"u-6tb1.56xlarge"|"u-6tb1.112xlarge"|"u-9tb1.112xlarge"|"u-12tb1.112xlarge"|"u-6tb1.metal"|"u-9tb1.metal"|"u-12tb1.metal"|"u-18tb1.metal"|"u-24tb1.metal"|"a1.medium"|"a1.large"|"a1.xlarge"|"a1.2xlarge"|"a1.4xlarge"|"a1.metal"|"m5dn.large"|"m5dn.xlarge"|"m5dn.2xlarge"|"m5dn.4xlarge"|"m5dn.8xlarge"|"m5dn.12xlarge"|"m5dn.16xlarge"|"m5dn.24xlarge"|"m5n.large"|"m5n.xlarge"|"m5n.2xlarge"|"m5n.4xlarge"|"m5n.8xlarge"|"m5n.12xlarge"|"m5n.16xlarge"|"m5n.24xlarge"|"r5dn.large"|"r5dn.xlarge"|"r5dn.2xlarge"|"r5dn.4xlarge"|"r5dn.8xlarge"|"r5dn.12xlarge"|"r5dn.16xlarge"|"r5dn.24xlarge"|"r5n.large"|"r5n.xlarge"|"r5n.2xlarge"|"r5n.4xlarge"|"r5n.8xlarge"|"r5n.12xlarge"|"r5n.16xlarge"|"r5n.24xlarge"|"inf1.xlarge"|"inf1.2xlarge"|"inf1.6xlarge"|"inf1.24xlarge"|"m6g.metal"|"m6g.medium"|"m6g.large"|"m6g.xlarge"|"m6g.2xlarge"|"m6g.4xlarge"|"m6g.8xlarge"|"m6g.12xlarge"|"m6g.16xlarge"|"m6gd.metal"|"m6gd.medium"|"m6gd.large"|"m6gd.xlarge"|"m6gd.2xlarge"|"m6gd.4xlarge"|"m6gd.8xlarge"|"m6gd.12xlarge"|"m6gd.16xlarge"|"mac1.metal"|"x2gd.medium"|"x2gd.large"|"x2gd.xlarge"|"x2gd.2xlarge"|"x2gd.4xlarge"|"x2gd.8xlarge"|"x2gd.12xlarge"|"x2gd.16xlarge"|"x2gd.metal"|string;
|
|
17896
17896
|
export type InstanceTypeHypervisor = "nitro"|"xen"|string;
|
|
17897
17897
|
export interface InstanceTypeInfo {
|
|
17898
17898
|
/**
|