cdk-comprehend-s3olap 2.0.158 → 2.0.160
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/.jsii +3 -3
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +19 -1
- package/node_modules/aws-sdk/README.md +3 -4
- package/node_modules/aws-sdk/apis/athena-2017-05-18.min.json +0 -3
- package/node_modules/aws-sdk/apis/backup-2018-11-15.min.json +4 -1
- package/node_modules/aws-sdk/apis/compute-optimizer-2019-11-01.min.json +17 -10
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +371 -214
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +347 -336
- package/node_modules/aws-sdk/apis/mediapackagev2-2022-12-25.examples.json +5 -0
- package/node_modules/aws-sdk/apis/mediapackagev2-2022-12-25.min.json +1346 -0
- package/node_modules/aws-sdk/apis/mediapackagev2-2022-12-25.paginators.json +22 -0
- package/node_modules/aws-sdk/apis/mediapackagev2-2022-12-25.waiters2.json +5 -0
- package/node_modules/aws-sdk/apis/metadata.json +3 -0
- package/node_modules/aws-sdk/apis/sagemaker-geospatial-2020-05-27.min.json +67 -89
- package/node_modules/aws-sdk/apis/sesv2-2019-09-27.examples.json +19 -0
- package/node_modules/aws-sdk/apis/sesv2-2019-09-27.min.json +38 -13
- package/node_modules/aws-sdk/apis/sts-2011-06-15.min.json +12 -3
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/athena.d.ts +0 -4
- package/node_modules/aws-sdk/clients/backup.d.ts +16 -4
- package/node_modules/aws-sdk/clients/cloudtrail.d.ts +11 -11
- package/node_modules/aws-sdk/clients/computeoptimizer.d.ts +17 -1
- package/node_modules/aws-sdk/clients/connect.d.ts +171 -0
- package/node_modules/aws-sdk/clients/connectcases.d.ts +1 -1
- package/node_modules/aws-sdk/clients/ec2.d.ts +7 -6
- package/node_modules/aws-sdk/clients/ecs.d.ts +2 -2
- package/node_modules/aws-sdk/clients/mediaconvert.d.ts +9 -9
- package/node_modules/aws-sdk/clients/mediapackagev2.d.ts +1363 -0
- package/node_modules/aws-sdk/clients/mediapackagev2.js +19 -0
- package/node_modules/aws-sdk/clients/rds.d.ts +1 -1
- package/node_modules/aws-sdk/clients/sagemakergeospatial.d.ts +2 -31
- package/node_modules/aws-sdk/clients/sesv2.d.ts +24 -4
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +41 -4
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +115 -16
- package/node_modules/aws-sdk/dist/aws-sdk.js +780 -561
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +83 -83
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/protocol/json.js +19 -0
- package/node_modules/aws-sdk/lib/region_config_data.json +6 -1
- package/node_modules/aws-sdk/lib/util.js +19 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +4 -4
@@ -171,6 +171,14 @@ declare class Connect extends Service {
|
|
171
171
|
* Adds a new participant into an on-going chat contact. For more information, see Customize chat flow experiences by integrating custom participants.
|
172
172
|
*/
|
173
173
|
createParticipant(callback?: (err: AWSError, data: Connect.Types.CreateParticipantResponse) => void): Request<Connect.Types.CreateParticipantResponse, AWSError>;
|
174
|
+
/**
|
175
|
+
* Creates a prompt. For more information about prompts, such as supported file types and maximum length, see Create prompts in the Amazon Connect Administrator's Guide.
|
176
|
+
*/
|
177
|
+
createPrompt(params: Connect.Types.CreatePromptRequest, callback?: (err: AWSError, data: Connect.Types.CreatePromptResponse) => void): Request<Connect.Types.CreatePromptResponse, AWSError>;
|
178
|
+
/**
|
179
|
+
* Creates a prompt. For more information about prompts, such as supported file types and maximum length, see Create prompts in the Amazon Connect Administrator's Guide.
|
180
|
+
*/
|
181
|
+
createPrompt(callback?: (err: AWSError, data: Connect.Types.CreatePromptResponse) => void): Request<Connect.Types.CreatePromptResponse, AWSError>;
|
174
182
|
/**
|
175
183
|
* This API is in preview release for Amazon Connect and is subject to change. Creates a new queue for the specified Amazon Connect instance. If the number being used in the input is claimed to a traffic distribution group, and you are calling this API using an instance in the Amazon Web Services Region where the traffic distribution group was created, you can use either a full phone number ARN or UUID value for the OutboundCallerIdNumberId value of the OutboundCallerConfig request body parameter. However, if the number is claimed to a traffic distribution group and you are calling this API using an instance in the alternate Amazon Web Services Region associated with the traffic distribution group, you must provide a full phone number ARN. If a UUID is provided in this scenario, you will receive a ResourceNotFoundException.
|
176
184
|
*/
|
@@ -323,6 +331,14 @@ declare class Connect extends Service {
|
|
323
331
|
* Deletes an Amazon Web Services resource association from an Amazon Connect instance. The association must not have any use cases associated with it.
|
324
332
|
*/
|
325
333
|
deleteIntegrationAssociation(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
334
|
+
/**
|
335
|
+
* Deletes a prompt.
|
336
|
+
*/
|
337
|
+
deletePrompt(params: Connect.Types.DeletePromptRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
338
|
+
/**
|
339
|
+
* Deletes a prompt.
|
340
|
+
*/
|
341
|
+
deletePrompt(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
326
342
|
/**
|
327
343
|
* Deletes a quick connect.
|
328
344
|
*/
|
@@ -483,6 +499,14 @@ declare class Connect extends Service {
|
|
483
499
|
* Gets details and status of a phone number that’s claimed to your Amazon Connect instance or traffic distribution group. If the number is claimed to a traffic distribution group, and you are calling in the Amazon Web Services Region where the traffic distribution group was created, you can use either a phone number ARN or UUID value for the PhoneNumberId URI request parameter. However, if the number is claimed to a traffic distribution group and you are calling this API in the alternate Amazon Web Services Region associated with the traffic distribution group, you must provide a full phone number ARN. If a UUID is provided in this scenario, you will receive a ResourceNotFoundException.
|
484
500
|
*/
|
485
501
|
describePhoneNumber(callback?: (err: AWSError, data: Connect.Types.DescribePhoneNumberResponse) => void): Request<Connect.Types.DescribePhoneNumberResponse, AWSError>;
|
502
|
+
/**
|
503
|
+
* Describes the prompt.
|
504
|
+
*/
|
505
|
+
describePrompt(params: Connect.Types.DescribePromptRequest, callback?: (err: AWSError, data: Connect.Types.DescribePromptResponse) => void): Request<Connect.Types.DescribePromptResponse, AWSError>;
|
506
|
+
/**
|
507
|
+
* Describes the prompt.
|
508
|
+
*/
|
509
|
+
describePrompt(callback?: (err: AWSError, data: Connect.Types.DescribePromptResponse) => void): Request<Connect.Types.DescribePromptResponse, AWSError>;
|
486
510
|
/**
|
487
511
|
* This API is in preview release for Amazon Connect and is subject to change. Describes the specified queue.
|
488
512
|
*/
|
@@ -691,6 +715,14 @@ declare class Connect extends Service {
|
|
691
715
|
* 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 the last 35 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.
|
692
716
|
*/
|
693
717
|
getMetricDataV2(callback?: (err: AWSError, data: Connect.Types.GetMetricDataV2Response) => void): Request<Connect.Types.GetMetricDataV2Response, AWSError>;
|
718
|
+
/**
|
719
|
+
* Gets the prompt file.
|
720
|
+
*/
|
721
|
+
getPromptFile(params: Connect.Types.GetPromptFileRequest, callback?: (err: AWSError, data: Connect.Types.GetPromptFileResponse) => void): Request<Connect.Types.GetPromptFileResponse, AWSError>;
|
722
|
+
/**
|
723
|
+
* Gets the prompt file.
|
724
|
+
*/
|
725
|
+
getPromptFile(callback?: (err: AWSError, data: Connect.Types.GetPromptFileResponse) => void): Request<Connect.Types.GetPromptFileResponse, AWSError>;
|
694
726
|
/**
|
695
727
|
* Gets details about a specific task template in the specified Amazon Connect instance.
|
696
728
|
*/
|
@@ -1315,6 +1347,14 @@ declare class Connect extends Service {
|
|
1315
1347
|
* Updates your claimed phone number from its current Amazon Connect instance or traffic distribution group to another Amazon Connect instance or traffic distribution group in the same Amazon Web Services Region. After using this API, you must verify that the phone number is attached to the correct flow in the target instance or traffic distribution group. You need to do this because the API switches only the phone number to a new instance or traffic distribution group. It doesn't migrate the flow configuration of the phone number, too. You can call DescribePhoneNumber API to verify the status of a previous UpdatePhoneNumber operation.
|
1316
1348
|
*/
|
1317
1349
|
updatePhoneNumber(callback?: (err: AWSError, data: Connect.Types.UpdatePhoneNumberResponse) => void): Request<Connect.Types.UpdatePhoneNumberResponse, AWSError>;
|
1350
|
+
/**
|
1351
|
+
* Updates a prompt.
|
1352
|
+
*/
|
1353
|
+
updatePrompt(params: Connect.Types.UpdatePromptRequest, callback?: (err: AWSError, data: Connect.Types.UpdatePromptResponse) => void): Request<Connect.Types.UpdatePromptResponse, AWSError>;
|
1354
|
+
/**
|
1355
|
+
* Updates a prompt.
|
1356
|
+
*/
|
1357
|
+
updatePrompt(callback?: (err: AWSError, data: Connect.Types.UpdatePromptResponse) => void): Request<Connect.Types.UpdatePromptResponse, AWSError>;
|
1318
1358
|
/**
|
1319
1359
|
* This API is in preview release for Amazon Connect and is subject to change. Updates the hours of operation for the specified queue.
|
1320
1360
|
*/
|
@@ -2453,6 +2493,38 @@ declare namespace Connect {
|
|
2453
2493
|
*/
|
2454
2494
|
ParticipantId?: ParticipantId;
|
2455
2495
|
}
|
2496
|
+
export interface CreatePromptRequest {
|
2497
|
+
/**
|
2498
|
+
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
2499
|
+
*/
|
2500
|
+
InstanceId: InstanceId;
|
2501
|
+
/**
|
2502
|
+
* The name of the prompt.
|
2503
|
+
*/
|
2504
|
+
Name: CommonNameLength127;
|
2505
|
+
/**
|
2506
|
+
* The description of the prompt.
|
2507
|
+
*/
|
2508
|
+
Description?: PromptDescription;
|
2509
|
+
/**
|
2510
|
+
* The URI for the S3 bucket where the prompt is stored.
|
2511
|
+
*/
|
2512
|
+
S3Uri: S3Uri;
|
2513
|
+
/**
|
2514
|
+
* The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.
|
2515
|
+
*/
|
2516
|
+
Tags?: TagMap;
|
2517
|
+
}
|
2518
|
+
export interface CreatePromptResponse {
|
2519
|
+
/**
|
2520
|
+
* The Amazon Resource Name (ARN) of the prompt.
|
2521
|
+
*/
|
2522
|
+
PromptARN?: ARN;
|
2523
|
+
/**
|
2524
|
+
* A unique identifier for the prompt.
|
2525
|
+
*/
|
2526
|
+
PromptId?: PromptId;
|
2527
|
+
}
|
2456
2528
|
export interface CreateQueueRequest {
|
2457
2529
|
/**
|
2458
2530
|
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
@@ -3076,6 +3148,16 @@ declare namespace Connect {
|
|
3076
3148
|
*/
|
3077
3149
|
IntegrationAssociationId: IntegrationAssociationId;
|
3078
3150
|
}
|
3151
|
+
export interface DeletePromptRequest {
|
3152
|
+
/**
|
3153
|
+
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
3154
|
+
*/
|
3155
|
+
InstanceId: InstanceId;
|
3156
|
+
/**
|
3157
|
+
* A unique identifier for the prompt.
|
3158
|
+
*/
|
3159
|
+
PromptId: PromptId;
|
3160
|
+
}
|
3079
3161
|
export interface DeleteQuickConnectRequest {
|
3080
3162
|
/**
|
3081
3163
|
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
@@ -3364,6 +3446,22 @@ declare namespace Connect {
|
|
3364
3446
|
*/
|
3365
3447
|
ClaimedPhoneNumberSummary?: ClaimedPhoneNumberSummary;
|
3366
3448
|
}
|
3449
|
+
export interface DescribePromptRequest {
|
3450
|
+
/**
|
3451
|
+
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
3452
|
+
*/
|
3453
|
+
InstanceId: InstanceId;
|
3454
|
+
/**
|
3455
|
+
* A unique identifier for the prompt.
|
3456
|
+
*/
|
3457
|
+
PromptId: PromptId;
|
3458
|
+
}
|
3459
|
+
export interface DescribePromptResponse {
|
3460
|
+
/**
|
3461
|
+
* Information about the prompt.
|
3462
|
+
*/
|
3463
|
+
Prompt?: Prompt;
|
3464
|
+
}
|
3367
3465
|
export interface DescribeQueueRequest {
|
3368
3466
|
/**
|
3369
3467
|
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
@@ -4459,6 +4557,22 @@ declare namespace Connect {
|
|
4459
4557
|
*/
|
4460
4558
|
MetricResults?: MetricResultsV2;
|
4461
4559
|
}
|
4560
|
+
export interface GetPromptFileRequest {
|
4561
|
+
/**
|
4562
|
+
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
4563
|
+
*/
|
4564
|
+
InstanceId: InstanceId;
|
4565
|
+
/**
|
4566
|
+
* A unique identifier for the prompt.
|
4567
|
+
*/
|
4568
|
+
PromptId: PromptId;
|
4569
|
+
}
|
4570
|
+
export interface GetPromptFileResponse {
|
4571
|
+
/**
|
4572
|
+
* A generated URL to the prompt that can be given to an unauthorized user so they can access the prompt in S3.
|
4573
|
+
*/
|
4574
|
+
PromptPresignedUrl?: PromptPresignedUrl;
|
4575
|
+
}
|
4462
4576
|
export interface GetTaskTemplateRequest {
|
4463
4577
|
/**
|
4464
4578
|
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
@@ -6295,8 +6409,32 @@ declare namespace Connect {
|
|
6295
6409
|
export type PhoneType = "SOFT_PHONE"|"DESK_PHONE"|string;
|
6296
6410
|
export type Prefix = string;
|
6297
6411
|
export type Priority = number;
|
6412
|
+
export interface Prompt {
|
6413
|
+
/**
|
6414
|
+
* The Amazon Resource Name (ARN) of the prompt.
|
6415
|
+
*/
|
6416
|
+
PromptARN?: ARN;
|
6417
|
+
/**
|
6418
|
+
* A unique identifier for the prompt.
|
6419
|
+
*/
|
6420
|
+
PromptId?: PromptId;
|
6421
|
+
/**
|
6422
|
+
* The name of the prompt.
|
6423
|
+
*/
|
6424
|
+
Name?: CommonNameLength127;
|
6425
|
+
/**
|
6426
|
+
* A description for the prompt.
|
6427
|
+
*/
|
6428
|
+
Description?: PromptDescription;
|
6429
|
+
/**
|
6430
|
+
* The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.
|
6431
|
+
*/
|
6432
|
+
Tags?: TagMap;
|
6433
|
+
}
|
6434
|
+
export type PromptDescription = string;
|
6298
6435
|
export type PromptId = string;
|
6299
6436
|
export type PromptName = string;
|
6437
|
+
export type PromptPresignedUrl = string;
|
6300
6438
|
export interface PromptSummary {
|
6301
6439
|
/**
|
6302
6440
|
* The identifier of the prompt.
|
@@ -6898,6 +7036,7 @@ declare namespace Connect {
|
|
6898
7036
|
*/
|
6899
7037
|
EncryptionConfig?: EncryptionConfig;
|
6900
7038
|
}
|
7039
|
+
export type S3Uri = string;
|
6901
7040
|
export interface SearchAvailablePhoneNumbersRequest {
|
6902
7041
|
/**
|
6903
7042
|
* The Amazon Resource Name (ARN) for Amazon Connect instances or traffic distribution groups that phone numbers are claimed to.
|
@@ -8276,6 +8415,38 @@ declare namespace Connect {
|
|
8276
8415
|
*/
|
8277
8416
|
PhoneNumberArn?: ARN;
|
8278
8417
|
}
|
8418
|
+
export interface UpdatePromptRequest {
|
8419
|
+
/**
|
8420
|
+
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
8421
|
+
*/
|
8422
|
+
InstanceId: InstanceId;
|
8423
|
+
/**
|
8424
|
+
* A unique identifier for the prompt.
|
8425
|
+
*/
|
8426
|
+
PromptId: PromptId;
|
8427
|
+
/**
|
8428
|
+
* The name of the prompt.
|
8429
|
+
*/
|
8430
|
+
Name?: CommonNameLength127;
|
8431
|
+
/**
|
8432
|
+
* A description of the prompt.
|
8433
|
+
*/
|
8434
|
+
Description?: PromptDescription;
|
8435
|
+
/**
|
8436
|
+
* The URI for the S3 bucket where the prompt is stored.
|
8437
|
+
*/
|
8438
|
+
S3Uri?: S3Uri;
|
8439
|
+
}
|
8440
|
+
export interface UpdatePromptResponse {
|
8441
|
+
/**
|
8442
|
+
* The Amazon Resource Name (ARN) of the prompt.
|
8443
|
+
*/
|
8444
|
+
PromptARN?: ARN;
|
8445
|
+
/**
|
8446
|
+
* A unique identifier for the prompt.
|
8447
|
+
*/
|
8448
|
+
PromptId?: PromptId;
|
8449
|
+
}
|
8279
8450
|
export interface UpdateQueueHoursOfOperationRequest {
|
8280
8451
|
/**
|
8281
8452
|
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
|
@@ -727,7 +727,7 @@ declare namespace ConnectCases {
|
|
727
727
|
*/
|
728
728
|
type: FieldType;
|
729
729
|
}
|
730
|
-
export type FieldType = "Text"|"Number"|"Boolean"|"DateTime"|"SingleSelect"|string;
|
730
|
+
export type FieldType = "Text"|"Number"|"Boolean"|"DateTime"|"SingleSelect"|"Url"|string;
|
731
731
|
export interface FieldValue {
|
732
732
|
/**
|
733
733
|
* Unique identifier of a field.
|
@@ -22152,7 +22152,7 @@ declare namespace EC2 {
|
|
22152
22152
|
/**
|
22153
22153
|
* The URL to the Amazon S3-based disk image being imported. The URL can either be a https URL (https://..) or an Amazon S3 URL (s3://..)
|
22154
22154
|
*/
|
22155
|
-
Url?:
|
22155
|
+
Url?: SensitiveUrl;
|
22156
22156
|
/**
|
22157
22157
|
* The S3 bucket for the disk image.
|
22158
22158
|
*/
|
@@ -23972,7 +23972,7 @@ declare namespace EC2 {
|
|
23972
23972
|
*/
|
23973
23973
|
IncludeAllTagsOfInstance?: Boolean;
|
23974
23974
|
}
|
23975
|
-
export type InstanceType = "a1.medium"|"a1.large"|"a1.xlarge"|"a1.2xlarge"|"a1.4xlarge"|"a1.metal"|"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.medium"|"c6g.large"|"c6g.xlarge"|"c6g.2xlarge"|"c6g.4xlarge"|"c6g.8xlarge"|"c6g.12xlarge"|"c6g.16xlarge"|"c6g.metal"|"c6gd.medium"|"c6gd.large"|"c6gd.xlarge"|"c6gd.2xlarge"|"c6gd.4xlarge"|"c6gd.8xlarge"|"c6gd.12xlarge"|"c6gd.16xlarge"|"c6gd.metal"|"c6gn.medium"|"c6gn.large"|"c6gn.xlarge"|"c6gn.2xlarge"|"c6gn.4xlarge"|"c6gn.8xlarge"|"c6gn.12xlarge"|"c6gn.16xlarge"|"c6i.large"|"c6i.xlarge"|"c6i.2xlarge"|"c6i.4xlarge"|"c6i.8xlarge"|"c6i.12xlarge"|"c6i.16xlarge"|"c6i.24xlarge"|"c6i.32xlarge"|"c6i.metal"|"cc1.4xlarge"|"cc2.8xlarge"|"cg1.4xlarge"|"cr1.8xlarge"|"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"|"dl1.24xlarge"|"f1.2xlarge"|"f1.4xlarge"|"f1.16xlarge"|"g2.2xlarge"|"g2.8xlarge"|"g3.4xlarge"|"g3.8xlarge"|"g3.16xlarge"|"g3s.xlarge"|"g4ad.xlarge"|"g4ad.2xlarge"|"g4ad.4xlarge"|"g4ad.8xlarge"|"g4ad.16xlarge"|"g4dn.xlarge"|"g4dn.2xlarge"|"g4dn.4xlarge"|"g4dn.8xlarge"|"g4dn.12xlarge"|"g4dn.16xlarge"|"g4dn.metal"|"g5.xlarge"|"g5.2xlarge"|"g5.4xlarge"|"g5.8xlarge"|"g5.12xlarge"|"g5.16xlarge"|"g5.24xlarge"|"g5.48xlarge"|"g5g.xlarge"|"g5g.2xlarge"|"g5g.4xlarge"|"g5g.8xlarge"|"g5g.16xlarge"|"g5g.metal"|"hi1.4xlarge"|"hpc6a.48xlarge"|"hs1.8xlarge"|"h1.2xlarge"|"h1.4xlarge"|"h1.8xlarge"|"h1.16xlarge"|"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"|"im4gn.large"|"im4gn.xlarge"|"im4gn.2xlarge"|"im4gn.4xlarge"|"im4gn.8xlarge"|"im4gn.16xlarge"|"inf1.xlarge"|"inf1.2xlarge"|"inf1.6xlarge"|"inf1.24xlarge"|"is4gen.medium"|"is4gen.large"|"is4gen.xlarge"|"is4gen.2xlarge"|"is4gen.4xlarge"|"is4gen.8xlarge"|"m1.small"|"m1.medium"|"m1.large"|"m1.xlarge"|"m2.xlarge"|"m2.2xlarge"|"m2.4xlarge"|"m3.medium"|"m3.large"|"m3.xlarge"|"m3.2xlarge"|"m4.large"|"m4.xlarge"|"m4.2xlarge"|"m4.4xlarge"|"m4.10xlarge"|"m4.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"|"m5ad.large"|"m5ad.xlarge"|"m5ad.2xlarge"|"m5ad.4xlarge"|"m5ad.8xlarge"|"m5ad.12xlarge"|"m5ad.16xlarge"|"m5ad.24xlarge"|"m5d.large"|"m5d.xlarge"|"m5d.2xlarge"|"m5d.4xlarge"|"m5d.8xlarge"|"m5d.12xlarge"|"m5d.16xlarge"|"m5d.24xlarge"|"m5d.metal"|"m5dn.large"|"m5dn.xlarge"|"m5dn.2xlarge"|"m5dn.4xlarge"|"m5dn.8xlarge"|"m5dn.12xlarge"|"m5dn.16xlarge"|"m5dn.24xlarge"|"m5dn.metal"|"m5n.large"|"m5n.xlarge"|"m5n.2xlarge"|"m5n.4xlarge"|"m5n.8xlarge"|"m5n.12xlarge"|"m5n.16xlarge"|"m5n.24xlarge"|"m5n.metal"|"m5zn.large"|"m5zn.xlarge"|"m5zn.2xlarge"|"m5zn.3xlarge"|"m5zn.6xlarge"|"m5zn.12xlarge"|"m5zn.metal"|"m6a.large"|"m6a.xlarge"|"m6a.2xlarge"|"m6a.4xlarge"|"m6a.8xlarge"|"m6a.12xlarge"|"m6a.16xlarge"|"m6a.24xlarge"|"m6a.32xlarge"|"m6a.48xlarge"|"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"|"m6i.large"|"m6i.xlarge"|"m6i.2xlarge"|"m6i.4xlarge"|"m6i.8xlarge"|"m6i.12xlarge"|"m6i.16xlarge"|"m6i.24xlarge"|"m6i.32xlarge"|"m6i.metal"|"mac1.metal"|"p2.xlarge"|"p2.8xlarge"|"p2.16xlarge"|"p3.2xlarge"|"p3.8xlarge"|"p3.16xlarge"|"p3dn.24xlarge"|"p4d.24xlarge"|"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"|"r5ad.large"|"r5ad.xlarge"|"r5ad.2xlarge"|"r5ad.4xlarge"|"r5ad.8xlarge"|"r5ad.12xlarge"|"r5ad.16xlarge"|"r5ad.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"|"r5dn.large"|"r5dn.xlarge"|"r5dn.2xlarge"|"r5dn.4xlarge"|"r5dn.8xlarge"|"r5dn.12xlarge"|"r5dn.16xlarge"|"r5dn.24xlarge"|"r5dn.metal"|"r5n.large"|"r5n.xlarge"|"r5n.2xlarge"|"r5n.4xlarge"|"r5n.8xlarge"|"r5n.12xlarge"|"r5n.16xlarge"|"r5n.24xlarge"|"r5n.metal"|"r6g.medium"|"r6g.large"|"r6g.xlarge"|"r6g.2xlarge"|"r6g.4xlarge"|"r6g.8xlarge"|"r6g.12xlarge"|"r6g.16xlarge"|"r6g.metal"|"r6gd.medium"|"r6gd.large"|"r6gd.xlarge"|"r6gd.2xlarge"|"r6gd.4xlarge"|"r6gd.8xlarge"|"r6gd.12xlarge"|"r6gd.16xlarge"|"r6gd.metal"|"r6i.large"|"r6i.xlarge"|"r6i.2xlarge"|"r6i.4xlarge"|"r6i.8xlarge"|"r6i.12xlarge"|"r6i.16xlarge"|"r6i.24xlarge"|"r6i.32xlarge"|"r6i.metal"|"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"|"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"|"vt1.3xlarge"|"vt1.6xlarge"|"vt1.24xlarge"|"x1.16xlarge"|"x1.32xlarge"|"x1e.xlarge"|"x1e.2xlarge"|"x1e.4xlarge"|"x1e.8xlarge"|"x1e.16xlarge"|"x1e.32xlarge"|"x2iezn.2xlarge"|"x2iezn.4xlarge"|"x2iezn.6xlarge"|"x2iezn.8xlarge"|"x2iezn.12xlarge"|"x2iezn.metal"|"x2gd.medium"|"x2gd.large"|"x2gd.xlarge"|"x2gd.2xlarge"|"x2gd.4xlarge"|"x2gd.8xlarge"|"x2gd.12xlarge"|"x2gd.16xlarge"|"x2gd.metal"|"z1d.large"|"z1d.xlarge"|"z1d.2xlarge"|"z1d.3xlarge"|"z1d.6xlarge"|"z1d.12xlarge"|"z1d.metal"|"x2idn.16xlarge"|"x2idn.24xlarge"|"x2idn.32xlarge"|"x2iedn.xlarge"|"x2iedn.2xlarge"|"x2iedn.4xlarge"|"x2iedn.8xlarge"|"x2iedn.16xlarge"|"x2iedn.24xlarge"|"x2iedn.32xlarge"|"c6a.large"|"c6a.xlarge"|"c6a.2xlarge"|"c6a.4xlarge"|"c6a.8xlarge"|"c6a.12xlarge"|"c6a.16xlarge"|"c6a.24xlarge"|"c6a.32xlarge"|"c6a.48xlarge"|"c6a.metal"|"m6a.metal"|"i4i.large"|"i4i.xlarge"|"i4i.2xlarge"|"i4i.4xlarge"|"i4i.8xlarge"|"i4i.16xlarge"|"i4i.32xlarge"|"i4i.metal"|"x2idn.metal"|"x2iedn.metal"|"c7g.medium"|"c7g.large"|"c7g.xlarge"|"c7g.2xlarge"|"c7g.4xlarge"|"c7g.8xlarge"|"c7g.12xlarge"|"c7g.16xlarge"|"mac2.metal"|"c6id.large"|"c6id.xlarge"|"c6id.2xlarge"|"c6id.4xlarge"|"c6id.8xlarge"|"c6id.12xlarge"|"c6id.16xlarge"|"c6id.24xlarge"|"c6id.32xlarge"|"c6id.metal"|"m6id.large"|"m6id.xlarge"|"m6id.2xlarge"|"m6id.4xlarge"|"m6id.8xlarge"|"m6id.12xlarge"|"m6id.16xlarge"|"m6id.24xlarge"|"m6id.32xlarge"|"m6id.metal"|"r6id.large"|"r6id.xlarge"|"r6id.2xlarge"|"r6id.4xlarge"|"r6id.8xlarge"|"r6id.12xlarge"|"r6id.16xlarge"|"r6id.24xlarge"|"r6id.32xlarge"|"r6id.metal"|"r6a.large"|"r6a.xlarge"|"r6a.2xlarge"|"r6a.4xlarge"|"r6a.8xlarge"|"r6a.12xlarge"|"r6a.16xlarge"|"r6a.24xlarge"|"r6a.32xlarge"|"r6a.48xlarge"|"r6a.metal"|"p4de.24xlarge"|"u-3tb1.56xlarge"|"u-18tb1.112xlarge"|"u-24tb1.112xlarge"|"trn1.2xlarge"|"trn1.32xlarge"|"hpc6id.32xlarge"|"c6in.large"|"c6in.xlarge"|"c6in.2xlarge"|"c6in.4xlarge"|"c6in.8xlarge"|"c6in.12xlarge"|"c6in.16xlarge"|"c6in.24xlarge"|"c6in.32xlarge"|"m6in.large"|"m6in.xlarge"|"m6in.2xlarge"|"m6in.4xlarge"|"m6in.8xlarge"|"m6in.12xlarge"|"m6in.16xlarge"|"m6in.24xlarge"|"m6in.32xlarge"|"m6idn.large"|"m6idn.xlarge"|"m6idn.2xlarge"|"m6idn.4xlarge"|"m6idn.8xlarge"|"m6idn.12xlarge"|"m6idn.16xlarge"|"m6idn.24xlarge"|"m6idn.32xlarge"|"r6in.large"|"r6in.xlarge"|"r6in.2xlarge"|"r6in.4xlarge"|"r6in.8xlarge"|"r6in.12xlarge"|"r6in.16xlarge"|"r6in.24xlarge"|"r6in.32xlarge"|"r6idn.large"|"r6idn.xlarge"|"r6idn.2xlarge"|"r6idn.4xlarge"|"r6idn.8xlarge"|"r6idn.12xlarge"|"r6idn.16xlarge"|"r6idn.24xlarge"|"r6idn.32xlarge"|"c7g.metal"|"m7g.medium"|"m7g.large"|"m7g.xlarge"|"m7g.2xlarge"|"m7g.4xlarge"|"m7g.8xlarge"|"m7g.12xlarge"|"m7g.16xlarge"|"m7g.metal"|"r7g.medium"|"r7g.large"|"r7g.xlarge"|"r7g.2xlarge"|"r7g.4xlarge"|"r7g.8xlarge"|"r7g.12xlarge"|"r7g.16xlarge"|"r7g.metal"|"c6in.metal"|"m6in.metal"|"m6idn.metal"|"r6in.metal"|"r6idn.metal"|"inf2.xlarge"|"inf2.8xlarge"|"inf2.24xlarge"|"inf2.48xlarge"|"trn1n.32xlarge"|string;
|
23975
|
+
export type InstanceType = "a1.medium"|"a1.large"|"a1.xlarge"|"a1.2xlarge"|"a1.4xlarge"|"a1.metal"|"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.medium"|"c6g.large"|"c6g.xlarge"|"c6g.2xlarge"|"c6g.4xlarge"|"c6g.8xlarge"|"c6g.12xlarge"|"c6g.16xlarge"|"c6g.metal"|"c6gd.medium"|"c6gd.large"|"c6gd.xlarge"|"c6gd.2xlarge"|"c6gd.4xlarge"|"c6gd.8xlarge"|"c6gd.12xlarge"|"c6gd.16xlarge"|"c6gd.metal"|"c6gn.medium"|"c6gn.large"|"c6gn.xlarge"|"c6gn.2xlarge"|"c6gn.4xlarge"|"c6gn.8xlarge"|"c6gn.12xlarge"|"c6gn.16xlarge"|"c6i.large"|"c6i.xlarge"|"c6i.2xlarge"|"c6i.4xlarge"|"c6i.8xlarge"|"c6i.12xlarge"|"c6i.16xlarge"|"c6i.24xlarge"|"c6i.32xlarge"|"c6i.metal"|"cc1.4xlarge"|"cc2.8xlarge"|"cg1.4xlarge"|"cr1.8xlarge"|"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"|"dl1.24xlarge"|"f1.2xlarge"|"f1.4xlarge"|"f1.16xlarge"|"g2.2xlarge"|"g2.8xlarge"|"g3.4xlarge"|"g3.8xlarge"|"g3.16xlarge"|"g3s.xlarge"|"g4ad.xlarge"|"g4ad.2xlarge"|"g4ad.4xlarge"|"g4ad.8xlarge"|"g4ad.16xlarge"|"g4dn.xlarge"|"g4dn.2xlarge"|"g4dn.4xlarge"|"g4dn.8xlarge"|"g4dn.12xlarge"|"g4dn.16xlarge"|"g4dn.metal"|"g5.xlarge"|"g5.2xlarge"|"g5.4xlarge"|"g5.8xlarge"|"g5.12xlarge"|"g5.16xlarge"|"g5.24xlarge"|"g5.48xlarge"|"g5g.xlarge"|"g5g.2xlarge"|"g5g.4xlarge"|"g5g.8xlarge"|"g5g.16xlarge"|"g5g.metal"|"hi1.4xlarge"|"hpc6a.48xlarge"|"hs1.8xlarge"|"h1.2xlarge"|"h1.4xlarge"|"h1.8xlarge"|"h1.16xlarge"|"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"|"im4gn.large"|"im4gn.xlarge"|"im4gn.2xlarge"|"im4gn.4xlarge"|"im4gn.8xlarge"|"im4gn.16xlarge"|"inf1.xlarge"|"inf1.2xlarge"|"inf1.6xlarge"|"inf1.24xlarge"|"is4gen.medium"|"is4gen.large"|"is4gen.xlarge"|"is4gen.2xlarge"|"is4gen.4xlarge"|"is4gen.8xlarge"|"m1.small"|"m1.medium"|"m1.large"|"m1.xlarge"|"m2.xlarge"|"m2.2xlarge"|"m2.4xlarge"|"m3.medium"|"m3.large"|"m3.xlarge"|"m3.2xlarge"|"m4.large"|"m4.xlarge"|"m4.2xlarge"|"m4.4xlarge"|"m4.10xlarge"|"m4.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"|"m5ad.large"|"m5ad.xlarge"|"m5ad.2xlarge"|"m5ad.4xlarge"|"m5ad.8xlarge"|"m5ad.12xlarge"|"m5ad.16xlarge"|"m5ad.24xlarge"|"m5d.large"|"m5d.xlarge"|"m5d.2xlarge"|"m5d.4xlarge"|"m5d.8xlarge"|"m5d.12xlarge"|"m5d.16xlarge"|"m5d.24xlarge"|"m5d.metal"|"m5dn.large"|"m5dn.xlarge"|"m5dn.2xlarge"|"m5dn.4xlarge"|"m5dn.8xlarge"|"m5dn.12xlarge"|"m5dn.16xlarge"|"m5dn.24xlarge"|"m5dn.metal"|"m5n.large"|"m5n.xlarge"|"m5n.2xlarge"|"m5n.4xlarge"|"m5n.8xlarge"|"m5n.12xlarge"|"m5n.16xlarge"|"m5n.24xlarge"|"m5n.metal"|"m5zn.large"|"m5zn.xlarge"|"m5zn.2xlarge"|"m5zn.3xlarge"|"m5zn.6xlarge"|"m5zn.12xlarge"|"m5zn.metal"|"m6a.large"|"m6a.xlarge"|"m6a.2xlarge"|"m6a.4xlarge"|"m6a.8xlarge"|"m6a.12xlarge"|"m6a.16xlarge"|"m6a.24xlarge"|"m6a.32xlarge"|"m6a.48xlarge"|"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"|"m6i.large"|"m6i.xlarge"|"m6i.2xlarge"|"m6i.4xlarge"|"m6i.8xlarge"|"m6i.12xlarge"|"m6i.16xlarge"|"m6i.24xlarge"|"m6i.32xlarge"|"m6i.metal"|"mac1.metal"|"p2.xlarge"|"p2.8xlarge"|"p2.16xlarge"|"p3.2xlarge"|"p3.8xlarge"|"p3.16xlarge"|"p3dn.24xlarge"|"p4d.24xlarge"|"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"|"r5ad.large"|"r5ad.xlarge"|"r5ad.2xlarge"|"r5ad.4xlarge"|"r5ad.8xlarge"|"r5ad.12xlarge"|"r5ad.16xlarge"|"r5ad.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"|"r5dn.large"|"r5dn.xlarge"|"r5dn.2xlarge"|"r5dn.4xlarge"|"r5dn.8xlarge"|"r5dn.12xlarge"|"r5dn.16xlarge"|"r5dn.24xlarge"|"r5dn.metal"|"r5n.large"|"r5n.xlarge"|"r5n.2xlarge"|"r5n.4xlarge"|"r5n.8xlarge"|"r5n.12xlarge"|"r5n.16xlarge"|"r5n.24xlarge"|"r5n.metal"|"r6g.medium"|"r6g.large"|"r6g.xlarge"|"r6g.2xlarge"|"r6g.4xlarge"|"r6g.8xlarge"|"r6g.12xlarge"|"r6g.16xlarge"|"r6g.metal"|"r6gd.medium"|"r6gd.large"|"r6gd.xlarge"|"r6gd.2xlarge"|"r6gd.4xlarge"|"r6gd.8xlarge"|"r6gd.12xlarge"|"r6gd.16xlarge"|"r6gd.metal"|"r6i.large"|"r6i.xlarge"|"r6i.2xlarge"|"r6i.4xlarge"|"r6i.8xlarge"|"r6i.12xlarge"|"r6i.16xlarge"|"r6i.24xlarge"|"r6i.32xlarge"|"r6i.metal"|"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"|"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"|"vt1.3xlarge"|"vt1.6xlarge"|"vt1.24xlarge"|"x1.16xlarge"|"x1.32xlarge"|"x1e.xlarge"|"x1e.2xlarge"|"x1e.4xlarge"|"x1e.8xlarge"|"x1e.16xlarge"|"x1e.32xlarge"|"x2iezn.2xlarge"|"x2iezn.4xlarge"|"x2iezn.6xlarge"|"x2iezn.8xlarge"|"x2iezn.12xlarge"|"x2iezn.metal"|"x2gd.medium"|"x2gd.large"|"x2gd.xlarge"|"x2gd.2xlarge"|"x2gd.4xlarge"|"x2gd.8xlarge"|"x2gd.12xlarge"|"x2gd.16xlarge"|"x2gd.metal"|"z1d.large"|"z1d.xlarge"|"z1d.2xlarge"|"z1d.3xlarge"|"z1d.6xlarge"|"z1d.12xlarge"|"z1d.metal"|"x2idn.16xlarge"|"x2idn.24xlarge"|"x2idn.32xlarge"|"x2iedn.xlarge"|"x2iedn.2xlarge"|"x2iedn.4xlarge"|"x2iedn.8xlarge"|"x2iedn.16xlarge"|"x2iedn.24xlarge"|"x2iedn.32xlarge"|"c6a.large"|"c6a.xlarge"|"c6a.2xlarge"|"c6a.4xlarge"|"c6a.8xlarge"|"c6a.12xlarge"|"c6a.16xlarge"|"c6a.24xlarge"|"c6a.32xlarge"|"c6a.48xlarge"|"c6a.metal"|"m6a.metal"|"i4i.large"|"i4i.xlarge"|"i4i.2xlarge"|"i4i.4xlarge"|"i4i.8xlarge"|"i4i.16xlarge"|"i4i.32xlarge"|"i4i.metal"|"x2idn.metal"|"x2iedn.metal"|"c7g.medium"|"c7g.large"|"c7g.xlarge"|"c7g.2xlarge"|"c7g.4xlarge"|"c7g.8xlarge"|"c7g.12xlarge"|"c7g.16xlarge"|"mac2.metal"|"c6id.large"|"c6id.xlarge"|"c6id.2xlarge"|"c6id.4xlarge"|"c6id.8xlarge"|"c6id.12xlarge"|"c6id.16xlarge"|"c6id.24xlarge"|"c6id.32xlarge"|"c6id.metal"|"m6id.large"|"m6id.xlarge"|"m6id.2xlarge"|"m6id.4xlarge"|"m6id.8xlarge"|"m6id.12xlarge"|"m6id.16xlarge"|"m6id.24xlarge"|"m6id.32xlarge"|"m6id.metal"|"r6id.large"|"r6id.xlarge"|"r6id.2xlarge"|"r6id.4xlarge"|"r6id.8xlarge"|"r6id.12xlarge"|"r6id.16xlarge"|"r6id.24xlarge"|"r6id.32xlarge"|"r6id.metal"|"r6a.large"|"r6a.xlarge"|"r6a.2xlarge"|"r6a.4xlarge"|"r6a.8xlarge"|"r6a.12xlarge"|"r6a.16xlarge"|"r6a.24xlarge"|"r6a.32xlarge"|"r6a.48xlarge"|"r6a.metal"|"p4de.24xlarge"|"u-3tb1.56xlarge"|"u-18tb1.112xlarge"|"u-24tb1.112xlarge"|"trn1.2xlarge"|"trn1.32xlarge"|"hpc6id.32xlarge"|"c6in.large"|"c6in.xlarge"|"c6in.2xlarge"|"c6in.4xlarge"|"c6in.8xlarge"|"c6in.12xlarge"|"c6in.16xlarge"|"c6in.24xlarge"|"c6in.32xlarge"|"m6in.large"|"m6in.xlarge"|"m6in.2xlarge"|"m6in.4xlarge"|"m6in.8xlarge"|"m6in.12xlarge"|"m6in.16xlarge"|"m6in.24xlarge"|"m6in.32xlarge"|"m6idn.large"|"m6idn.xlarge"|"m6idn.2xlarge"|"m6idn.4xlarge"|"m6idn.8xlarge"|"m6idn.12xlarge"|"m6idn.16xlarge"|"m6idn.24xlarge"|"m6idn.32xlarge"|"r6in.large"|"r6in.xlarge"|"r6in.2xlarge"|"r6in.4xlarge"|"r6in.8xlarge"|"r6in.12xlarge"|"r6in.16xlarge"|"r6in.24xlarge"|"r6in.32xlarge"|"r6idn.large"|"r6idn.xlarge"|"r6idn.2xlarge"|"r6idn.4xlarge"|"r6idn.8xlarge"|"r6idn.12xlarge"|"r6idn.16xlarge"|"r6idn.24xlarge"|"r6idn.32xlarge"|"c7g.metal"|"m7g.medium"|"m7g.large"|"m7g.xlarge"|"m7g.2xlarge"|"m7g.4xlarge"|"m7g.8xlarge"|"m7g.12xlarge"|"m7g.16xlarge"|"m7g.metal"|"r7g.medium"|"r7g.large"|"r7g.xlarge"|"r7g.2xlarge"|"r7g.4xlarge"|"r7g.8xlarge"|"r7g.12xlarge"|"r7g.16xlarge"|"r7g.metal"|"c6in.metal"|"m6in.metal"|"m6idn.metal"|"r6in.metal"|"r6idn.metal"|"inf2.xlarge"|"inf2.8xlarge"|"inf2.24xlarge"|"inf2.48xlarge"|"trn1n.32xlarge"|"i4g.large"|"i4g.xlarge"|"i4g.2xlarge"|"i4g.4xlarge"|"i4g.8xlarge"|"i4g.16xlarge"|string;
|
23976
23976
|
export type InstanceTypeHypervisor = "nitro"|"xen"|string;
|
23977
23977
|
export interface InstanceTypeInfo {
|
23978
23978
|
/**
|
@@ -31267,7 +31267,7 @@ declare namespace EC2 {
|
|
31267
31267
|
/**
|
31268
31268
|
* The user data to make available to the instance. You must provide base64-encoded text. User data is limited to 16 KB. For more information, see Run commands on your Linux instance at launch (Linux) or Work with instance user data (Windows) in the Amazon Elastic Compute Cloud User Guide. If you are creating the launch template for use with Batch, the user data must be provided in the MIME multi-part archive format. For more information, see Amazon EC2 user data in launch templates in the Batch User Guide.
|
31269
31269
|
*/
|
31270
|
-
UserData?:
|
31270
|
+
UserData?: SensitiveUserData;
|
31271
31271
|
/**
|
31272
31272
|
* The tags to apply to the resources that are created during instance launch. You can specify tags for the following resources only: Instances Volumes Elastic graphics Spot Instance requests Network interfaces To tag a resource after it has been created, see CreateTags. To tag the launch template itself, you must use the TagSpecification parameter.
|
31273
31273
|
*/
|
@@ -33452,6 +33452,7 @@ declare namespace EC2 {
|
|
33452
33452
|
*/
|
33453
33453
|
DryRun?: Boolean;
|
33454
33454
|
}
|
33455
|
+
export type SensitiveUrl = string;
|
33455
33456
|
export type SensitiveUserData = string;
|
33456
33457
|
export interface ServiceConfiguration {
|
33457
33458
|
/**
|
@@ -33717,7 +33718,7 @@ declare namespace EC2 {
|
|
33717
33718
|
/**
|
33718
33719
|
* The URL used to access the disk image.
|
33719
33720
|
*/
|
33720
|
-
Url?:
|
33721
|
+
Url?: SensitiveUrl;
|
33721
33722
|
/**
|
33722
33723
|
* The Amazon S3 bucket for the disk image.
|
33723
33724
|
*/
|
@@ -33736,7 +33737,7 @@ declare namespace EC2 {
|
|
33736
33737
|
/**
|
33737
33738
|
* The URL to the Amazon S3-based disk image being imported. It can either be a https URL (https://..) or an Amazon S3 URL (s3://..).
|
33738
33739
|
*/
|
33739
|
-
Url?:
|
33740
|
+
Url?: SensitiveUrl;
|
33740
33741
|
/**
|
33741
33742
|
* The Amazon S3 bucket for the disk image.
|
33742
33743
|
*/
|
@@ -33856,7 +33857,7 @@ declare namespace EC2 {
|
|
33856
33857
|
/**
|
33857
33858
|
* The URL of the disk image from which the snapshot is created.
|
33858
33859
|
*/
|
33859
|
-
Url?:
|
33860
|
+
Url?: SensitiveUrl;
|
33860
33861
|
/**
|
33861
33862
|
* The Amazon S3 bucket for the disk image.
|
33862
33863
|
*/
|
@@ -761,7 +761,7 @@ declare namespace ECS {
|
|
761
761
|
*/
|
762
762
|
image?: String;
|
763
763
|
/**
|
764
|
-
* The container image manifest digest.
|
764
|
+
* The container image manifest digest.
|
765
765
|
*/
|
766
766
|
imageDigest?: String;
|
767
767
|
/**
|
@@ -1217,7 +1217,7 @@ declare namespace ECS {
|
|
1217
1217
|
*/
|
1218
1218
|
serviceRegistries?: ServiceRegistries;
|
1219
1219
|
/**
|
1220
|
-
* The number of instantiations of the specified task definition to place and keep running
|
1220
|
+
* The number of instantiations of the specified task definition to place and keep running in your service. This is required if schedulingStrategy is REPLICA or isn't specified. If schedulingStrategy is DAEMON then this isn't required.
|
1221
1221
|
*/
|
1222
1222
|
desiredCount?: BoxedInteger;
|
1223
1223
|
/**
|
@@ -256,7 +256,7 @@ declare namespace MediaConvert {
|
|
256
256
|
*/
|
257
257
|
CodecProfile?: AacCodecProfile;
|
258
258
|
/**
|
259
|
-
* The Coding mode that you specify determines the number of audio channels and the audio channel layout metadata in your AAC output. Valid coding modes depend on the Rate control mode and Profile that you select. The following list shows the number of audio channels and channel layout for each coding mode. * 1.0 Audio Description (Receiver Mix): One channel, C. Includes audio description data from your stereo input. For more information see ETSI TS 101 154 Annex E. * 1.0 Mono: One channel, C. * 2.0 Stereo: Two channels, L, R. * 5.1 Surround:
|
259
|
+
* The Coding mode that you specify determines the number of audio channels and the audio channel layout metadata in your AAC output. Valid coding modes depend on the Rate control mode and Profile that you select. The following list shows the number of audio channels and channel layout for each coding mode. * 1.0 Audio Description (Receiver Mix): One channel, C. Includes audio description data from your stereo input. For more information see ETSI TS 101 154 Annex E. * 1.0 Mono: One channel, C. * 2.0 Stereo: Two channels, L, R. * 5.1 Surround: Six channels, C, L, R, Ls, Rs, LFE.
|
260
260
|
*/
|
261
261
|
CodingMode?: AacCodingMode;
|
262
262
|
/**
|
@@ -3043,7 +3043,7 @@ Within your job settings, all of your DVB-Sub settings must be identical.
|
|
3043
3043
|
*/
|
3044
3044
|
SegmentLengthControl?: HlsSegmentLengthControl;
|
3045
3045
|
/**
|
3046
|
-
*
|
3046
|
+
* Specify the number of segments to write to a subdirectory before starting a new one. You must also set Directory structure to Subdirectory per stream for this setting to have an effect.
|
3047
3047
|
*/
|
3048
3048
|
SegmentsPerSubdirectory?: __integerMin1Max2147483647;
|
3049
3049
|
/**
|
@@ -3200,7 +3200,7 @@ Within your job settings, all of your DVB-Sub settings must be identical.
|
|
3200
3200
|
export type ImscStylePassthrough = "ENABLED"|"DISABLED"|string;
|
3201
3201
|
export interface Input {
|
3202
3202
|
/**
|
3203
|
-
* Use to remove noise, blocking, blurriness, or ringing from your input as a pre-filter step before encoding. The Advanced input filter removes more types of compression artifacts and is an improvement when compared to basic Deblock and Denoise filters. To remove video compression artifacts from your input and improve the video quality: Choose Enabled. Additionally, this filter can help increase the video quality of your output relative to its bitrate, since noisy inputs are more complex and require more bits to encode. To help restore loss of detail after applying the filter, you can optionally add texture or sharpening as an additional step.Jobs that use this feature incur pro-tier pricing. To not apply advanced input filtering: Choose Disabled. Note that you can still apply basic filtering with Deblock and Denoise.
|
3203
|
+
* Use to remove noise, blocking, blurriness, or ringing from your input as a pre-filter step before encoding. The Advanced input filter removes more types of compression artifacts and is an improvement when compared to basic Deblock and Denoise filters. To remove video compression artifacts from your input and improve the video quality: Choose Enabled. Additionally, this filter can help increase the video quality of your output relative to its bitrate, since noisy inputs are more complex and require more bits to encode. To help restore loss of detail after applying the filter, you can optionally add texture or sharpening as an additional step. Jobs that use this feature incur pro-tier pricing. To not apply advanced input filtering: Choose Disabled. Note that you can still apply basic filtering with Deblock and Denoise.
|
3204
3204
|
*/
|
3205
3205
|
AdvancedInputFilter?: AdvancedInputFilter;
|
3206
3206
|
/**
|
@@ -3334,7 +3334,7 @@ Within your job settings, all of your DVB-Sub settings must be identical.
|
|
3334
3334
|
export type InputScanType = "AUTO"|"PSF"|string;
|
3335
3335
|
export interface InputTemplate {
|
3336
3336
|
/**
|
3337
|
-
* Use to remove noise, blocking, blurriness, or ringing from your input as a pre-filter step before encoding. The Advanced input filter removes more types of compression artifacts and is an improvement when compared to basic Deblock and Denoise filters. To remove video compression artifacts from your input and improve the video quality: Choose Enabled. Additionally, this filter can help increase the video quality of your output relative to its bitrate, since noisy inputs are more complex and require more bits to encode. To help restore loss of detail after applying the filter, you can optionally add texture or sharpening as an additional step.Jobs that use this feature incur pro-tier pricing. To not apply advanced input filtering: Choose Disabled. Note that you can still apply basic filtering with Deblock and Denoise.
|
3337
|
+
* Use to remove noise, blocking, blurriness, or ringing from your input as a pre-filter step before encoding. The Advanced input filter removes more types of compression artifacts and is an improvement when compared to basic Deblock and Denoise filters. To remove video compression artifacts from your input and improve the video quality: Choose Enabled. Additionally, this filter can help increase the video quality of your output relative to its bitrate, since noisy inputs are more complex and require more bits to encode. To help restore loss of detail after applying the filter, you can optionally add texture or sharpening as an additional step. Jobs that use this feature incur pro-tier pricing. To not apply advanced input filtering: Choose Disabled. Note that you can still apply basic filtering with Deblock and Denoise.
|
3338
3338
|
*/
|
3339
3339
|
AdvancedInputFilter?: AdvancedInputFilter;
|
3340
3340
|
/**
|
@@ -3768,7 +3768,7 @@ Within your job settings, all of your DVB-Sub settings must be identical.
|
|
3768
3768
|
/**
|
3769
3769
|
* Provide the HTTPS endpoint to the Kantar server. You should get this endpoint from Kantar.
|
3770
3770
|
*/
|
3771
|
-
KantarServerUrl?:
|
3771
|
+
KantarServerUrl?: __stringPatternHttpsKantarmedia;
|
3772
3772
|
/**
|
3773
3773
|
* Optional. Specify the Amazon S3 bucket where you want MediaConvert to store your Kantar watermark XML logs. When you don't specify a bucket, MediaConvert doesn't save these logs. Note that your MediaConvert service role must provide access to this location. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/iam-role.html
|
3774
3774
|
*/
|
@@ -4623,7 +4623,7 @@ When you specify Version 1, you must also set ID3 metadata (timedMetadata) to Pa
|
|
4623
4623
|
}
|
4624
4624
|
export type MsSmoothManifestEncoding = "UTF8"|"UTF16"|string;
|
4625
4625
|
export type MxfAfdSignaling = "NO_COPY"|"COPY_FROM_VIDEO"|string;
|
4626
|
-
export type MxfProfile = "D_10"|"XDCAM"|"OP1A"|"XAVC"|string;
|
4626
|
+
export type MxfProfile = "D_10"|"XDCAM"|"OP1A"|"XAVC"|"XDCAM_RDD9"|string;
|
4627
4627
|
export interface MxfSettings {
|
4628
4628
|
/**
|
4629
4629
|
* Optional. When you have AFD signaling set up in your output video stream, use this setting to choose whether to also include it in the MXF wrapper. Choose Don't copy (NO_COPY) to exclude AFD signaling from the MXF wrapper. Choose Copy from video stream (COPY_FROM_VIDEO) to copy the AFD values from the video stream for this output to the MXF wrapper. Regardless of which option you choose, the AFD values remain in the video stream. Related settings: To set up your output to include or exclude AFD values, see AfdSignaling, under VideoDescription. On the console, find AFD signaling under the output's video encoding settings.
|
@@ -5657,7 +5657,7 @@ When you specify Version 1, you must also set ID3 metadata (timedMetadata) to Pa
|
|
5657
5657
|
*/
|
5658
5658
|
FixedAfd?: __integerMin0Max15;
|
5659
5659
|
/**
|
5660
|
-
* Use
|
5660
|
+
* Use Height to define the video resolution height, in pixels, for this output. To use the same resolution as your input: Leave both Width and Height blank. To evenly scale from your input resolution: Leave Height blank and enter a value for Width. For example, if your input is 1920x1080 and you set Width to 1280, your output will be 1280x720.
|
5661
5661
|
*/
|
5662
5662
|
Height?: __integerMin32Max8192;
|
5663
5663
|
/**
|
@@ -5685,7 +5685,7 @@ When you specify Version 1, you must also set ID3 metadata (timedMetadata) to Pa
|
|
5685
5685
|
*/
|
5686
5686
|
VideoPreprocessors?: VideoPreprocessor;
|
5687
5687
|
/**
|
5688
|
-
* Use Width
|
5688
|
+
* Use Width to define the video resolution width, in pixels, for this output. To use the same resolution as your input: Leave both Width and Height blank. To evenly scale from your input resolution: Leave Width blank and enter a value for Height. For example, if your input is 1920x1080 and you set Height to 720, your output will be 1280x720.
|
5689
5689
|
*/
|
5690
5690
|
Width?: __integerMin32Max8192;
|
5691
5691
|
}
|
@@ -6334,7 +6334,7 @@ When you specify Version 1, you must also set ID3 metadata (timedMetadata) to Pa
|
|
6334
6334
|
export type __stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912MrkAFAF0932 = string;
|
6335
6335
|
export type __stringPatternDD = string;
|
6336
6336
|
export type __stringPatternHttps = string;
|
6337
|
-
export type
|
6337
|
+
export type __stringPatternHttpsKantarmedia = string;
|
6338
6338
|
export type __stringPatternIdentityAZaZ26AZaZ09163 = string;
|
6339
6339
|
export type __stringPatternS3 = string;
|
6340
6340
|
export type __stringPatternS3ASSETMAPXml = string;
|