@aws-sdk/client-ec2 3.60.0 → 3.71.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 +27 -0
- package/README.md +2 -2
- package/dist-types/EC2.d.ts +49 -80
- package/dist-types/commands/AcceptVpcEndpointConnectionsCommand.d.ts +1 -2
- package/dist-types/commands/CreateCustomerGatewayCommand.d.ts +8 -29
- package/dist-types/commands/CreateImageCommand.d.ts +10 -6
- package/dist-types/commands/CreateIpamCommand.d.ts +4 -1
- package/dist-types/commands/CreateLaunchTemplateCommand.d.ts +6 -1
- package/dist-types/commands/CreateVpcEndpointCommand.d.ts +1 -13
- package/dist-types/commands/CreateVpcEndpointServiceConfigurationCommand.d.ts +9 -12
- package/dist-types/commands/DeleteIpamCommand.d.ts +0 -5
- package/dist-types/commands/ModifyVolumeCommand.d.ts +3 -2
- package/dist-types/commands/ModifyVpcEndpointCommand.d.ts +3 -3
- package/dist-types/commands/ModifyVpcEndpointServiceConfigurationCommand.d.ts +1 -3
- package/dist-types/commands/ModifyVpcEndpointServicePermissionsCommand.d.ts +2 -2
- package/dist-types/commands/StartVpcEndpointServicePrivateDnsVerificationCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +1 -1
- package/dist-types/models/models_1.d.ts +18 -6
- package/dist-types/models/models_2.d.ts +2 -5
- package/dist-types/models/models_3.d.ts +7 -4
- package/dist-types/models/models_6.d.ts +2 -3
- package/dist-types/ts3.4/models/models_0.d.ts +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.71.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.70.0...v3.71.0) (2022-04-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-ec2
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.69.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.68.0...v3.69.0) (2022-04-12)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **client-ec2:** X2idn and X2iedn instances are powered by 3rd generation Intel Xeon Scalable processors with an all-core turbo frequency up to 3.5 GHzAmazon EC2. C6a instances are powered by 3rd generation AMD EPYC processors. ([57c38e8](https://github.com/aws/aws-sdk-js-v3/commit/57c38e8466cfe494da95fa3964967ab8272e6152))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.67.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.66.0...v3.67.0) (2022-04-08)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @aws-sdk/client-ec2
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.60.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.59.0...v3.60.0) (2022-03-30)
|
|
7
34
|
|
|
8
35
|
|
package/README.md
CHANGED
|
@@ -141,7 +141,7 @@ but they are supported by the send operation.
|
|
|
141
141
|
```js
|
|
142
142
|
// callbacks.
|
|
143
143
|
client.send(command, (err, data) => {
|
|
144
|
-
//
|
|
144
|
+
// process err and data.
|
|
145
145
|
});
|
|
146
146
|
```
|
|
147
147
|
|
|
@@ -175,7 +175,7 @@ client
|
|
|
175
175
|
|
|
176
176
|
// callbacks.
|
|
177
177
|
client.acceptReservedInstancesExchangeQuote(params, (err, data) => {
|
|
178
|
-
//
|
|
178
|
+
// process err and data.
|
|
179
179
|
});
|
|
180
180
|
```
|
|
181
181
|
|
package/dist-types/EC2.d.ts
CHANGED
|
@@ -580,8 +580,7 @@ export declare class EC2 extends EC2Client {
|
|
|
580
580
|
acceptTransitGatewayVpcAttachment(args: AcceptTransitGatewayVpcAttachmentCommandInput, cb: (err: any, data?: AcceptTransitGatewayVpcAttachmentCommandOutput) => void): void;
|
|
581
581
|
acceptTransitGatewayVpcAttachment(args: AcceptTransitGatewayVpcAttachmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AcceptTransitGatewayVpcAttachmentCommandOutput) => void): void;
|
|
582
582
|
/**
|
|
583
|
-
* <p>Accepts one or more interface VPC endpoint connection requests to your VPC endpoint
|
|
584
|
-
* service.</p>
|
|
583
|
+
* <p>Accepts one or more interface VPC endpoint connection requests to your VPC endpoint service.</p>
|
|
585
584
|
*/
|
|
586
585
|
acceptVpcEndpointConnections(args: AcceptVpcEndpointConnectionsCommandInput, options?: __HttpHandlerOptions): Promise<AcceptVpcEndpointConnectionsCommandOutput>;
|
|
587
586
|
acceptVpcEndpointConnections(args: AcceptVpcEndpointConnectionsCommandInput, cb: (err: any, data?: AcceptVpcEndpointConnectionsCommandOutput) => void): void;
|
|
@@ -1164,35 +1163,14 @@ export declare class EC2 extends EC2Client {
|
|
|
1164
1163
|
* interface. The IP address must be static and can be behind a device performing network
|
|
1165
1164
|
* address translation (NAT).</p>
|
|
1166
1165
|
* <p>For devices that use Border Gateway Protocol (BGP), you can also provide the device's
|
|
1167
|
-
* BGP Autonomous System Number (ASN). You can use an existing ASN assigned to your
|
|
1168
|
-
*
|
|
1169
|
-
*
|
|
1170
|
-
*
|
|
1171
|
-
*
|
|
1172
|
-
*
|
|
1173
|
-
*
|
|
1174
|
-
*
|
|
1175
|
-
* <p>7224 - reserved in the <code>us-east-1</code> Region</p>
|
|
1176
|
-
* </li>
|
|
1177
|
-
* <li>
|
|
1178
|
-
* <p>9059 - reserved in the <code>eu-west-1</code> Region</p>
|
|
1179
|
-
* </li>
|
|
1180
|
-
* <li>
|
|
1181
|
-
* <p>17943 - reserved in the <code>ap-southeast-1</code> Region</p>
|
|
1182
|
-
* </li>
|
|
1183
|
-
* <li>
|
|
1184
|
-
* <p>10124 - reserved in the <code>ap-northeast-1</code> Region</p>
|
|
1185
|
-
* </li>
|
|
1186
|
-
* </ul>
|
|
1187
|
-
* </note>
|
|
1188
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/vpn/latest/s2svpn/VPC_VPN.html">Amazon Web Services Site-to-Site VPN</a> in the <i>Amazon Web Services Site-to-Site VPN
|
|
1189
|
-
* User Guide</i>.</p>
|
|
1190
|
-
* <important>
|
|
1191
|
-
* <p>To create more than one customer gateway with the same VPN type, IP address, and
|
|
1192
|
-
* BGP ASN, specify a unique device name for each customer gateway. Identical requests
|
|
1193
|
-
* return information about the existing customer gateway and do not create new
|
|
1194
|
-
* customer gateways.</p>
|
|
1195
|
-
* </important>
|
|
1166
|
+
* BGP Autonomous System Number (ASN). You can use an existing ASN assigned to your network.
|
|
1167
|
+
* If you don't have an ASN already, you can use a private ASN. For more information, see
|
|
1168
|
+
* <a href="https://docs.aws.amazon.com/vpn/latest/s2svpn/cgw-options.html">Customer gateway
|
|
1169
|
+
* options for your Site-to-Site VPN connection</a> in the <i>Amazon Web Services Site-to-Site VPN User Guide</i>.</p>
|
|
1170
|
+
* <p>To create more than one customer gateway with the same VPN type, IP address, and
|
|
1171
|
+
* BGP ASN, specify a unique device name for each customer gateway. An identical request
|
|
1172
|
+
* returns information about the existing customer gateway; it doesn't create a new customer
|
|
1173
|
+
* gateway.</p>
|
|
1196
1174
|
*/
|
|
1197
1175
|
createCustomerGateway(args: CreateCustomerGatewayCommandInput, options?: __HttpHandlerOptions): Promise<CreateCustomerGatewayCommandOutput>;
|
|
1198
1176
|
createCustomerGateway(args: CreateCustomerGatewayCommandInput, cb: (err: any, data?: CreateCustomerGatewayCommandOutput) => void): void;
|
|
@@ -1332,12 +1310,16 @@ export declare class EC2 extends EC2Client {
|
|
|
1332
1310
|
/**
|
|
1333
1311
|
* <p>Creates an Amazon EBS-backed AMI from an Amazon EBS-backed instance
|
|
1334
1312
|
* that is either running or stopped.</p>
|
|
1335
|
-
*
|
|
1336
|
-
*
|
|
1337
|
-
*
|
|
1338
|
-
*
|
|
1339
|
-
*
|
|
1340
|
-
*
|
|
1313
|
+
* <p>By default, when Amazon EC2 creates the new AMI, it reboots the instance so that it can
|
|
1314
|
+
* take snapshots of the attached volumes while data is at rest, in order to ensure a consistent
|
|
1315
|
+
* state. You can set the <code>NoReboot</code> parameter to <code>true</code> in the API request,
|
|
1316
|
+
* or use the <code>--no-reboot</code> option in the CLI to prevent Amazon EC2 from shutting down and
|
|
1317
|
+
* rebooting the instance.</p>
|
|
1318
|
+
* <important>
|
|
1319
|
+
* <p>If you choose to bypass the shutdown and reboot process by setting the <code>NoReboot</code>
|
|
1320
|
+
* parameter to <code>true</code> in the API request, or by using the <code>--no-reboot</code> option
|
|
1321
|
+
* in the CLI, we can't guarantee the file system integrity of the created image.</p>
|
|
1322
|
+
* </important>
|
|
1341
1323
|
*
|
|
1342
1324
|
*
|
|
1343
1325
|
*
|
|
@@ -1399,7 +1381,10 @@ export declare class EC2 extends EC2Client {
|
|
|
1399
1381
|
createInternetGateway(args: CreateInternetGatewayCommandInput, cb: (err: any, data?: CreateInternetGatewayCommandOutput) => void): void;
|
|
1400
1382
|
createInternetGateway(args: CreateInternetGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateInternetGatewayCommandOutput) => void): void;
|
|
1401
1383
|
/**
|
|
1402
|
-
* <p>Create an IPAM. Amazon
|
|
1384
|
+
* <p>Create an IPAM. Amazon VPC IP Address Manager (IPAM) is a VPC feature that you can use
|
|
1385
|
+
* to automate your IP address management workflows including assigning, tracking,
|
|
1386
|
+
* troubleshooting, and auditing IP addresses across Amazon Web Services Regions and accounts
|
|
1387
|
+
* throughout your Amazon Web Services Organization.</p>
|
|
1403
1388
|
* <p>For more information, see <a href="/vpc/latest/ipam/create-ipam.html">Create an IPAM</a> in the <i>Amazon VPC IPAM User Guide</i>.
|
|
1404
1389
|
* </p>
|
|
1405
1390
|
*/
|
|
@@ -1437,11 +1422,16 @@ export declare class EC2 extends EC2Client {
|
|
|
1437
1422
|
createKeyPair(args: CreateKeyPairCommandInput, cb: (err: any, data?: CreateKeyPairCommandOutput) => void): void;
|
|
1438
1423
|
createKeyPair(args: CreateKeyPairCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateKeyPairCommandOutput) => void): void;
|
|
1439
1424
|
/**
|
|
1440
|
-
* <p>Creates a launch template
|
|
1425
|
+
* <p>Creates a launch template.</p>
|
|
1426
|
+
* <p>A launch template contains the parameters to launch an
|
|
1441
1427
|
* instance. When you launch an instance using <a>RunInstances</a>, you can
|
|
1442
1428
|
* specify a launch template instead of providing the launch parameters in the request. For
|
|
1443
1429
|
* more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-templates.html">Launching an instance from a
|
|
1444
1430
|
* launch template</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
1431
|
+
* <p>If you want to clone an existing launch template as the basis for creating a new
|
|
1432
|
+
* launch template, you can use the Amazon EC2 console. The API, SDKs, and CLI do not support
|
|
1433
|
+
* cloning a template. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-templates.html#create-launch-template-from-existing-launch-template">Create a launch template from an existing launch template</a> in the
|
|
1434
|
+
* <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
1445
1435
|
*/
|
|
1446
1436
|
createLaunchTemplate(args: CreateLaunchTemplateCommandInput, options?: __HttpHandlerOptions): Promise<CreateLaunchTemplateCommandOutput>;
|
|
1447
1437
|
createLaunchTemplate(args: CreateLaunchTemplateCommandInput, cb: (err: any, data?: CreateLaunchTemplateCommandOutput) => void): void;
|
|
@@ -1931,19 +1921,7 @@ export declare class EC2 extends EC2Client {
|
|
|
1931
1921
|
* <p>Creates a VPC endpoint for a specified service. An endpoint enables you to create a
|
|
1932
1922
|
* private connection between your VPC and the service. The service may be provided by Amazon Web Services,
|
|
1933
1923
|
* an Amazon Web Services Marketplace Partner, or another Amazon Web Services account. For more information,
|
|
1934
|
-
* see <a href="https://docs.aws.amazon.com/vpc/latest/
|
|
1935
|
-
* <i>Amazon Virtual Private Cloud User Guide</i>.</p>
|
|
1936
|
-
* <p>A <code>gateway</code> endpoint serves as a target for a route in your route table for
|
|
1937
|
-
* traffic destined for the Amazon Web Service. You can specify an endpoint policy to attach
|
|
1938
|
-
* to the endpoint, which will control access to the service from your VPC. You can also
|
|
1939
|
-
* specify the VPC route tables that use the endpoint.</p>
|
|
1940
|
-
* <p>An <code>interface</code> endpoint is a network interface in your subnet that
|
|
1941
|
-
* serves as an endpoint for communicating with the specified service. You can specify the
|
|
1942
|
-
* subnets in which to create an endpoint, and the security groups to associate with the
|
|
1943
|
-
* endpoint network interface.</p>
|
|
1944
|
-
* <p>A <code>GatewayLoadBalancer</code> endpoint is a network interface in your subnet that serves an endpoint for communicating with a Gateway Load Balancer that you've configured as a VPC endpoint service.</p>
|
|
1945
|
-
* <p>Use <a>DescribeVpcEndpointServices</a> to get a list of supported
|
|
1946
|
-
* services.</p>
|
|
1924
|
+
* see the <a href="https://docs.aws.amazon.com/vpc/latest/privatelink/">Amazon Web Services PrivateLink Guide</a>.</p>
|
|
1947
1925
|
*/
|
|
1948
1926
|
createVpcEndpoint(args: CreateVpcEndpointCommandInput, options?: __HttpHandlerOptions): Promise<CreateVpcEndpointCommandOutput>;
|
|
1949
1927
|
createVpcEndpoint(args: CreateVpcEndpointCommandInput, cb: (err: any, data?: CreateVpcEndpointCommandOutput) => void): void;
|
|
@@ -1959,26 +1937,23 @@ export declare class EC2 extends EC2Client {
|
|
|
1959
1937
|
createVpcEndpointConnectionNotification(args: CreateVpcEndpointConnectionNotificationCommandInput, cb: (err: any, data?: CreateVpcEndpointConnectionNotificationCommandOutput) => void): void;
|
|
1960
1938
|
createVpcEndpointConnectionNotification(args: CreateVpcEndpointConnectionNotificationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVpcEndpointConnectionNotificationCommandOutput) => void): void;
|
|
1961
1939
|
/**
|
|
1962
|
-
* <p>Creates a VPC endpoint service
|
|
1940
|
+
* <p>Creates a VPC endpoint service to which service consumers (Amazon Web Services accounts,
|
|
1963
1941
|
* IAM users, and IAM roles) can connect.</p>
|
|
1964
|
-
* <p>
|
|
1965
|
-
* following for your service:</p>
|
|
1942
|
+
* <p>Before you create an endpoint service, you must create one of the following for your service:</p>
|
|
1966
1943
|
* <ul>
|
|
1967
1944
|
* <li>
|
|
1968
|
-
* <p>A <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/
|
|
1969
|
-
* interface endpoint.</p>
|
|
1945
|
+
* <p>A <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/">Network Load Balancer</a>.
|
|
1946
|
+
* Service consumers connect to your service using an interface endpoint.</p>
|
|
1970
1947
|
* </li>
|
|
1971
1948
|
* <li>
|
|
1972
|
-
* <p>A <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/gateway/
|
|
1973
|
-
* Gateway Load Balancer endpoint.</p>
|
|
1949
|
+
* <p>A <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/gateway/">Gateway Load Balancer</a>.
|
|
1950
|
+
* Service consumers connect to your service using a Gateway Load Balancer endpoint.</p>
|
|
1974
1951
|
* </li>
|
|
1975
1952
|
* </ul>
|
|
1976
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/vpc/latest/userguide/endpoint-service.html">VPC Endpoint Services</a> in the
|
|
1977
|
-
* <i>Amazon Virtual Private Cloud User Guide</i>. </p>
|
|
1978
1953
|
* <p>If you set the private DNS name, you must prove that you own the private DNS domain
|
|
1979
|
-
* name
|
|
1980
|
-
*
|
|
1981
|
-
*
|
|
1954
|
+
* name.</p>
|
|
1955
|
+
* <p>For more information, see the <a href="https://docs.aws.amazon.com/vpc/latest/privatelink/">Amazon Web Services PrivateLink
|
|
1956
|
+
* Guide</a>.</p>
|
|
1982
1957
|
*/
|
|
1983
1958
|
createVpcEndpointServiceConfiguration(args: CreateVpcEndpointServiceConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<CreateVpcEndpointServiceConfigurationCommandOutput>;
|
|
1984
1959
|
createVpcEndpointServiceConfiguration(args: CreateVpcEndpointServiceConfigurationCommandInput, cb: (err: any, data?: CreateVpcEndpointServiceConfigurationCommandOutput) => void): void;
|
|
@@ -2150,11 +2125,6 @@ export declare class EC2 extends EC2Client {
|
|
|
2150
2125
|
deleteInternetGateway(args: DeleteInternetGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteInternetGatewayCommandOutput) => void): void;
|
|
2151
2126
|
/**
|
|
2152
2127
|
* <p>Delete an IPAM. Deleting an IPAM removes all monitored data associated with the IPAM including the historical data for CIDRs.</p>
|
|
2153
|
-
* <note>
|
|
2154
|
-
* <p>You cannot delete an IPAM if there are CIDRs provisioned to pools or if there are allocations in the pools within the IPAM. To deprovision pool
|
|
2155
|
-
* CIDRs, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DeprovisionIpamPoolCidr.html">DeprovisionIpamPoolCidr</a>. To release allocations, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ReleaseIpamPoolAllocation.html">ReleaseIpamPoolAllocation</a>.
|
|
2156
|
-
* </p>
|
|
2157
|
-
* </note>
|
|
2158
2128
|
* <p>For more information, see <a href="/vpc/latest/ipam/delete-ipam.html">Delete an IPAM</a> in the <i>Amazon VPC IPAM User Guide</i>.
|
|
2159
2129
|
* </p>
|
|
2160
2130
|
*/
|
|
@@ -5118,8 +5088,9 @@ export declare class EC2 extends EC2Client {
|
|
|
5118
5088
|
* about tracking status changes using either method, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/monitoring-volume-modifications.html">Monitor the progress of volume modifications</a>.</p>
|
|
5119
5089
|
* <p>With previous-generation instance types, resizing an EBS volume might require detaching and
|
|
5120
5090
|
* reattaching the volume or stopping and restarting the instance.</p>
|
|
5121
|
-
* <p>
|
|
5122
|
-
*
|
|
5091
|
+
* <p>After modifying a volume, you must wait at least six hours and ensure that the volume
|
|
5092
|
+
* is in the <code>in-use</code> or <code>available</code> state before you can modify the same
|
|
5093
|
+
* volume. This is sometimes referred to as a cooldown period.</p>
|
|
5123
5094
|
*/
|
|
5124
5095
|
modifyVolume(args: ModifyVolumeCommandInput, options?: __HttpHandlerOptions): Promise<ModifyVolumeCommandOutput>;
|
|
5125
5096
|
modifyVolume(args: ModifyVolumeCommandInput, cb: (err: any, data?: ModifyVolumeCommandOutput) => void): void;
|
|
@@ -5144,9 +5115,9 @@ export declare class EC2 extends EC2Client {
|
|
|
5144
5115
|
modifyVpcAttribute(args: ModifyVpcAttributeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyVpcAttributeCommandOutput) => void): void;
|
|
5145
5116
|
/**
|
|
5146
5117
|
* <p>Modifies attributes of a specified VPC endpoint. The attributes that you can modify
|
|
5147
|
-
* depend on the type of VPC endpoint (interface, gateway, or Gateway Load Balancer). For more information,
|
|
5148
|
-
* <a href="https://docs.aws.amazon.com/vpc/latest/
|
|
5149
|
-
*
|
|
5118
|
+
* depend on the type of VPC endpoint (interface, gateway, or Gateway Load Balancer). For more information,
|
|
5119
|
+
* see the <a href="https://docs.aws.amazon.com/vpc/latest/privatelink/">Amazon Web Services PrivateLink
|
|
5120
|
+
* Guide</a>.</p>
|
|
5150
5121
|
*/
|
|
5151
5122
|
modifyVpcEndpoint(args: ModifyVpcEndpointCommandInput, options?: __HttpHandlerOptions): Promise<ModifyVpcEndpointCommandOutput>;
|
|
5152
5123
|
modifyVpcEndpoint(args: ModifyVpcEndpointCommandInput, cb: (err: any, data?: ModifyVpcEndpointCommandOutput) => void): void;
|
|
@@ -5164,9 +5135,7 @@ export declare class EC2 extends EC2Client {
|
|
|
5164
5135
|
* required for requests to connect to your endpoint service through an interface VPC
|
|
5165
5136
|
* endpoint.</p>
|
|
5166
5137
|
* <p>If you set or modify the private DNS name, you must prove that you own the private DNS
|
|
5167
|
-
* domain name
|
|
5168
|
-
* Private DNS Name Verification</a> in the
|
|
5169
|
-
* <i>Amazon Virtual Private Cloud User Guide</i>.</p>
|
|
5138
|
+
* domain name.</p>
|
|
5170
5139
|
*/
|
|
5171
5140
|
modifyVpcEndpointServiceConfiguration(args: ModifyVpcEndpointServiceConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<ModifyVpcEndpointServiceConfigurationCommandOutput>;
|
|
5172
5141
|
modifyVpcEndpointServiceConfiguration(args: ModifyVpcEndpointServiceConfigurationCommandInput, cb: (err: any, data?: ModifyVpcEndpointServiceConfigurationCommandOutput) => void): void;
|
|
@@ -5178,8 +5147,8 @@ export declare class EC2 extends EC2Client {
|
|
|
5178
5147
|
modifyVpcEndpointServicePayerResponsibility(args: ModifyVpcEndpointServicePayerResponsibilityCommandInput, cb: (err: any, data?: ModifyVpcEndpointServicePayerResponsibilityCommandOutput) => void): void;
|
|
5179
5148
|
modifyVpcEndpointServicePayerResponsibility(args: ModifyVpcEndpointServicePayerResponsibilityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyVpcEndpointServicePayerResponsibilityCommandOutput) => void): void;
|
|
5180
5149
|
/**
|
|
5181
|
-
* <p>Modifies the permissions for your
|
|
5182
|
-
* IAM roles, and Amazon Web Services accounts) to connect to your endpoint service.</p>
|
|
5150
|
+
* <p>Modifies the permissions for your VPC endpoint service. You can add or remove permissions for service consumers
|
|
5151
|
+
* (IAM users, IAM roles, and Amazon Web Services accounts) to connect to your endpoint service.</p>
|
|
5183
5152
|
* <p>If you grant permissions to all principals, the service is public. Any users who know the name of a
|
|
5184
5153
|
* public service can send a request to attach an endpoint. If the service does not require manual approval,
|
|
5185
5154
|
* attachments are automatically approved.</p>
|
|
@@ -5956,7 +5925,7 @@ export declare class EC2 extends EC2Client {
|
|
|
5956
5925
|
* <p>Initiates the verification process to prove that the service provider owns the private
|
|
5957
5926
|
* DNS name domain for the endpoint service.</p>
|
|
5958
5927
|
* <p>The service provider must successfully perform the verification before the consumer can use the name to access the service.</p>
|
|
5959
|
-
* <p>Before the service provider runs this command, they must add a record to the DNS server
|
|
5928
|
+
* <p>Before the service provider runs this command, they must add a record to the DNS server.</p>
|
|
5960
5929
|
*/
|
|
5961
5930
|
startVpcEndpointServicePrivateDnsVerification(args: StartVpcEndpointServicePrivateDnsVerificationCommandInput, options?: __HttpHandlerOptions): Promise<StartVpcEndpointServicePrivateDnsVerificationCommandOutput>;
|
|
5962
5931
|
startVpcEndpointServicePrivateDnsVerification(args: StartVpcEndpointServicePrivateDnsVerificationCommandInput, cb: (err: any, data?: StartVpcEndpointServicePrivateDnsVerificationCommandOutput) => void): void;
|
|
@@ -7,8 +7,7 @@ export interface AcceptVpcEndpointConnectionsCommandInput extends AcceptVpcEndpo
|
|
|
7
7
|
export interface AcceptVpcEndpointConnectionsCommandOutput extends AcceptVpcEndpointConnectionsResult, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Accepts one or more interface VPC endpoint connection requests to your VPC endpoint
|
|
11
|
-
* service.</p>
|
|
10
|
+
* <p>Accepts one or more interface VPC endpoint connection requests to your VPC endpoint service.</p>
|
|
12
11
|
* @example
|
|
13
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
14
13
|
* ```javascript
|
|
@@ -14,35 +14,14 @@ export interface CreateCustomerGatewayCommandOutput extends CreateCustomerGatewa
|
|
|
14
14
|
* interface. The IP address must be static and can be behind a device performing network
|
|
15
15
|
* address translation (NAT).</p>
|
|
16
16
|
* <p>For devices that use Border Gateway Protocol (BGP), you can also provide the device's
|
|
17
|
-
* BGP Autonomous System Number (ASN). You can use an existing ASN assigned to your
|
|
18
|
-
*
|
|
19
|
-
*
|
|
20
|
-
*
|
|
21
|
-
*
|
|
22
|
-
*
|
|
23
|
-
*
|
|
24
|
-
*
|
|
25
|
-
* <p>7224 - reserved in the <code>us-east-1</code> Region</p>
|
|
26
|
-
* </li>
|
|
27
|
-
* <li>
|
|
28
|
-
* <p>9059 - reserved in the <code>eu-west-1</code> Region</p>
|
|
29
|
-
* </li>
|
|
30
|
-
* <li>
|
|
31
|
-
* <p>17943 - reserved in the <code>ap-southeast-1</code> Region</p>
|
|
32
|
-
* </li>
|
|
33
|
-
* <li>
|
|
34
|
-
* <p>10124 - reserved in the <code>ap-northeast-1</code> Region</p>
|
|
35
|
-
* </li>
|
|
36
|
-
* </ul>
|
|
37
|
-
* </note>
|
|
38
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/vpn/latest/s2svpn/VPC_VPN.html">Amazon Web Services Site-to-Site VPN</a> in the <i>Amazon Web Services Site-to-Site VPN
|
|
39
|
-
* User Guide</i>.</p>
|
|
40
|
-
* <important>
|
|
41
|
-
* <p>To create more than one customer gateway with the same VPN type, IP address, and
|
|
42
|
-
* BGP ASN, specify a unique device name for each customer gateway. Identical requests
|
|
43
|
-
* return information about the existing customer gateway and do not create new
|
|
44
|
-
* customer gateways.</p>
|
|
45
|
-
* </important>
|
|
17
|
+
* BGP Autonomous System Number (ASN). You can use an existing ASN assigned to your network.
|
|
18
|
+
* If you don't have an ASN already, you can use a private ASN. For more information, see
|
|
19
|
+
* <a href="https://docs.aws.amazon.com/vpn/latest/s2svpn/cgw-options.html">Customer gateway
|
|
20
|
+
* options for your Site-to-Site VPN connection</a> in the <i>Amazon Web Services Site-to-Site VPN User Guide</i>.</p>
|
|
21
|
+
* <p>To create more than one customer gateway with the same VPN type, IP address, and
|
|
22
|
+
* BGP ASN, specify a unique device name for each customer gateway. An identical request
|
|
23
|
+
* returns information about the existing customer gateway; it doesn't create a new customer
|
|
24
|
+
* gateway.</p>
|
|
46
25
|
* @example
|
|
47
26
|
* Use a bare-bones client and the command you need to make an API call.
|
|
48
27
|
* ```javascript
|
|
@@ -9,12 +9,16 @@ export interface CreateImageCommandOutput extends CreateImageResult, __MetadataB
|
|
|
9
9
|
/**
|
|
10
10
|
* <p>Creates an Amazon EBS-backed AMI from an Amazon EBS-backed instance
|
|
11
11
|
* that is either running or stopped.</p>
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
*
|
|
16
|
-
*
|
|
17
|
-
*
|
|
12
|
+
* <p>By default, when Amazon EC2 creates the new AMI, it reboots the instance so that it can
|
|
13
|
+
* take snapshots of the attached volumes while data is at rest, in order to ensure a consistent
|
|
14
|
+
* state. You can set the <code>NoReboot</code> parameter to <code>true</code> in the API request,
|
|
15
|
+
* or use the <code>--no-reboot</code> option in the CLI to prevent Amazon EC2 from shutting down and
|
|
16
|
+
* rebooting the instance.</p>
|
|
17
|
+
* <important>
|
|
18
|
+
* <p>If you choose to bypass the shutdown and reboot process by setting the <code>NoReboot</code>
|
|
19
|
+
* parameter to <code>true</code> in the API request, or by using the <code>--no-reboot</code> option
|
|
20
|
+
* in the CLI, we can't guarantee the file system integrity of the created image.</p>
|
|
21
|
+
* </important>
|
|
18
22
|
*
|
|
19
23
|
*
|
|
20
24
|
*
|
|
@@ -7,7 +7,10 @@ export interface CreateIpamCommandInput extends CreateIpamRequest {
|
|
|
7
7
|
export interface CreateIpamCommandOutput extends CreateIpamResult, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Create an IPAM. Amazon
|
|
10
|
+
* <p>Create an IPAM. Amazon VPC IP Address Manager (IPAM) is a VPC feature that you can use
|
|
11
|
+
* to automate your IP address management workflows including assigning, tracking,
|
|
12
|
+
* troubleshooting, and auditing IP addresses across Amazon Web Services Regions and accounts
|
|
13
|
+
* throughout your Amazon Web Services Organization.</p>
|
|
11
14
|
* <p>For more information, see <a href="/vpc/latest/ipam/create-ipam.html">Create an IPAM</a> in the <i>Amazon VPC IPAM User Guide</i>.
|
|
12
15
|
* </p>
|
|
13
16
|
* @example
|
|
@@ -7,11 +7,16 @@ export interface CreateLaunchTemplateCommandInput extends CreateLaunchTemplateRe
|
|
|
7
7
|
export interface CreateLaunchTemplateCommandOutput extends CreateLaunchTemplateResult, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Creates a launch template
|
|
10
|
+
* <p>Creates a launch template.</p>
|
|
11
|
+
* <p>A launch template contains the parameters to launch an
|
|
11
12
|
* instance. When you launch an instance using <a>RunInstances</a>, you can
|
|
12
13
|
* specify a launch template instead of providing the launch parameters in the request. For
|
|
13
14
|
* more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-templates.html">Launching an instance from a
|
|
14
15
|
* launch template</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
16
|
+
* <p>If you want to clone an existing launch template as the basis for creating a new
|
|
17
|
+
* launch template, you can use the Amazon EC2 console. The API, SDKs, and CLI do not support
|
|
18
|
+
* cloning a template. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-templates.html#create-launch-template-from-existing-launch-template">Create a launch template from an existing launch template</a> in the
|
|
19
|
+
* <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
15
20
|
* @example
|
|
16
21
|
* Use a bare-bones client and the command you need to make an API call.
|
|
17
22
|
* ```javascript
|
|
@@ -10,19 +10,7 @@ export interface CreateVpcEndpointCommandOutput extends CreateVpcEndpointResult,
|
|
|
10
10
|
* <p>Creates a VPC endpoint for a specified service. An endpoint enables you to create a
|
|
11
11
|
* private connection between your VPC and the service. The service may be provided by Amazon Web Services,
|
|
12
12
|
* an Amazon Web Services Marketplace Partner, or another Amazon Web Services account. For more information,
|
|
13
|
-
* see <a href="https://docs.aws.amazon.com/vpc/latest/
|
|
14
|
-
* <i>Amazon Virtual Private Cloud User Guide</i>.</p>
|
|
15
|
-
* <p>A <code>gateway</code> endpoint serves as a target for a route in your route table for
|
|
16
|
-
* traffic destined for the Amazon Web Service. You can specify an endpoint policy to attach
|
|
17
|
-
* to the endpoint, which will control access to the service from your VPC. You can also
|
|
18
|
-
* specify the VPC route tables that use the endpoint.</p>
|
|
19
|
-
* <p>An <code>interface</code> endpoint is a network interface in your subnet that
|
|
20
|
-
* serves as an endpoint for communicating with the specified service. You can specify the
|
|
21
|
-
* subnets in which to create an endpoint, and the security groups to associate with the
|
|
22
|
-
* endpoint network interface.</p>
|
|
23
|
-
* <p>A <code>GatewayLoadBalancer</code> endpoint is a network interface in your subnet that serves an endpoint for communicating with a Gateway Load Balancer that you've configured as a VPC endpoint service.</p>
|
|
24
|
-
* <p>Use <a>DescribeVpcEndpointServices</a> to get a list of supported
|
|
25
|
-
* services.</p>
|
|
13
|
+
* see the <a href="https://docs.aws.amazon.com/vpc/latest/privatelink/">Amazon Web Services PrivateLink Guide</a>.</p>
|
|
26
14
|
* @example
|
|
27
15
|
* Use a bare-bones client and the command you need to make an API call.
|
|
28
16
|
* ```javascript
|
|
@@ -7,26 +7,23 @@ export interface CreateVpcEndpointServiceConfigurationCommandInput extends Creat
|
|
|
7
7
|
export interface CreateVpcEndpointServiceConfigurationCommandOutput extends CreateVpcEndpointServiceConfigurationResult, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Creates a VPC endpoint service
|
|
10
|
+
* <p>Creates a VPC endpoint service to which service consumers (Amazon Web Services accounts,
|
|
11
11
|
* IAM users, and IAM roles) can connect.</p>
|
|
12
|
-
* <p>
|
|
13
|
-
* following for your service:</p>
|
|
12
|
+
* <p>Before you create an endpoint service, you must create one of the following for your service:</p>
|
|
14
13
|
* <ul>
|
|
15
14
|
* <li>
|
|
16
|
-
* <p>A <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/
|
|
17
|
-
* interface endpoint.</p>
|
|
15
|
+
* <p>A <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/network/">Network Load Balancer</a>.
|
|
16
|
+
* Service consumers connect to your service using an interface endpoint.</p>
|
|
18
17
|
* </li>
|
|
19
18
|
* <li>
|
|
20
|
-
* <p>A <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/gateway/
|
|
21
|
-
* Gateway Load Balancer endpoint.</p>
|
|
19
|
+
* <p>A <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/gateway/">Gateway Load Balancer</a>.
|
|
20
|
+
* Service consumers connect to your service using a Gateway Load Balancer endpoint.</p>
|
|
22
21
|
* </li>
|
|
23
22
|
* </ul>
|
|
24
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/vpc/latest/userguide/endpoint-service.html">VPC Endpoint Services</a> in the
|
|
25
|
-
* <i>Amazon Virtual Private Cloud User Guide</i>. </p>
|
|
26
23
|
* <p>If you set the private DNS name, you must prove that you own the private DNS domain
|
|
27
|
-
* name
|
|
28
|
-
*
|
|
29
|
-
*
|
|
24
|
+
* name.</p>
|
|
25
|
+
* <p>For more information, see the <a href="https://docs.aws.amazon.com/vpc/latest/privatelink/">Amazon Web Services PrivateLink
|
|
26
|
+
* Guide</a>.</p>
|
|
30
27
|
* @example
|
|
31
28
|
* Use a bare-bones client and the command you need to make an API call.
|
|
32
29
|
* ```javascript
|
|
@@ -8,11 +8,6 @@ export interface DeleteIpamCommandOutput extends DeleteIpamResult, __MetadataBea
|
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* <p>Delete an IPAM. Deleting an IPAM removes all monitored data associated with the IPAM including the historical data for CIDRs.</p>
|
|
11
|
-
* <note>
|
|
12
|
-
* <p>You cannot delete an IPAM if there are CIDRs provisioned to pools or if there are allocations in the pools within the IPAM. To deprovision pool
|
|
13
|
-
* CIDRs, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DeprovisionIpamPoolCidr.html">DeprovisionIpamPoolCidr</a>. To release allocations, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ReleaseIpamPoolAllocation.html">ReleaseIpamPoolAllocation</a>.
|
|
14
|
-
* </p>
|
|
15
|
-
* </note>
|
|
16
11
|
* <p>For more information, see <a href="/vpc/latest/ipam/delete-ipam.html">Delete an IPAM</a> in the <i>Amazon VPC IPAM User Guide</i>.
|
|
17
12
|
* </p>
|
|
18
13
|
* @example
|
|
@@ -21,8 +21,9 @@ export interface ModifyVolumeCommandOutput extends ModifyVolumeResult, __Metadat
|
|
|
21
21
|
* about tracking status changes using either method, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/monitoring-volume-modifications.html">Monitor the progress of volume modifications</a>.</p>
|
|
22
22
|
* <p>With previous-generation instance types, resizing an EBS volume might require detaching and
|
|
23
23
|
* reattaching the volume or stopping and restarting the instance.</p>
|
|
24
|
-
* <p>
|
|
25
|
-
*
|
|
24
|
+
* <p>After modifying a volume, you must wait at least six hours and ensure that the volume
|
|
25
|
+
* is in the <code>in-use</code> or <code>available</code> state before you can modify the same
|
|
26
|
+
* volume. This is sometimes referred to as a cooldown period.</p>
|
|
26
27
|
* @example
|
|
27
28
|
* Use a bare-bones client and the command you need to make an API call.
|
|
28
29
|
* ```javascript
|
|
@@ -8,9 +8,9 @@ export interface ModifyVpcEndpointCommandOutput extends ModifyVpcEndpointResult,
|
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* <p>Modifies attributes of a specified VPC endpoint. The attributes that you can modify
|
|
11
|
-
* depend on the type of VPC endpoint (interface, gateway, or Gateway Load Balancer). For more information,
|
|
12
|
-
* <a href="https://docs.aws.amazon.com/vpc/latest/
|
|
13
|
-
*
|
|
11
|
+
* depend on the type of VPC endpoint (interface, gateway, or Gateway Load Balancer). For more information,
|
|
12
|
+
* see the <a href="https://docs.aws.amazon.com/vpc/latest/privatelink/">Amazon Web Services PrivateLink
|
|
13
|
+
* Guide</a>.</p>
|
|
14
14
|
* @example
|
|
15
15
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
16
|
* ```javascript
|
|
@@ -12,9 +12,7 @@ export interface ModifyVpcEndpointServiceConfigurationCommandOutput extends Modi
|
|
|
12
12
|
* required for requests to connect to your endpoint service through an interface VPC
|
|
13
13
|
* endpoint.</p>
|
|
14
14
|
* <p>If you set or modify the private DNS name, you must prove that you own the private DNS
|
|
15
|
-
* domain name
|
|
16
|
-
* Private DNS Name Verification</a> in the
|
|
17
|
-
* <i>Amazon Virtual Private Cloud User Guide</i>.</p>
|
|
15
|
+
* domain name.</p>
|
|
18
16
|
* @example
|
|
19
17
|
* Use a bare-bones client and the command you need to make an API call.
|
|
20
18
|
* ```javascript
|
|
@@ -7,8 +7,8 @@ export interface ModifyVpcEndpointServicePermissionsCommandInput extends ModifyV
|
|
|
7
7
|
export interface ModifyVpcEndpointServicePermissionsCommandOutput extends ModifyVpcEndpointServicePermissionsResult, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Modifies the permissions for your
|
|
11
|
-
* IAM roles, and Amazon Web Services accounts) to connect to your endpoint service.</p>
|
|
10
|
+
* <p>Modifies the permissions for your VPC endpoint service. You can add or remove permissions for service consumers
|
|
11
|
+
* (IAM users, IAM roles, and Amazon Web Services accounts) to connect to your endpoint service.</p>
|
|
12
12
|
* <p>If you grant permissions to all principals, the service is public. Any users who know the name of a
|
|
13
13
|
* public service can send a request to attach an endpoint. If the service does not require manual approval,
|
|
14
14
|
* attachments are automatically approved.</p>
|
|
@@ -10,7 +10,7 @@ export interface StartVpcEndpointServicePrivateDnsVerificationCommandOutput exte
|
|
|
10
10
|
* <p>Initiates the verification process to prove that the service provider owns the private
|
|
11
11
|
* DNS name domain for the endpoint service.</p>
|
|
12
12
|
* <p>The service provider must successfully perform the verification before the consumer can use the name to access the service.</p>
|
|
13
|
-
* <p>Before the service provider runs this command, they must add a record to the DNS server
|
|
13
|
+
* <p>Before the service provider runs this command, they must add a record to the DNS server.</p>
|
|
14
14
|
* @example
|
|
15
15
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
16
|
* ```javascript
|
|
@@ -5236,7 +5236,7 @@ export declare namespace CreateCapacityReservationResult {
|
|
|
5236
5236
|
export declare enum FleetInstanceMatchCriteria {
|
|
5237
5237
|
open = "open"
|
|
5238
5238
|
}
|
|
5239
|
-
export declare type _InstanceType = "a1.2xlarge" | "a1.4xlarge" | "a1.large" | "a1.medium" | "a1.metal" | "a1.xlarge" | "c1.medium" | "c1.xlarge" | "c3.2xlarge" | "c3.4xlarge" | "c3.8xlarge" | "c3.large" | "c3.xlarge" | "c4.2xlarge" | "c4.4xlarge" | "c4.8xlarge" | "c4.large" | "c4.xlarge" | "c5.12xlarge" | "c5.18xlarge" | "c5.24xlarge" | "c5.2xlarge" | "c5.4xlarge" | "c5.9xlarge" | "c5.large" | "c5.metal" | "c5.xlarge" | "c5a.12xlarge" | "c5a.16xlarge" | "c5a.24xlarge" | "c5a.2xlarge" | "c5a.4xlarge" | "c5a.8xlarge" | "c5a.large" | "c5a.xlarge" | "c5ad.12xlarge" | "c5ad.16xlarge" | "c5ad.24xlarge" | "c5ad.2xlarge" | "c5ad.4xlarge" | "c5ad.8xlarge" | "c5ad.large" | "c5ad.xlarge" | "c5d.12xlarge" | "c5d.18xlarge" | "c5d.24xlarge" | "c5d.2xlarge" | "c5d.4xlarge" | "c5d.9xlarge" | "c5d.large" | "c5d.metal" | "c5d.xlarge" | "c5n.18xlarge" | "c5n.2xlarge" | "c5n.4xlarge" | "c5n.9xlarge" | "c5n.large" | "c5n.metal" | "c5n.xlarge" | "c6g.12xlarge" | "c6g.16xlarge" | "c6g.2xlarge" | "c6g.4xlarge" | "c6g.8xlarge" | "c6g.large" | "c6g.medium" | "c6g.metal" | "c6g.xlarge" | "c6gd.12xlarge" | "c6gd.16xlarge" | "c6gd.2xlarge" | "c6gd.4xlarge" | "c6gd.8xlarge" | "c6gd.large" | "c6gd.medium" | "c6gd.metal" | "c6gd.xlarge" | "c6gn.12xlarge" | "c6gn.16xlarge" | "c6gn.2xlarge" | "c6gn.4xlarge" | "c6gn.8xlarge" | "c6gn.large" | "c6gn.medium" | "c6gn.xlarge" | "c6i.12xlarge" | "c6i.16xlarge" | "c6i.24xlarge" | "c6i.2xlarge" | "c6i.32xlarge" | "c6i.4xlarge" | "c6i.8xlarge" | "c6i.large" | "c6i.metal" | "c6i.xlarge" | "cc1.4xlarge" | "cc2.8xlarge" | "cg1.4xlarge" | "cr1.8xlarge" | "d2.2xlarge" | "d2.4xlarge" | "d2.8xlarge" | "d2.xlarge" | "d3.2xlarge" | "d3.4xlarge" | "d3.8xlarge" | "d3.xlarge" | "d3en.12xlarge" | "d3en.2xlarge" | "d3en.4xlarge" | "d3en.6xlarge" | "d3en.8xlarge" | "d3en.xlarge" | "dl1.24xlarge" | "f1.16xlarge" | "f1.2xlarge" | "f1.4xlarge" | "g2.2xlarge" | "g2.8xlarge" | "g3.16xlarge" | "g3.4xlarge" | "g3.8xlarge" | "g3s.xlarge" | "g4ad.16xlarge" | "g4ad.2xlarge" | "g4ad.4xlarge" | "g4ad.8xlarge" | "g4ad.xlarge" | "g4dn.12xlarge" | "g4dn.16xlarge" | "g4dn.2xlarge" | "g4dn.4xlarge" | "g4dn.8xlarge" | "g4dn.metal" | "g4dn.xlarge" | "g5.12xlarge" | "g5.16xlarge" | "g5.24xlarge" | "g5.2xlarge" | "g5.48xlarge" | "g5.4xlarge" | "g5.8xlarge" | "g5.xlarge" | "g5g.16xlarge" | "g5g.2xlarge" | "g5g.4xlarge" | "g5g.8xlarge" | "g5g.metal" | "g5g.xlarge" | "h1.16xlarge" | "h1.2xlarge" | "h1.4xlarge" | "h1.8xlarge" | "hi1.4xlarge" | "hpc6a.48xlarge" | "hs1.8xlarge" | "i2.2xlarge" | "i2.4xlarge" | "i2.8xlarge" | "i2.xlarge" | "i3.16xlarge" | "i3.2xlarge" | "i3.4xlarge" | "i3.8xlarge" | "i3.large" | "i3.metal" | "i3.xlarge" | "i3en.12xlarge" | "i3en.24xlarge" | "i3en.2xlarge" | "i3en.3xlarge" | "i3en.6xlarge" | "i3en.large" | "i3en.metal" | "i3en.xlarge" | "im4gn.16xlarge" | "im4gn.2xlarge" | "im4gn.4xlarge" | "im4gn.8xlarge" | "im4gn.large" | "im4gn.xlarge" | "inf1.24xlarge" | "inf1.2xlarge" | "inf1.6xlarge" | "inf1.xlarge" | "is4gen.2xlarge" | "is4gen.4xlarge" | "is4gen.8xlarge" | "is4gen.large" | "is4gen.medium" | "is4gen.xlarge" | "m1.large" | "m1.medium" | "m1.small" | "m1.xlarge" | "m2.2xlarge" | "m2.4xlarge" | "m2.xlarge" | "m3.2xlarge" | "m3.large" | "m3.medium" | "m3.xlarge" | "m4.10xlarge" | "m4.16xlarge" | "m4.2xlarge" | "m4.4xlarge" | "m4.large" | "m4.xlarge" | "m5.12xlarge" | "m5.16xlarge" | "m5.24xlarge" | "m5.2xlarge" | "m5.4xlarge" | "m5.8xlarge" | "m5.large" | "m5.metal" | "m5.xlarge" | "m5a.12xlarge" | "m5a.16xlarge" | "m5a.24xlarge" | "m5a.2xlarge" | "m5a.4xlarge" | "m5a.8xlarge" | "m5a.large" | "m5a.xlarge" | "m5ad.12xlarge" | "m5ad.16xlarge" | "m5ad.24xlarge" | "m5ad.2xlarge" | "m5ad.4xlarge" | "m5ad.8xlarge" | "m5ad.large" | "m5ad.xlarge" | "m5d.12xlarge" | "m5d.16xlarge" | "m5d.24xlarge" | "m5d.2xlarge" | "m5d.4xlarge" | "m5d.8xlarge" | "m5d.large" | "m5d.metal" | "m5d.xlarge" | "m5dn.12xlarge" | "m5dn.16xlarge" | "m5dn.24xlarge" | "m5dn.2xlarge" | "m5dn.4xlarge" | "m5dn.8xlarge" | "m5dn.large" | "m5dn.metal" | "m5dn.xlarge" | "m5n.12xlarge" | "m5n.16xlarge" | "m5n.24xlarge" | "m5n.2xlarge" | "m5n.4xlarge" | "m5n.8xlarge" | "m5n.large" | "m5n.metal" | "m5n.xlarge" | "m5zn.12xlarge" | "m5zn.2xlarge" | "m5zn.3xlarge" | "m5zn.6xlarge" | "m5zn.large" | "m5zn.metal" | "m5zn.xlarge" | "m6a.12xlarge" | "m6a.16xlarge" | "m6a.24xlarge" | "m6a.2xlarge" | "m6a.32xlarge" | "m6a.48xlarge" | "m6a.4xlarge" | "m6a.8xlarge" | "m6a.large" | "m6a.xlarge" | "m6g.12xlarge" | "m6g.16xlarge" | "m6g.2xlarge" | "m6g.4xlarge" | "m6g.8xlarge" | "m6g.large" | "m6g.medium" | "m6g.metal" | "m6g.xlarge" | "m6gd.12xlarge" | "m6gd.16xlarge" | "m6gd.2xlarge" | "m6gd.4xlarge" | "m6gd.8xlarge" | "m6gd.large" | "m6gd.medium" | "m6gd.metal" | "m6gd.xlarge" | "m6i.12xlarge" | "m6i.16xlarge" | "m6i.24xlarge" | "m6i.2xlarge" | "m6i.32xlarge" | "m6i.4xlarge" | "m6i.8xlarge" | "m6i.large" | "m6i.metal" | "m6i.xlarge" | "mac1.metal" | "p2.16xlarge" | "p2.8xlarge" | "p2.xlarge" | "p3.16xlarge" | "p3.2xlarge" | "p3.8xlarge" | "p3dn.24xlarge" | "p4d.24xlarge" | "r3.2xlarge" | "r3.4xlarge" | "r3.8xlarge" | "r3.large" | "r3.xlarge" | "r4.16xlarge" | "r4.2xlarge" | "r4.4xlarge" | "r4.8xlarge" | "r4.large" | "r4.xlarge" | "r5.12xlarge" | "r5.16xlarge" | "r5.24xlarge" | "r5.2xlarge" | "r5.4xlarge" | "r5.8xlarge" | "r5.large" | "r5.metal" | "r5.xlarge" | "r5a.12xlarge" | "r5a.16xlarge" | "r5a.24xlarge" | "r5a.2xlarge" | "r5a.4xlarge" | "r5a.8xlarge" | "r5a.large" | "r5a.xlarge" | "r5ad.12xlarge" | "r5ad.16xlarge" | "r5ad.24xlarge" | "r5ad.2xlarge" | "r5ad.4xlarge" | "r5ad.8xlarge" | "r5ad.large" | "r5ad.xlarge" | "r5b.12xlarge" | "r5b.16xlarge" | "r5b.24xlarge" | "r5b.2xlarge" | "r5b.4xlarge" | "r5b.8xlarge" | "r5b.large" | "r5b.metal" | "r5b.xlarge" | "r5d.12xlarge" | "r5d.16xlarge" | "r5d.24xlarge" | "r5d.2xlarge" | "r5d.4xlarge" | "r5d.8xlarge" | "r5d.large" | "r5d.metal" | "r5d.xlarge" | "r5dn.12xlarge" | "r5dn.16xlarge" | "r5dn.24xlarge" | "r5dn.2xlarge" | "r5dn.4xlarge" | "r5dn.8xlarge" | "r5dn.large" | "r5dn.metal" | "r5dn.xlarge" | "r5n.12xlarge" | "r5n.16xlarge" | "r5n.24xlarge" | "r5n.2xlarge" | "r5n.4xlarge" | "r5n.8xlarge" | "r5n.large" | "r5n.metal" | "r5n.xlarge" | "r6g.12xlarge" | "r6g.16xlarge" | "r6g.2xlarge" | "r6g.4xlarge" | "r6g.8xlarge" | "r6g.large" | "r6g.medium" | "r6g.metal" | "r6g.xlarge" | "r6gd.12xlarge" | "r6gd.16xlarge" | "r6gd.2xlarge" | "r6gd.4xlarge" | "r6gd.8xlarge" | "r6gd.large" | "r6gd.medium" | "r6gd.metal" | "r6gd.xlarge" | "r6i.12xlarge" | "r6i.16xlarge" | "r6i.24xlarge" | "r6i.2xlarge" | "r6i.32xlarge" | "r6i.4xlarge" | "r6i.8xlarge" | "r6i.large" | "r6i.metal" | "r6i.xlarge" | "t1.micro" | "t2.2xlarge" | "t2.large" | "t2.medium" | "t2.micro" | "t2.nano" | "t2.small" | "t2.xlarge" | "t3.2xlarge" | "t3.large" | "t3.medium" | "t3.micro" | "t3.nano" | "t3.small" | "t3.xlarge" | "t3a.2xlarge" | "t3a.large" | "t3a.medium" | "t3a.micro" | "t3a.nano" | "t3a.small" | "t3a.xlarge" | "t4g.2xlarge" | "t4g.large" | "t4g.medium" | "t4g.micro" | "t4g.nano" | "t4g.small" | "t4g.xlarge" | "u-12tb1.112xlarge" | "u-12tb1.metal" | "u-18tb1.metal" | "u-24tb1.metal" | "u-6tb1.112xlarge" | "u-6tb1.56xlarge" | "u-6tb1.metal" | "u-9tb1.112xlarge" | "u-9tb1.metal" | "vt1.24xlarge" | "vt1.3xlarge" | "vt1.6xlarge" | "x1.16xlarge" | "x1.32xlarge" | "x1e.16xlarge" | "x1e.2xlarge" | "x1e.32xlarge" | "x1e.4xlarge" | "x1e.8xlarge" | "x1e.xlarge" | "x2gd.12xlarge" | "x2gd.16xlarge" | "x2gd.2xlarge" | "x2gd.4xlarge" | "x2gd.8xlarge" | "x2gd.large" | "x2gd.medium" | "x2gd.metal" | "x2gd.xlarge" | "x2iezn.12xlarge" | "x2iezn.2xlarge" | "x2iezn.4xlarge" | "x2iezn.6xlarge" | "x2iezn.8xlarge" | "x2iezn.metal" | "z1d.12xlarge" | "z1d.2xlarge" | "z1d.3xlarge" | "z1d.6xlarge" | "z1d.large" | "z1d.metal" | "z1d.xlarge";
|
|
5239
|
+
export declare type _InstanceType = "a1.2xlarge" | "a1.4xlarge" | "a1.large" | "a1.medium" | "a1.metal" | "a1.xlarge" | "c1.medium" | "c1.xlarge" | "c3.2xlarge" | "c3.4xlarge" | "c3.8xlarge" | "c3.large" | "c3.xlarge" | "c4.2xlarge" | "c4.4xlarge" | "c4.8xlarge" | "c4.large" | "c4.xlarge" | "c5.12xlarge" | "c5.18xlarge" | "c5.24xlarge" | "c5.2xlarge" | "c5.4xlarge" | "c5.9xlarge" | "c5.large" | "c5.metal" | "c5.xlarge" | "c5a.12xlarge" | "c5a.16xlarge" | "c5a.24xlarge" | "c5a.2xlarge" | "c5a.4xlarge" | "c5a.8xlarge" | "c5a.large" | "c5a.xlarge" | "c5ad.12xlarge" | "c5ad.16xlarge" | "c5ad.24xlarge" | "c5ad.2xlarge" | "c5ad.4xlarge" | "c5ad.8xlarge" | "c5ad.large" | "c5ad.xlarge" | "c5d.12xlarge" | "c5d.18xlarge" | "c5d.24xlarge" | "c5d.2xlarge" | "c5d.4xlarge" | "c5d.9xlarge" | "c5d.large" | "c5d.metal" | "c5d.xlarge" | "c5n.18xlarge" | "c5n.2xlarge" | "c5n.4xlarge" | "c5n.9xlarge" | "c5n.large" | "c5n.metal" | "c5n.xlarge" | "c6a.12xlarge" | "c6a.16xlarge" | "c6a.24xlarge" | "c6a.2xlarge" | "c6a.32xlarge" | "c6a.48xlarge" | "c6a.4xlarge" | "c6a.8xlarge" | "c6a.large" | "c6a.metal" | "c6a.xlarge" | "c6g.12xlarge" | "c6g.16xlarge" | "c6g.2xlarge" | "c6g.4xlarge" | "c6g.8xlarge" | "c6g.large" | "c6g.medium" | "c6g.metal" | "c6g.xlarge" | "c6gd.12xlarge" | "c6gd.16xlarge" | "c6gd.2xlarge" | "c6gd.4xlarge" | "c6gd.8xlarge" | "c6gd.large" | "c6gd.medium" | "c6gd.metal" | "c6gd.xlarge" | "c6gn.12xlarge" | "c6gn.16xlarge" | "c6gn.2xlarge" | "c6gn.4xlarge" | "c6gn.8xlarge" | "c6gn.large" | "c6gn.medium" | "c6gn.xlarge" | "c6i.12xlarge" | "c6i.16xlarge" | "c6i.24xlarge" | "c6i.2xlarge" | "c6i.32xlarge" | "c6i.4xlarge" | "c6i.8xlarge" | "c6i.large" | "c6i.metal" | "c6i.xlarge" | "cc1.4xlarge" | "cc2.8xlarge" | "cg1.4xlarge" | "cr1.8xlarge" | "d2.2xlarge" | "d2.4xlarge" | "d2.8xlarge" | "d2.xlarge" | "d3.2xlarge" | "d3.4xlarge" | "d3.8xlarge" | "d3.xlarge" | "d3en.12xlarge" | "d3en.2xlarge" | "d3en.4xlarge" | "d3en.6xlarge" | "d3en.8xlarge" | "d3en.xlarge" | "dl1.24xlarge" | "f1.16xlarge" | "f1.2xlarge" | "f1.4xlarge" | "g2.2xlarge" | "g2.8xlarge" | "g3.16xlarge" | "g3.4xlarge" | "g3.8xlarge" | "g3s.xlarge" | "g4ad.16xlarge" | "g4ad.2xlarge" | "g4ad.4xlarge" | "g4ad.8xlarge" | "g4ad.xlarge" | "g4dn.12xlarge" | "g4dn.16xlarge" | "g4dn.2xlarge" | "g4dn.4xlarge" | "g4dn.8xlarge" | "g4dn.metal" | "g4dn.xlarge" | "g5.12xlarge" | "g5.16xlarge" | "g5.24xlarge" | "g5.2xlarge" | "g5.48xlarge" | "g5.4xlarge" | "g5.8xlarge" | "g5.xlarge" | "g5g.16xlarge" | "g5g.2xlarge" | "g5g.4xlarge" | "g5g.8xlarge" | "g5g.metal" | "g5g.xlarge" | "h1.16xlarge" | "h1.2xlarge" | "h1.4xlarge" | "h1.8xlarge" | "hi1.4xlarge" | "hpc6a.48xlarge" | "hs1.8xlarge" | "i2.2xlarge" | "i2.4xlarge" | "i2.8xlarge" | "i2.xlarge" | "i3.16xlarge" | "i3.2xlarge" | "i3.4xlarge" | "i3.8xlarge" | "i3.large" | "i3.metal" | "i3.xlarge" | "i3en.12xlarge" | "i3en.24xlarge" | "i3en.2xlarge" | "i3en.3xlarge" | "i3en.6xlarge" | "i3en.large" | "i3en.metal" | "i3en.xlarge" | "im4gn.16xlarge" | "im4gn.2xlarge" | "im4gn.4xlarge" | "im4gn.8xlarge" | "im4gn.large" | "im4gn.xlarge" | "inf1.24xlarge" | "inf1.2xlarge" | "inf1.6xlarge" | "inf1.xlarge" | "is4gen.2xlarge" | "is4gen.4xlarge" | "is4gen.8xlarge" | "is4gen.large" | "is4gen.medium" | "is4gen.xlarge" | "m1.large" | "m1.medium" | "m1.small" | "m1.xlarge" | "m2.2xlarge" | "m2.4xlarge" | "m2.xlarge" | "m3.2xlarge" | "m3.large" | "m3.medium" | "m3.xlarge" | "m4.10xlarge" | "m4.16xlarge" | "m4.2xlarge" | "m4.4xlarge" | "m4.large" | "m4.xlarge" | "m5.12xlarge" | "m5.16xlarge" | "m5.24xlarge" | "m5.2xlarge" | "m5.4xlarge" | "m5.8xlarge" | "m5.large" | "m5.metal" | "m5.xlarge" | "m5a.12xlarge" | "m5a.16xlarge" | "m5a.24xlarge" | "m5a.2xlarge" | "m5a.4xlarge" | "m5a.8xlarge" | "m5a.large" | "m5a.xlarge" | "m5ad.12xlarge" | "m5ad.16xlarge" | "m5ad.24xlarge" | "m5ad.2xlarge" | "m5ad.4xlarge" | "m5ad.8xlarge" | "m5ad.large" | "m5ad.xlarge" | "m5d.12xlarge" | "m5d.16xlarge" | "m5d.24xlarge" | "m5d.2xlarge" | "m5d.4xlarge" | "m5d.8xlarge" | "m5d.large" | "m5d.metal" | "m5d.xlarge" | "m5dn.12xlarge" | "m5dn.16xlarge" | "m5dn.24xlarge" | "m5dn.2xlarge" | "m5dn.4xlarge" | "m5dn.8xlarge" | "m5dn.large" | "m5dn.metal" | "m5dn.xlarge" | "m5n.12xlarge" | "m5n.16xlarge" | "m5n.24xlarge" | "m5n.2xlarge" | "m5n.4xlarge" | "m5n.8xlarge" | "m5n.large" | "m5n.metal" | "m5n.xlarge" | "m5zn.12xlarge" | "m5zn.2xlarge" | "m5zn.3xlarge" | "m5zn.6xlarge" | "m5zn.large" | "m5zn.metal" | "m5zn.xlarge" | "m6a.12xlarge" | "m6a.16xlarge" | "m6a.24xlarge" | "m6a.2xlarge" | "m6a.32xlarge" | "m6a.48xlarge" | "m6a.4xlarge" | "m6a.8xlarge" | "m6a.large" | "m6a.metal" | "m6a.xlarge" | "m6g.12xlarge" | "m6g.16xlarge" | "m6g.2xlarge" | "m6g.4xlarge" | "m6g.8xlarge" | "m6g.large" | "m6g.medium" | "m6g.metal" | "m6g.xlarge" | "m6gd.12xlarge" | "m6gd.16xlarge" | "m6gd.2xlarge" | "m6gd.4xlarge" | "m6gd.8xlarge" | "m6gd.large" | "m6gd.medium" | "m6gd.metal" | "m6gd.xlarge" | "m6i.12xlarge" | "m6i.16xlarge" | "m6i.24xlarge" | "m6i.2xlarge" | "m6i.32xlarge" | "m6i.4xlarge" | "m6i.8xlarge" | "m6i.large" | "m6i.metal" | "m6i.xlarge" | "mac1.metal" | "p2.16xlarge" | "p2.8xlarge" | "p2.xlarge" | "p3.16xlarge" | "p3.2xlarge" | "p3.8xlarge" | "p3dn.24xlarge" | "p4d.24xlarge" | "r3.2xlarge" | "r3.4xlarge" | "r3.8xlarge" | "r3.large" | "r3.xlarge" | "r4.16xlarge" | "r4.2xlarge" | "r4.4xlarge" | "r4.8xlarge" | "r4.large" | "r4.xlarge" | "r5.12xlarge" | "r5.16xlarge" | "r5.24xlarge" | "r5.2xlarge" | "r5.4xlarge" | "r5.8xlarge" | "r5.large" | "r5.metal" | "r5.xlarge" | "r5a.12xlarge" | "r5a.16xlarge" | "r5a.24xlarge" | "r5a.2xlarge" | "r5a.4xlarge" | "r5a.8xlarge" | "r5a.large" | "r5a.xlarge" | "r5ad.12xlarge" | "r5ad.16xlarge" | "r5ad.24xlarge" | "r5ad.2xlarge" | "r5ad.4xlarge" | "r5ad.8xlarge" | "r5ad.large" | "r5ad.xlarge" | "r5b.12xlarge" | "r5b.16xlarge" | "r5b.24xlarge" | "r5b.2xlarge" | "r5b.4xlarge" | "r5b.8xlarge" | "r5b.large" | "r5b.metal" | "r5b.xlarge" | "r5d.12xlarge" | "r5d.16xlarge" | "r5d.24xlarge" | "r5d.2xlarge" | "r5d.4xlarge" | "r5d.8xlarge" | "r5d.large" | "r5d.metal" | "r5d.xlarge" | "r5dn.12xlarge" | "r5dn.16xlarge" | "r5dn.24xlarge" | "r5dn.2xlarge" | "r5dn.4xlarge" | "r5dn.8xlarge" | "r5dn.large" | "r5dn.metal" | "r5dn.xlarge" | "r5n.12xlarge" | "r5n.16xlarge" | "r5n.24xlarge" | "r5n.2xlarge" | "r5n.4xlarge" | "r5n.8xlarge" | "r5n.large" | "r5n.metal" | "r5n.xlarge" | "r6g.12xlarge" | "r6g.16xlarge" | "r6g.2xlarge" | "r6g.4xlarge" | "r6g.8xlarge" | "r6g.large" | "r6g.medium" | "r6g.metal" | "r6g.xlarge" | "r6gd.12xlarge" | "r6gd.16xlarge" | "r6gd.2xlarge" | "r6gd.4xlarge" | "r6gd.8xlarge" | "r6gd.large" | "r6gd.medium" | "r6gd.metal" | "r6gd.xlarge" | "r6i.12xlarge" | "r6i.16xlarge" | "r6i.24xlarge" | "r6i.2xlarge" | "r6i.32xlarge" | "r6i.4xlarge" | "r6i.8xlarge" | "r6i.large" | "r6i.metal" | "r6i.xlarge" | "t1.micro" | "t2.2xlarge" | "t2.large" | "t2.medium" | "t2.micro" | "t2.nano" | "t2.small" | "t2.xlarge" | "t3.2xlarge" | "t3.large" | "t3.medium" | "t3.micro" | "t3.nano" | "t3.small" | "t3.xlarge" | "t3a.2xlarge" | "t3a.large" | "t3a.medium" | "t3a.micro" | "t3a.nano" | "t3a.small" | "t3a.xlarge" | "t4g.2xlarge" | "t4g.large" | "t4g.medium" | "t4g.micro" | "t4g.nano" | "t4g.small" | "t4g.xlarge" | "u-12tb1.112xlarge" | "u-12tb1.metal" | "u-18tb1.metal" | "u-24tb1.metal" | "u-6tb1.112xlarge" | "u-6tb1.56xlarge" | "u-6tb1.metal" | "u-9tb1.112xlarge" | "u-9tb1.metal" | "vt1.24xlarge" | "vt1.3xlarge" | "vt1.6xlarge" | "x1.16xlarge" | "x1.32xlarge" | "x1e.16xlarge" | "x1e.2xlarge" | "x1e.32xlarge" | "x1e.4xlarge" | "x1e.8xlarge" | "x1e.xlarge" | "x2gd.12xlarge" | "x2gd.16xlarge" | "x2gd.2xlarge" | "x2gd.4xlarge" | "x2gd.8xlarge" | "x2gd.large" | "x2gd.medium" | "x2gd.metal" | "x2gd.xlarge" | "x2idn.16xlarge" | "x2idn.24xlarge" | "x2idn.32xlarge" | "x2iedn.16xlarge" | "x2iedn.24xlarge" | "x2iedn.2xlarge" | "x2iedn.32xlarge" | "x2iedn.4xlarge" | "x2iedn.8xlarge" | "x2iedn.xlarge" | "x2iezn.12xlarge" | "x2iezn.2xlarge" | "x2iezn.4xlarge" | "x2iezn.6xlarge" | "x2iezn.8xlarge" | "x2iezn.metal" | "z1d.12xlarge" | "z1d.2xlarge" | "z1d.3xlarge" | "z1d.6xlarge" | "z1d.large" | "z1d.metal" | "z1d.xlarge";
|
|
5240
5240
|
/**
|
|
5241
5241
|
* <p>Information about an instance type to use in a Capacity Reservation Fleet.</p>
|
|
5242
5242
|
*/
|
|
@@ -1903,6 +1903,9 @@ export interface EbsBlockDevice {
|
|
|
1903
1903
|
Throughput?: number;
|
|
1904
1904
|
/**
|
|
1905
1905
|
* <p>The ARN of the Outpost on which the snapshot is stored.</p>
|
|
1906
|
+
* <p>This parameter is only supported on <code>BlockDeviceMapping</code> objects called
|
|
1907
|
+
* by <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateImage.html">
|
|
1908
|
+
* CreateImage</a>.</p>
|
|
1906
1909
|
*/
|
|
1907
1910
|
OutpostArn?: string;
|
|
1908
1911
|
/**
|
|
@@ -1989,11 +1992,17 @@ export interface CreateImageRequest {
|
|
|
1989
1992
|
*/
|
|
1990
1993
|
Name: string | undefined;
|
|
1991
1994
|
/**
|
|
1992
|
-
* <p>By default, Amazon EC2
|
|
1993
|
-
*
|
|
1994
|
-
*
|
|
1995
|
-
*
|
|
1996
|
-
*
|
|
1995
|
+
* <p>By default, when Amazon EC2 creates the new AMI, it reboots the instance so that it can
|
|
1996
|
+
* take snapshots of the attached volumes while data is at rest, in order to ensure a consistent
|
|
1997
|
+
* state. You can set the <code>NoReboot</code> parameter to <code>true</code> in the API request,
|
|
1998
|
+
* or use the <code>--no-reboot</code> option in the CLI to prevent Amazon EC2 from shutting down and
|
|
1999
|
+
* rebooting the instance.</p>
|
|
2000
|
+
* <important>
|
|
2001
|
+
* <p>If you choose to bypass the shutdown and reboot process by setting the <code>NoReboot</code>
|
|
2002
|
+
* parameter to <code>true</code> in the API request, or by using the <code>--no-reboot</code> option
|
|
2003
|
+
* in the CLI, we can't guarantee the file system integrity of the created image.</p>
|
|
2004
|
+
* </important>
|
|
2005
|
+
* <p>Default: <code>false</code> (follow standard reboot process)</p>
|
|
1997
2006
|
*/
|
|
1998
2007
|
NoReboot?: boolean;
|
|
1999
2008
|
/**
|
|
@@ -2872,7 +2881,7 @@ export interface CreateKeyPairRequest {
|
|
|
2872
2881
|
*/
|
|
2873
2882
|
DryRun?: boolean;
|
|
2874
2883
|
/**
|
|
2875
|
-
* <p>The type of key pair. Note that ED25519 keys are not supported for Windows instances
|
|
2884
|
+
* <p>The type of key pair. Note that ED25519 keys are not supported for Windows instances.</p>
|
|
2876
2885
|
* <p>Default: <code>rsa</code>
|
|
2877
2886
|
* </p>
|
|
2878
2887
|
*/
|
|
@@ -3687,6 +3696,9 @@ export declare namespace LaunchTemplateTagSpecificationRequest {
|
|
|
3687
3696
|
}
|
|
3688
3697
|
/**
|
|
3689
3698
|
* <p>The information to include in the launch template.</p>
|
|
3699
|
+
* <note>
|
|
3700
|
+
* <p>You must specify at least one parameter for the launch template data.</p>
|
|
3701
|
+
* </note>
|
|
3690
3702
|
*/
|
|
3691
3703
|
export interface RequestLaunchTemplateData {
|
|
3692
3704
|
/**
|
|
@@ -1449,7 +1449,7 @@ export interface CreateVpcEndpointServiceConfigurationRequest {
|
|
|
1449
1449
|
DryRun?: boolean;
|
|
1450
1450
|
/**
|
|
1451
1451
|
* <p>Indicates whether requests from service consumers to create an endpoint to your service must
|
|
1452
|
-
* be accepted
|
|
1452
|
+
* be accepted manually.</p>
|
|
1453
1453
|
*/
|
|
1454
1454
|
AcceptanceRequired?: boolean;
|
|
1455
1455
|
/**
|
|
@@ -1491,10 +1491,7 @@ export declare enum DnsNameState {
|
|
|
1491
1491
|
Verified = "verified"
|
|
1492
1492
|
}
|
|
1493
1493
|
/**
|
|
1494
|
-
* <p>Information about the private DNS name for the service endpoint
|
|
1495
|
-
* about these parameters, see <a href="https://docs.aws.amazon.com/vpc/latest/userguide/ndpoint-services-dns-validation.html">VPC Endpoint Service
|
|
1496
|
-
* Private DNS Name Verification</a> in the
|
|
1497
|
-
* <i>Amazon Virtual Private Cloud User Guide</i>.</p>
|
|
1494
|
+
* <p>Information about the private DNS name for the service endpoint.</p>
|
|
1498
1495
|
*/
|
|
1499
1496
|
export interface PrivateDnsNameConfiguration {
|
|
1500
1497
|
/**
|
|
@@ -3308,6 +3308,13 @@ export interface DescribeImagesRequest {
|
|
|
3308
3308
|
* </li>
|
|
3309
3309
|
* <li>
|
|
3310
3310
|
* <p>
|
|
3311
|
+
* <code>creation-date</code> - The time when the image was created, in the ISO 8601
|
|
3312
|
+
* format in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ), for example,
|
|
3313
|
+
* <code>2021-09-29T11:04:43.305Z</code>. You can use a wildcard (<code>*</code>), for
|
|
3314
|
+
* example, <code>2021-09-29T*</code>, which matches an entire day.</p>
|
|
3315
|
+
* </li>
|
|
3316
|
+
* <li>
|
|
3317
|
+
* <p>
|
|
3311
3318
|
* <code>description</code> - The description of the image (provided during image
|
|
3312
3319
|
* creation).</p>
|
|
3313
3320
|
* </li>
|
|
@@ -8192,10 +8199,6 @@ export interface DescribeLocalGatewayVirtualInterfacesRequest {
|
|
|
8192
8199
|
* </li>
|
|
8193
8200
|
* <li>
|
|
8194
8201
|
* <p>
|
|
8195
|
-
* <code>local-gateway-virtual-interface-group-id</code> - The ID of the virtual interface group.</p>
|
|
8196
|
-
* </li>
|
|
8197
|
-
* <li>
|
|
8198
|
-
* <p>
|
|
8199
8202
|
* <code>owner-id</code> - The ID of the Amazon Web Services account that owns the local gateway virtual interface.</p>
|
|
8200
8203
|
* </li>
|
|
8201
8204
|
* <li>
|
|
@@ -1026,9 +1026,8 @@ export interface RunInstancesRequest {
|
|
|
1026
1026
|
*/
|
|
1027
1027
|
SubnetId?: string;
|
|
1028
1028
|
/**
|
|
1029
|
-
* <p>The user data to make available to the instance. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/user-data.html">Run commands
|
|
1030
|
-
* your Linux instance at launch</a> and <a href="https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/ec2-windows-user-data.html">Run commands on your
|
|
1031
|
-
* Windows instance at launch</a>. If you are using a command line tool,
|
|
1029
|
+
* <p>The user data script to make available to the instance. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/user-data.html">Run commands
|
|
1030
|
+
* on your Linux instance at launch</a> and <a href="https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/ec2-windows-user-data.html">Run commands on your Windows instance at launch</a>. If you are using a command line tool,
|
|
1032
1031
|
* base64-encoding is performed for you, and you can load the text from a file. Otherwise,
|
|
1033
1032
|
* you must provide base64-encoded text. User data is limited to 16 KB.</p>
|
|
1034
1033
|
*/
|
|
@@ -2753,7 +2753,7 @@ export declare namespace CreateCapacityReservationResult {
|
|
|
2753
2753
|
export declare enum FleetInstanceMatchCriteria {
|
|
2754
2754
|
open = "open"
|
|
2755
2755
|
}
|
|
2756
|
-
export declare type _InstanceType = "a1.2xlarge" | "a1.4xlarge" | "a1.large" | "a1.medium" | "a1.metal" | "a1.xlarge" | "c1.medium" | "c1.xlarge" | "c3.2xlarge" | "c3.4xlarge" | "c3.8xlarge" | "c3.large" | "c3.xlarge" | "c4.2xlarge" | "c4.4xlarge" | "c4.8xlarge" | "c4.large" | "c4.xlarge" | "c5.12xlarge" | "c5.18xlarge" | "c5.24xlarge" | "c5.2xlarge" | "c5.4xlarge" | "c5.9xlarge" | "c5.large" | "c5.metal" | "c5.xlarge" | "c5a.12xlarge" | "c5a.16xlarge" | "c5a.24xlarge" | "c5a.2xlarge" | "c5a.4xlarge" | "c5a.8xlarge" | "c5a.large" | "c5a.xlarge" | "c5ad.12xlarge" | "c5ad.16xlarge" | "c5ad.24xlarge" | "c5ad.2xlarge" | "c5ad.4xlarge" | "c5ad.8xlarge" | "c5ad.large" | "c5ad.xlarge" | "c5d.12xlarge" | "c5d.18xlarge" | "c5d.24xlarge" | "c5d.2xlarge" | "c5d.4xlarge" | "c5d.9xlarge" | "c5d.large" | "c5d.metal" | "c5d.xlarge" | "c5n.18xlarge" | "c5n.2xlarge" | "c5n.4xlarge" | "c5n.9xlarge" | "c5n.large" | "c5n.metal" | "c5n.xlarge" | "c6g.12xlarge" | "c6g.16xlarge" | "c6g.2xlarge" | "c6g.4xlarge" | "c6g.8xlarge" | "c6g.large" | "c6g.medium" | "c6g.metal" | "c6g.xlarge" | "c6gd.12xlarge" | "c6gd.16xlarge" | "c6gd.2xlarge" | "c6gd.4xlarge" | "c6gd.8xlarge" | "c6gd.large" | "c6gd.medium" | "c6gd.metal" | "c6gd.xlarge" | "c6gn.12xlarge" | "c6gn.16xlarge" | "c6gn.2xlarge" | "c6gn.4xlarge" | "c6gn.8xlarge" | "c6gn.large" | "c6gn.medium" | "c6gn.xlarge" | "c6i.12xlarge" | "c6i.16xlarge" | "c6i.24xlarge" | "c6i.2xlarge" | "c6i.32xlarge" | "c6i.4xlarge" | "c6i.8xlarge" | "c6i.large" | "c6i.metal" | "c6i.xlarge" | "cc1.4xlarge" | "cc2.8xlarge" | "cg1.4xlarge" | "cr1.8xlarge" | "d2.2xlarge" | "d2.4xlarge" | "d2.8xlarge" | "d2.xlarge" | "d3.2xlarge" | "d3.4xlarge" | "d3.8xlarge" | "d3.xlarge" | "d3en.12xlarge" | "d3en.2xlarge" | "d3en.4xlarge" | "d3en.6xlarge" | "d3en.8xlarge" | "d3en.xlarge" | "dl1.24xlarge" | "f1.16xlarge" | "f1.2xlarge" | "f1.4xlarge" | "g2.2xlarge" | "g2.8xlarge" | "g3.16xlarge" | "g3.4xlarge" | "g3.8xlarge" | "g3s.xlarge" | "g4ad.16xlarge" | "g4ad.2xlarge" | "g4ad.4xlarge" | "g4ad.8xlarge" | "g4ad.xlarge" | "g4dn.12xlarge" | "g4dn.16xlarge" | "g4dn.2xlarge" | "g4dn.4xlarge" | "g4dn.8xlarge" | "g4dn.metal" | "g4dn.xlarge" | "g5.12xlarge" | "g5.16xlarge" | "g5.24xlarge" | "g5.2xlarge" | "g5.48xlarge" | "g5.4xlarge" | "g5.8xlarge" | "g5.xlarge" | "g5g.16xlarge" | "g5g.2xlarge" | "g5g.4xlarge" | "g5g.8xlarge" | "g5g.metal" | "g5g.xlarge" | "h1.16xlarge" | "h1.2xlarge" | "h1.4xlarge" | "h1.8xlarge" | "hi1.4xlarge" | "hpc6a.48xlarge" | "hs1.8xlarge" | "i2.2xlarge" | "i2.4xlarge" | "i2.8xlarge" | "i2.xlarge" | "i3.16xlarge" | "i3.2xlarge" | "i3.4xlarge" | "i3.8xlarge" | "i3.large" | "i3.metal" | "i3.xlarge" | "i3en.12xlarge" | "i3en.24xlarge" | "i3en.2xlarge" | "i3en.3xlarge" | "i3en.6xlarge" | "i3en.large" | "i3en.metal" | "i3en.xlarge" | "im4gn.16xlarge" | "im4gn.2xlarge" | "im4gn.4xlarge" | "im4gn.8xlarge" | "im4gn.large" | "im4gn.xlarge" | "inf1.24xlarge" | "inf1.2xlarge" | "inf1.6xlarge" | "inf1.xlarge" | "is4gen.2xlarge" | "is4gen.4xlarge" | "is4gen.8xlarge" | "is4gen.large" | "is4gen.medium" | "is4gen.xlarge" | "m1.large" | "m1.medium" | "m1.small" | "m1.xlarge" | "m2.2xlarge" | "m2.4xlarge" | "m2.xlarge" | "m3.2xlarge" | "m3.large" | "m3.medium" | "m3.xlarge" | "m4.10xlarge" | "m4.16xlarge" | "m4.2xlarge" | "m4.4xlarge" | "m4.large" | "m4.xlarge" | "m5.12xlarge" | "m5.16xlarge" | "m5.24xlarge" | "m5.2xlarge" | "m5.4xlarge" | "m5.8xlarge" | "m5.large" | "m5.metal" | "m5.xlarge" | "m5a.12xlarge" | "m5a.16xlarge" | "m5a.24xlarge" | "m5a.2xlarge" | "m5a.4xlarge" | "m5a.8xlarge" | "m5a.large" | "m5a.xlarge" | "m5ad.12xlarge" | "m5ad.16xlarge" | "m5ad.24xlarge" | "m5ad.2xlarge" | "m5ad.4xlarge" | "m5ad.8xlarge" | "m5ad.large" | "m5ad.xlarge" | "m5d.12xlarge" | "m5d.16xlarge" | "m5d.24xlarge" | "m5d.2xlarge" | "m5d.4xlarge" | "m5d.8xlarge" | "m5d.large" | "m5d.metal" | "m5d.xlarge" | "m5dn.12xlarge" | "m5dn.16xlarge" | "m5dn.24xlarge" | "m5dn.2xlarge" | "m5dn.4xlarge" | "m5dn.8xlarge" | "m5dn.large" | "m5dn.metal" | "m5dn.xlarge" | "m5n.12xlarge" | "m5n.16xlarge" | "m5n.24xlarge" | "m5n.2xlarge" | "m5n.4xlarge" | "m5n.8xlarge" | "m5n.large" | "m5n.metal" | "m5n.xlarge" | "m5zn.12xlarge" | "m5zn.2xlarge" | "m5zn.3xlarge" | "m5zn.6xlarge" | "m5zn.large" | "m5zn.metal" | "m5zn.xlarge" | "m6a.12xlarge" | "m6a.16xlarge" | "m6a.24xlarge" | "m6a.2xlarge" | "m6a.32xlarge" | "m6a.48xlarge" | "m6a.4xlarge" | "m6a.8xlarge" | "m6a.large" | "m6a.xlarge" | "m6g.12xlarge" | "m6g.16xlarge" | "m6g.2xlarge" | "m6g.4xlarge" | "m6g.8xlarge" | "m6g.large" | "m6g.medium" | "m6g.metal" | "m6g.xlarge" | "m6gd.12xlarge" | "m6gd.16xlarge" | "m6gd.2xlarge" | "m6gd.4xlarge" | "m6gd.8xlarge" | "m6gd.large" | "m6gd.medium" | "m6gd.metal" | "m6gd.xlarge" | "m6i.12xlarge" | "m6i.16xlarge" | "m6i.24xlarge" | "m6i.2xlarge" | "m6i.32xlarge" | "m6i.4xlarge" | "m6i.8xlarge" | "m6i.large" | "m6i.metal" | "m6i.xlarge" | "mac1.metal" | "p2.16xlarge" | "p2.8xlarge" | "p2.xlarge" | "p3.16xlarge" | "p3.2xlarge" | "p3.8xlarge" | "p3dn.24xlarge" | "p4d.24xlarge" | "r3.2xlarge" | "r3.4xlarge" | "r3.8xlarge" | "r3.large" | "r3.xlarge" | "r4.16xlarge" | "r4.2xlarge" | "r4.4xlarge" | "r4.8xlarge" | "r4.large" | "r4.xlarge" | "r5.12xlarge" | "r5.16xlarge" | "r5.24xlarge" | "r5.2xlarge" | "r5.4xlarge" | "r5.8xlarge" | "r5.large" | "r5.metal" | "r5.xlarge" | "r5a.12xlarge" | "r5a.16xlarge" | "r5a.24xlarge" | "r5a.2xlarge" | "r5a.4xlarge" | "r5a.8xlarge" | "r5a.large" | "r5a.xlarge" | "r5ad.12xlarge" | "r5ad.16xlarge" | "r5ad.24xlarge" | "r5ad.2xlarge" | "r5ad.4xlarge" | "r5ad.8xlarge" | "r5ad.large" | "r5ad.xlarge" | "r5b.12xlarge" | "r5b.16xlarge" | "r5b.24xlarge" | "r5b.2xlarge" | "r5b.4xlarge" | "r5b.8xlarge" | "r5b.large" | "r5b.metal" | "r5b.xlarge" | "r5d.12xlarge" | "r5d.16xlarge" | "r5d.24xlarge" | "r5d.2xlarge" | "r5d.4xlarge" | "r5d.8xlarge" | "r5d.large" | "r5d.metal" | "r5d.xlarge" | "r5dn.12xlarge" | "r5dn.16xlarge" | "r5dn.24xlarge" | "r5dn.2xlarge" | "r5dn.4xlarge" | "r5dn.8xlarge" | "r5dn.large" | "r5dn.metal" | "r5dn.xlarge" | "r5n.12xlarge" | "r5n.16xlarge" | "r5n.24xlarge" | "r5n.2xlarge" | "r5n.4xlarge" | "r5n.8xlarge" | "r5n.large" | "r5n.metal" | "r5n.xlarge" | "r6g.12xlarge" | "r6g.16xlarge" | "r6g.2xlarge" | "r6g.4xlarge" | "r6g.8xlarge" | "r6g.large" | "r6g.medium" | "r6g.metal" | "r6g.xlarge" | "r6gd.12xlarge" | "r6gd.16xlarge" | "r6gd.2xlarge" | "r6gd.4xlarge" | "r6gd.8xlarge" | "r6gd.large" | "r6gd.medium" | "r6gd.metal" | "r6gd.xlarge" | "r6i.12xlarge" | "r6i.16xlarge" | "r6i.24xlarge" | "r6i.2xlarge" | "r6i.32xlarge" | "r6i.4xlarge" | "r6i.8xlarge" | "r6i.large" | "r6i.metal" | "r6i.xlarge" | "t1.micro" | "t2.2xlarge" | "t2.large" | "t2.medium" | "t2.micro" | "t2.nano" | "t2.small" | "t2.xlarge" | "t3.2xlarge" | "t3.large" | "t3.medium" | "t3.micro" | "t3.nano" | "t3.small" | "t3.xlarge" | "t3a.2xlarge" | "t3a.large" | "t3a.medium" | "t3a.micro" | "t3a.nano" | "t3a.small" | "t3a.xlarge" | "t4g.2xlarge" | "t4g.large" | "t4g.medium" | "t4g.micro" | "t4g.nano" | "t4g.small" | "t4g.xlarge" | "u-12tb1.112xlarge" | "u-12tb1.metal" | "u-18tb1.metal" | "u-24tb1.metal" | "u-6tb1.112xlarge" | "u-6tb1.56xlarge" | "u-6tb1.metal" | "u-9tb1.112xlarge" | "u-9tb1.metal" | "vt1.24xlarge" | "vt1.3xlarge" | "vt1.6xlarge" | "x1.16xlarge" | "x1.32xlarge" | "x1e.16xlarge" | "x1e.2xlarge" | "x1e.32xlarge" | "x1e.4xlarge" | "x1e.8xlarge" | "x1e.xlarge" | "x2gd.12xlarge" | "x2gd.16xlarge" | "x2gd.2xlarge" | "x2gd.4xlarge" | "x2gd.8xlarge" | "x2gd.large" | "x2gd.medium" | "x2gd.metal" | "x2gd.xlarge" | "x2iezn.12xlarge" | "x2iezn.2xlarge" | "x2iezn.4xlarge" | "x2iezn.6xlarge" | "x2iezn.8xlarge" | "x2iezn.metal" | "z1d.12xlarge" | "z1d.2xlarge" | "z1d.3xlarge" | "z1d.6xlarge" | "z1d.large" | "z1d.metal" | "z1d.xlarge";
|
|
2756
|
+
export declare type _InstanceType = "a1.2xlarge" | "a1.4xlarge" | "a1.large" | "a1.medium" | "a1.metal" | "a1.xlarge" | "c1.medium" | "c1.xlarge" | "c3.2xlarge" | "c3.4xlarge" | "c3.8xlarge" | "c3.large" | "c3.xlarge" | "c4.2xlarge" | "c4.4xlarge" | "c4.8xlarge" | "c4.large" | "c4.xlarge" | "c5.12xlarge" | "c5.18xlarge" | "c5.24xlarge" | "c5.2xlarge" | "c5.4xlarge" | "c5.9xlarge" | "c5.large" | "c5.metal" | "c5.xlarge" | "c5a.12xlarge" | "c5a.16xlarge" | "c5a.24xlarge" | "c5a.2xlarge" | "c5a.4xlarge" | "c5a.8xlarge" | "c5a.large" | "c5a.xlarge" | "c5ad.12xlarge" | "c5ad.16xlarge" | "c5ad.24xlarge" | "c5ad.2xlarge" | "c5ad.4xlarge" | "c5ad.8xlarge" | "c5ad.large" | "c5ad.xlarge" | "c5d.12xlarge" | "c5d.18xlarge" | "c5d.24xlarge" | "c5d.2xlarge" | "c5d.4xlarge" | "c5d.9xlarge" | "c5d.large" | "c5d.metal" | "c5d.xlarge" | "c5n.18xlarge" | "c5n.2xlarge" | "c5n.4xlarge" | "c5n.9xlarge" | "c5n.large" | "c5n.metal" | "c5n.xlarge" | "c6a.12xlarge" | "c6a.16xlarge" | "c6a.24xlarge" | "c6a.2xlarge" | "c6a.32xlarge" | "c6a.48xlarge" | "c6a.4xlarge" | "c6a.8xlarge" | "c6a.large" | "c6a.metal" | "c6a.xlarge" | "c6g.12xlarge" | "c6g.16xlarge" | "c6g.2xlarge" | "c6g.4xlarge" | "c6g.8xlarge" | "c6g.large" | "c6g.medium" | "c6g.metal" | "c6g.xlarge" | "c6gd.12xlarge" | "c6gd.16xlarge" | "c6gd.2xlarge" | "c6gd.4xlarge" | "c6gd.8xlarge" | "c6gd.large" | "c6gd.medium" | "c6gd.metal" | "c6gd.xlarge" | "c6gn.12xlarge" | "c6gn.16xlarge" | "c6gn.2xlarge" | "c6gn.4xlarge" | "c6gn.8xlarge" | "c6gn.large" | "c6gn.medium" | "c6gn.xlarge" | "c6i.12xlarge" | "c6i.16xlarge" | "c6i.24xlarge" | "c6i.2xlarge" | "c6i.32xlarge" | "c6i.4xlarge" | "c6i.8xlarge" | "c6i.large" | "c6i.metal" | "c6i.xlarge" | "cc1.4xlarge" | "cc2.8xlarge" | "cg1.4xlarge" | "cr1.8xlarge" | "d2.2xlarge" | "d2.4xlarge" | "d2.8xlarge" | "d2.xlarge" | "d3.2xlarge" | "d3.4xlarge" | "d3.8xlarge" | "d3.xlarge" | "d3en.12xlarge" | "d3en.2xlarge" | "d3en.4xlarge" | "d3en.6xlarge" | "d3en.8xlarge" | "d3en.xlarge" | "dl1.24xlarge" | "f1.16xlarge" | "f1.2xlarge" | "f1.4xlarge" | "g2.2xlarge" | "g2.8xlarge" | "g3.16xlarge" | "g3.4xlarge" | "g3.8xlarge" | "g3s.xlarge" | "g4ad.16xlarge" | "g4ad.2xlarge" | "g4ad.4xlarge" | "g4ad.8xlarge" | "g4ad.xlarge" | "g4dn.12xlarge" | "g4dn.16xlarge" | "g4dn.2xlarge" | "g4dn.4xlarge" | "g4dn.8xlarge" | "g4dn.metal" | "g4dn.xlarge" | "g5.12xlarge" | "g5.16xlarge" | "g5.24xlarge" | "g5.2xlarge" | "g5.48xlarge" | "g5.4xlarge" | "g5.8xlarge" | "g5.xlarge" | "g5g.16xlarge" | "g5g.2xlarge" | "g5g.4xlarge" | "g5g.8xlarge" | "g5g.metal" | "g5g.xlarge" | "h1.16xlarge" | "h1.2xlarge" | "h1.4xlarge" | "h1.8xlarge" | "hi1.4xlarge" | "hpc6a.48xlarge" | "hs1.8xlarge" | "i2.2xlarge" | "i2.4xlarge" | "i2.8xlarge" | "i2.xlarge" | "i3.16xlarge" | "i3.2xlarge" | "i3.4xlarge" | "i3.8xlarge" | "i3.large" | "i3.metal" | "i3.xlarge" | "i3en.12xlarge" | "i3en.24xlarge" | "i3en.2xlarge" | "i3en.3xlarge" | "i3en.6xlarge" | "i3en.large" | "i3en.metal" | "i3en.xlarge" | "im4gn.16xlarge" | "im4gn.2xlarge" | "im4gn.4xlarge" | "im4gn.8xlarge" | "im4gn.large" | "im4gn.xlarge" | "inf1.24xlarge" | "inf1.2xlarge" | "inf1.6xlarge" | "inf1.xlarge" | "is4gen.2xlarge" | "is4gen.4xlarge" | "is4gen.8xlarge" | "is4gen.large" | "is4gen.medium" | "is4gen.xlarge" | "m1.large" | "m1.medium" | "m1.small" | "m1.xlarge" | "m2.2xlarge" | "m2.4xlarge" | "m2.xlarge" | "m3.2xlarge" | "m3.large" | "m3.medium" | "m3.xlarge" | "m4.10xlarge" | "m4.16xlarge" | "m4.2xlarge" | "m4.4xlarge" | "m4.large" | "m4.xlarge" | "m5.12xlarge" | "m5.16xlarge" | "m5.24xlarge" | "m5.2xlarge" | "m5.4xlarge" | "m5.8xlarge" | "m5.large" | "m5.metal" | "m5.xlarge" | "m5a.12xlarge" | "m5a.16xlarge" | "m5a.24xlarge" | "m5a.2xlarge" | "m5a.4xlarge" | "m5a.8xlarge" | "m5a.large" | "m5a.xlarge" | "m5ad.12xlarge" | "m5ad.16xlarge" | "m5ad.24xlarge" | "m5ad.2xlarge" | "m5ad.4xlarge" | "m5ad.8xlarge" | "m5ad.large" | "m5ad.xlarge" | "m5d.12xlarge" | "m5d.16xlarge" | "m5d.24xlarge" | "m5d.2xlarge" | "m5d.4xlarge" | "m5d.8xlarge" | "m5d.large" | "m5d.metal" | "m5d.xlarge" | "m5dn.12xlarge" | "m5dn.16xlarge" | "m5dn.24xlarge" | "m5dn.2xlarge" | "m5dn.4xlarge" | "m5dn.8xlarge" | "m5dn.large" | "m5dn.metal" | "m5dn.xlarge" | "m5n.12xlarge" | "m5n.16xlarge" | "m5n.24xlarge" | "m5n.2xlarge" | "m5n.4xlarge" | "m5n.8xlarge" | "m5n.large" | "m5n.metal" | "m5n.xlarge" | "m5zn.12xlarge" | "m5zn.2xlarge" | "m5zn.3xlarge" | "m5zn.6xlarge" | "m5zn.large" | "m5zn.metal" | "m5zn.xlarge" | "m6a.12xlarge" | "m6a.16xlarge" | "m6a.24xlarge" | "m6a.2xlarge" | "m6a.32xlarge" | "m6a.48xlarge" | "m6a.4xlarge" | "m6a.8xlarge" | "m6a.large" | "m6a.metal" | "m6a.xlarge" | "m6g.12xlarge" | "m6g.16xlarge" | "m6g.2xlarge" | "m6g.4xlarge" | "m6g.8xlarge" | "m6g.large" | "m6g.medium" | "m6g.metal" | "m6g.xlarge" | "m6gd.12xlarge" | "m6gd.16xlarge" | "m6gd.2xlarge" | "m6gd.4xlarge" | "m6gd.8xlarge" | "m6gd.large" | "m6gd.medium" | "m6gd.metal" | "m6gd.xlarge" | "m6i.12xlarge" | "m6i.16xlarge" | "m6i.24xlarge" | "m6i.2xlarge" | "m6i.32xlarge" | "m6i.4xlarge" | "m6i.8xlarge" | "m6i.large" | "m6i.metal" | "m6i.xlarge" | "mac1.metal" | "p2.16xlarge" | "p2.8xlarge" | "p2.xlarge" | "p3.16xlarge" | "p3.2xlarge" | "p3.8xlarge" | "p3dn.24xlarge" | "p4d.24xlarge" | "r3.2xlarge" | "r3.4xlarge" | "r3.8xlarge" | "r3.large" | "r3.xlarge" | "r4.16xlarge" | "r4.2xlarge" | "r4.4xlarge" | "r4.8xlarge" | "r4.large" | "r4.xlarge" | "r5.12xlarge" | "r5.16xlarge" | "r5.24xlarge" | "r5.2xlarge" | "r5.4xlarge" | "r5.8xlarge" | "r5.large" | "r5.metal" | "r5.xlarge" | "r5a.12xlarge" | "r5a.16xlarge" | "r5a.24xlarge" | "r5a.2xlarge" | "r5a.4xlarge" | "r5a.8xlarge" | "r5a.large" | "r5a.xlarge" | "r5ad.12xlarge" | "r5ad.16xlarge" | "r5ad.24xlarge" | "r5ad.2xlarge" | "r5ad.4xlarge" | "r5ad.8xlarge" | "r5ad.large" | "r5ad.xlarge" | "r5b.12xlarge" | "r5b.16xlarge" | "r5b.24xlarge" | "r5b.2xlarge" | "r5b.4xlarge" | "r5b.8xlarge" | "r5b.large" | "r5b.metal" | "r5b.xlarge" | "r5d.12xlarge" | "r5d.16xlarge" | "r5d.24xlarge" | "r5d.2xlarge" | "r5d.4xlarge" | "r5d.8xlarge" | "r5d.large" | "r5d.metal" | "r5d.xlarge" | "r5dn.12xlarge" | "r5dn.16xlarge" | "r5dn.24xlarge" | "r5dn.2xlarge" | "r5dn.4xlarge" | "r5dn.8xlarge" | "r5dn.large" | "r5dn.metal" | "r5dn.xlarge" | "r5n.12xlarge" | "r5n.16xlarge" | "r5n.24xlarge" | "r5n.2xlarge" | "r5n.4xlarge" | "r5n.8xlarge" | "r5n.large" | "r5n.metal" | "r5n.xlarge" | "r6g.12xlarge" | "r6g.16xlarge" | "r6g.2xlarge" | "r6g.4xlarge" | "r6g.8xlarge" | "r6g.large" | "r6g.medium" | "r6g.metal" | "r6g.xlarge" | "r6gd.12xlarge" | "r6gd.16xlarge" | "r6gd.2xlarge" | "r6gd.4xlarge" | "r6gd.8xlarge" | "r6gd.large" | "r6gd.medium" | "r6gd.metal" | "r6gd.xlarge" | "r6i.12xlarge" | "r6i.16xlarge" | "r6i.24xlarge" | "r6i.2xlarge" | "r6i.32xlarge" | "r6i.4xlarge" | "r6i.8xlarge" | "r6i.large" | "r6i.metal" | "r6i.xlarge" | "t1.micro" | "t2.2xlarge" | "t2.large" | "t2.medium" | "t2.micro" | "t2.nano" | "t2.small" | "t2.xlarge" | "t3.2xlarge" | "t3.large" | "t3.medium" | "t3.micro" | "t3.nano" | "t3.small" | "t3.xlarge" | "t3a.2xlarge" | "t3a.large" | "t3a.medium" | "t3a.micro" | "t3a.nano" | "t3a.small" | "t3a.xlarge" | "t4g.2xlarge" | "t4g.large" | "t4g.medium" | "t4g.micro" | "t4g.nano" | "t4g.small" | "t4g.xlarge" | "u-12tb1.112xlarge" | "u-12tb1.metal" | "u-18tb1.metal" | "u-24tb1.metal" | "u-6tb1.112xlarge" | "u-6tb1.56xlarge" | "u-6tb1.metal" | "u-9tb1.112xlarge" | "u-9tb1.metal" | "vt1.24xlarge" | "vt1.3xlarge" | "vt1.6xlarge" | "x1.16xlarge" | "x1.32xlarge" | "x1e.16xlarge" | "x1e.2xlarge" | "x1e.32xlarge" | "x1e.4xlarge" | "x1e.8xlarge" | "x1e.xlarge" | "x2gd.12xlarge" | "x2gd.16xlarge" | "x2gd.2xlarge" | "x2gd.4xlarge" | "x2gd.8xlarge" | "x2gd.large" | "x2gd.medium" | "x2gd.metal" | "x2gd.xlarge" | "x2idn.16xlarge" | "x2idn.24xlarge" | "x2idn.32xlarge" | "x2iedn.16xlarge" | "x2iedn.24xlarge" | "x2iedn.2xlarge" | "x2iedn.32xlarge" | "x2iedn.4xlarge" | "x2iedn.8xlarge" | "x2iedn.xlarge" | "x2iezn.12xlarge" | "x2iezn.2xlarge" | "x2iezn.4xlarge" | "x2iezn.6xlarge" | "x2iezn.8xlarge" | "x2iezn.metal" | "z1d.12xlarge" | "z1d.2xlarge" | "z1d.3xlarge" | "z1d.6xlarge" | "z1d.large" | "z1d.metal" | "z1d.xlarge";
|
|
2757
2757
|
|
|
2758
2758
|
export interface ReservationFleetInstanceSpecification {
|
|
2759
2759
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ec2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ec2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.71.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.67.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.58.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.67.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.58.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.55.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.55.0",
|