@aws-sdk/client-ec2 3.139.0 → 3.142.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.
Files changed (40) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/README.md +1 -1
  3. package/dist-cjs/protocols/Aws_ec2.js +6902 -11162
  4. package/dist-es/protocols/Aws_ec2.js +7436 -11163
  5. package/dist-types/EC2.d.ts +95 -7
  6. package/dist-types/commands/AllocateAddressCommand.d.ts +3 -0
  7. package/dist-types/commands/AssociateAddressCommand.d.ts +4 -0
  8. package/dist-types/commands/AttachClassicLinkVpcCommand.d.ts +4 -1
  9. package/dist-types/commands/CreateDefaultVpcCommand.d.ts +3 -0
  10. package/dist-types/commands/DescribeAddressesCommand.d.ts +3 -0
  11. package/dist-types/commands/DescribeClassicLinkInstancesCommand.d.ts +3 -0
  12. package/dist-types/commands/DescribeInstancesCommand.d.ts +3 -0
  13. package/dist-types/commands/DescribeReservedInstancesCommand.d.ts +3 -0
  14. package/dist-types/commands/DescribeReservedInstancesModificationsCommand.d.ts +3 -0
  15. package/dist-types/commands/DescribeReservedInstancesOfferingsCommand.d.ts +3 -0
  16. package/dist-types/commands/DescribeScheduledInstanceAvailabilityCommand.d.ts +4 -0
  17. package/dist-types/commands/DescribeScheduledInstancesCommand.d.ts +4 -0
  18. package/dist-types/commands/DescribeVpcClassicLinkCommand.d.ts +3 -0
  19. package/dist-types/commands/DescribeVpcClassicLinkDnsSupportCommand.d.ts +4 -1
  20. package/dist-types/commands/DetachClassicLinkVpcCommand.d.ts +4 -1
  21. package/dist-types/commands/DisableVpcClassicLinkCommand.d.ts +3 -0
  22. package/dist-types/commands/DisableVpcClassicLinkDnsSupportCommand.d.ts +4 -0
  23. package/dist-types/commands/DisassociateAddressCommand.d.ts +4 -0
  24. package/dist-types/commands/EnableVpcClassicLinkCommand.d.ts +4 -1
  25. package/dist-types/commands/EnableVpcClassicLinkDnsSupportCommand.d.ts +4 -1
  26. package/dist-types/commands/ModifyReservedInstancesCommand.d.ts +4 -0
  27. package/dist-types/commands/ModifyVpcPeeringConnectionOptionsCommand.d.ts +4 -1
  28. package/dist-types/commands/MoveAddressToVpcCommand.d.ts +4 -1
  29. package/dist-types/commands/ReleaseAddressCommand.d.ts +3 -0
  30. package/dist-types/commands/RequestSpotInstancesCommand.d.ts +3 -0
  31. package/dist-types/commands/RestoreAddressToClassicCommand.d.ts +3 -0
  32. package/dist-types/commands/RunInstancesCommand.d.ts +4 -0
  33. package/dist-types/models/models_0.d.ts +5 -2
  34. package/dist-types/models/models_2.d.ts +4 -1
  35. package/dist-types/models/models_3.d.ts +7 -0
  36. package/dist-types/models/models_4.d.ts +20 -1
  37. package/dist-types/models/models_5.d.ts +8 -2
  38. package/dist-types/models/models_6.d.ts +6 -2
  39. package/dist-types/ts3.4/models/models_0.d.ts +1 -1
  40. package/package.json +6 -6
@@ -18,6 +18,9 @@ export interface RequestSpotInstancesCommandOutput extends RequestSpotInstancesR
18
18
  * is the best Spot request method to use?</a> in the
19
19
  * <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
20
20
  * </important>
21
+ * <note>
22
+ * <p>We are retiring EC2-Classic on August 15, 2022. We recommend that you migrate from EC2-Classic to a VPC. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html">Migrate from EC2-Classic to a VPC</a> in the <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
23
+ * </note>
21
24
  * @example
22
25
  * Use a bare-bones client and the command you need to make an API call.
23
26
  * ```javascript
@@ -8,6 +8,9 @@ export interface RestoreAddressToClassicCommandOutput extends RestoreAddressToCl
8
8
  }
9
9
  /**
10
10
  * <p>Restores an Elastic IP address that was previously moved to the EC2-VPC platform back to the EC2-Classic platform. You cannot move an Elastic IP address that was originally allocated for use in EC2-VPC. The Elastic IP address must not be associated with an instance or network interface.</p>
11
+ * <note>
12
+ * <p>We are retiring EC2-Classic on August 15, 2022. We recommend that you migrate from EC2-Classic to a VPC. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html">Migrate from EC2-Classic to a VPC</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
13
+ * </note>
11
14
  * @example
12
15
  * Use a bare-bones client and the command you need to make an API call.
13
16
  * ```javascript
@@ -65,6 +65,10 @@ export interface RunInstancesCommandOutput extends Reservation, __MetadataBearer
65
65
  * pairs</a>.</p>
66
66
  * <p>For troubleshooting, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_InstanceStraightToTerminated.html">What to do if
67
67
  * an instance immediately terminates</a>, and <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/TroubleshootingInstancesConnecting.html">Troubleshooting connecting to your instance</a>.</p>
68
+ *
69
+ * <note>
70
+ * <p>We are retiring EC2-Classic on August 15, 2022. We recommend that you migrate from EC2-Classic to a VPC. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html">Migrate from EC2-Classic to a VPC</a> in the <i>Amazon EC2 User Guide</i>.</p>
71
+ * </note>
68
72
  * @example
69
73
  * Use a bare-bones client and the command you need to make an API call.
70
74
  * ```javascript
@@ -479,7 +479,10 @@ export interface Ipv6CidrBlock {
479
479
  Ipv6CidrBlock?: string;
480
480
  }
481
481
  /**
482
- * <p>Describes the VPC peering connection options.</p>
482
+ * <note>
483
+ * <p>We are retiring EC2-Classic on August 15, 2022. We recommend that you migrate from EC2-Classic to a VPC. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html">Migrate from EC2-Classic to a VPC</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
484
+ * </note>
485
+ * <p>Describes the VPC peering connection options.</p>
483
486
  */
484
487
  export interface VpcPeeringConnectionOptionsDescription {
485
488
  /**
@@ -1299,7 +1302,7 @@ export interface AdvertiseByoipCidrResult {
1299
1302
  ByoipCidr?: ByoipCidr;
1300
1303
  }
1301
1304
  export declare type Affinity = "default" | "host";
1302
- export declare type ResourceType = "capacity-reservation" | "carrier-gateway" | "client-vpn-endpoint" | "customer-gateway" | "dedicated-host" | "dhcp-options" | "egress-only-internet-gateway" | "elastic-gpu" | "elastic-ip" | "export-image-task" | "export-instance-task" | "fleet" | "fpga-image" | "host-reservation" | "image" | "import-image-task" | "import-snapshot-task" | "instance" | "instance-event-window" | "internet-gateway" | "ipam" | "ipam-pool" | "ipam-scope" | "ipv4pool-ec2" | "ipv6pool-ec2" | "key-pair" | "launch-template" | "local-gateway" | "local-gateway-route-table" | "local-gateway-route-table-virtual-interface-group-association" | "local-gateway-route-table-vpc-association" | "local-gateway-virtual-interface" | "local-gateway-virtual-interface-group" | "natgateway" | "network-acl" | "network-insights-access-scope" | "network-insights-access-scope-analysis" | "network-insights-analysis" | "network-insights-path" | "network-interface" | "placement-group" | "prefix-list" | "replace-root-volume-task" | "reserved-instances" | "route-table" | "security-group" | "security-group-rule" | "snapshot" | "spot-fleet-request" | "spot-instances-request" | "subnet" | "subnet-cidr-reservation" | "traffic-mirror-filter" | "traffic-mirror-session" | "traffic-mirror-target" | "transit-gateway" | "transit-gateway-attachment" | "transit-gateway-connect-peer" | "transit-gateway-multicast-domain" | "transit-gateway-policy-table" | "transit-gateway-route-table" | "transit-gateway-route-table-announcement" | "volume" | "vpc" | "vpc-endpoint" | "vpc-endpoint-service" | "vpc-flow-log" | "vpc-peering-connection" | "vpn-connection" | "vpn-gateway";
1305
+ export declare type ResourceType = "capacity-reservation" | "capacity-reservation-fleet" | "carrier-gateway" | "client-vpn-endpoint" | "customer-gateway" | "dedicated-host" | "dhcp-options" | "egress-only-internet-gateway" | "elastic-gpu" | "elastic-ip" | "export-image-task" | "export-instance-task" | "fleet" | "fpga-image" | "host-reservation" | "image" | "import-image-task" | "import-snapshot-task" | "instance" | "instance-event-window" | "internet-gateway" | "ipam" | "ipam-pool" | "ipam-scope" | "ipv4pool-ec2" | "ipv6pool-ec2" | "key-pair" | "launch-template" | "local-gateway" | "local-gateway-route-table" | "local-gateway-route-table-virtual-interface-group-association" | "local-gateway-route-table-vpc-association" | "local-gateway-virtual-interface" | "local-gateway-virtual-interface-group" | "natgateway" | "network-acl" | "network-insights-access-scope" | "network-insights-access-scope-analysis" | "network-insights-analysis" | "network-insights-path" | "network-interface" | "placement-group" | "prefix-list" | "replace-root-volume-task" | "reserved-instances" | "route-table" | "security-group" | "security-group-rule" | "snapshot" | "spot-fleet-request" | "spot-instances-request" | "subnet" | "subnet-cidr-reservation" | "traffic-mirror-filter" | "traffic-mirror-filter-rule" | "traffic-mirror-session" | "traffic-mirror-target" | "transit-gateway" | "transit-gateway-attachment" | "transit-gateway-connect-peer" | "transit-gateway-multicast-domain" | "transit-gateway-policy-table" | "transit-gateway-route-table" | "transit-gateway-route-table-announcement" | "volume" | "vpc" | "vpc-endpoint" | "vpc-endpoint-connection-device-type" | "vpc-endpoint-service" | "vpc-flow-log" | "vpc-peering-connection" | "vpn-connection" | "vpn-gateway";
1303
1306
  /**
1304
1307
  * <p>The tags to apply to a resource when the resource is being created.</p>
1305
1308
  * <note>
@@ -5009,7 +5009,10 @@ export interface DescribeClassicLinkInstancesRequest {
5009
5009
  NextToken?: string;
5010
5010
  }
5011
5011
  /**
5012
- * <p>Describes a linked EC2-Classic instance.</p>
5012
+ * <note>
5013
+ * <p>We are retiring EC2-Classic on August 15, 2022. We recommend that you migrate from EC2-Classic to a VPC. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html">Migrate from EC2-Classic to a VPC</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
5014
+ * </note>
5015
+ * <p>Describes a linked EC2-Classic instance.</p>
5013
5016
  */
5014
5017
  export interface ClassicLinkInstance {
5015
5018
  /**
@@ -5576,6 +5576,10 @@ export interface Instance {
5576
5576
  * <p>Describes a launch request for one or more instances, and includes owner, requester,
5577
5577
  * and security group information that applies to all instances in the launch
5578
5578
  * request.</p>
5579
+ *
5580
+ * <note>
5581
+ * <p>We are retiring EC2-Classic on August 15, 2022. We recommend that you migrate from EC2-Classic to a VPC. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html">Migrate from EC2-Classic to a VPC</a> in the <i>Amazon EC2 User Guide</i>.</p>
5582
+ * </note>
5579
5583
  */
5580
5584
  export interface Reservation {
5581
5585
  /**
@@ -7803,6 +7807,9 @@ export interface DescribeMovingAddressesRequest {
7803
7807
  export declare type MoveStatus = "movingToVpc" | "restoringToClassic";
7804
7808
  /**
7805
7809
  * <p>Describes the status of a moving Elastic IP address.</p>
7810
+ * <note>
7811
+ * <p>We are retiring EC2-Classic on August 15, 2022. We recommend that you migrate from EC2-Classic to a VPC. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html">Migrate from EC2-Classic to a VPC</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
7812
+ * </note>
7806
7813
  */
7807
7814
  export interface MovingAddressStatus {
7808
7815
  /**
@@ -1353,6 +1353,9 @@ export interface DescribeReservedInstancesModificationsRequest {
1353
1353
  }
1354
1354
  /**
1355
1355
  * <p>Describes the configuration settings for the modified Reserved Instances.</p>
1356
+ * <note>
1357
+ * <p>We are retiring EC2-Classic on August 15, 2022. We recommend that you migrate from EC2-Classic to a VPC. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html">Migrate from EC2-Classic to a VPC</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
1358
+ * </note>
1356
1359
  */
1357
1360
  export interface ReservedInstancesConfiguration {
1358
1361
  /**
@@ -1968,6 +1971,9 @@ export interface ScheduledInstanceRecurrence {
1968
1971
  }
1969
1972
  /**
1970
1973
  * <p>Describes a schedule that is available for your Scheduled Instances.</p>
1974
+ * <note>
1975
+ * <p>We are retiring EC2-Classic on August 15, 2022. We recommend that you migrate from EC2-Classic to a VPC. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html">Migrate from EC2-Classic to a VPC</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
1976
+ * </note>
1971
1977
  */
1972
1978
  export interface ScheduledInstanceAvailability {
1973
1979
  /**
@@ -2103,6 +2109,9 @@ export interface DescribeScheduledInstancesRequest {
2103
2109
  }
2104
2110
  /**
2105
2111
  * <p>Describes a Scheduled Instance.</p>
2112
+ * <note>
2113
+ * <p>We are retiring EC2-Classic on August 15, 2022. We recommend that you migrate from EC2-Classic to a VPC. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html">Migrate from EC2-Classic to a VPC</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
2114
+ * </note>
2106
2115
  */
2107
2116
  export interface ScheduledInstance {
2108
2117
  /**
@@ -3125,6 +3134,10 @@ export interface SpotFleetTagSpecification {
3125
3134
  * <p>Describes the launch specification for one or more Spot Instances. If you include
3126
3135
  * On-Demand capacity in your fleet request or want to specify an EFA network device, you
3127
3136
  * can't use <code>SpotFleetLaunchSpecification</code>; you must use <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_LaunchTemplateConfig.html">LaunchTemplateConfig</a>.</p>
3137
+ *
3138
+ * <note>
3139
+ * <p>We are retiring EC2-Classic on August 15, 2022. We recommend that you migrate from EC2-Classic to a VPC. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html">Migrate from EC2-Classic to a VPC</a> in the <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
3140
+ * </note>
3128
3141
  */
3129
3142
  export interface SpotFleetLaunchSpecification {
3130
3143
  /**
@@ -3894,6 +3907,9 @@ export interface RunInstancesMonitoringEnabled {
3894
3907
  }
3895
3908
  /**
3896
3909
  * <p>Describes the launch specification for an instance.</p>
3910
+ * <note>
3911
+ * <p>We are retiring EC2-Classic on August 15, 2022. We recommend that you migrate from EC2-Classic to a VPC. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html">Migrate from EC2-Classic to a VPC</a> in the <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
3912
+ * </note>
3897
3913
  */
3898
3914
  export interface LaunchSpecification {
3899
3915
  /**
@@ -6066,7 +6082,10 @@ export interface DescribeVpcClassicLinkRequest {
6066
6082
  VpcIds?: string[];
6067
6083
  }
6068
6084
  /**
6069
- * <p>Describes whether a VPC is enabled for ClassicLink.</p>
6085
+ * <note>
6086
+ * <p>We are retiring EC2-Classic on August 15, 2022. We recommend that you migrate from EC2-Classic to a VPC. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html">Migrate from EC2-Classic to a VPC</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
6087
+ * </note>
6088
+ * <p>Describes whether a VPC is enabled for ClassicLink.</p>
6070
6089
  */
6071
6090
  export interface VpcClassicLink {
6072
6091
  /**
@@ -5269,7 +5269,10 @@ export interface ModifyVpcEndpointServicePermissionsResult {
5269
5269
  ReturnValue?: boolean;
5270
5270
  }
5271
5271
  /**
5272
- * <p>The VPC peering connection options.</p>
5272
+ * <note>
5273
+ * <p>We are retiring EC2-Classic on August 15, 2022. We recommend that you migrate from EC2-Classic to a VPC. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html">Migrate from EC2-Classic to a VPC</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
5274
+ * </note>
5275
+ * <p>The VPC peering connection options.</p>
5273
5276
  */
5274
5277
  export interface PeeringConnectionOptionsRequest {
5275
5278
  /**
@@ -5308,7 +5311,10 @@ export interface ModifyVpcPeeringConnectionOptionsRequest {
5308
5311
  VpcPeeringConnectionId: string | undefined;
5309
5312
  }
5310
5313
  /**
5311
- * <p>Describes the VPC peering connection options.</p>
5314
+ * <note>
5315
+ * <p>We are retiring EC2-Classic on August 15, 2022. We recommend that you migrate from EC2-Classic to a VPC. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html">Migrate from EC2-Classic to a VPC</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
5316
+ * </note>
5317
+ * <p>Describes the VPC peering connection options.</p>
5312
5318
  */
5313
5319
  export interface PeeringConnectionOptions {
5314
5320
  /**
@@ -1404,8 +1404,12 @@ export interface LaunchTemplateSpecification {
1404
1404
  */
1405
1405
  LaunchTemplateName?: string;
1406
1406
  /**
1407
- * <p>The version number of the launch template.</p>
1408
- * <p>Default: The default version for the launch template.</p>
1407
+ * <p>The launch template version number, <code>$Latest</code>, or <code>$Default</code>.</p>
1408
+ * <p>If the value is <code>$Latest</code>, Amazon EC2 uses the latest version of the launch
1409
+ * template.</p>
1410
+ * <p>If the value is <code>$Default</code>, Amazon EC2 uses the default version of the launch
1411
+ * template.</p>
1412
+ * <p>Default: The default version of the launch template.</p>
1409
1413
  */
1410
1414
  Version?: string;
1411
1415
  }
@@ -676,7 +676,7 @@ export interface AdvertiseByoipCidrResult {
676
676
  ByoipCidr?: ByoipCidr;
677
677
  }
678
678
  export declare type Affinity = "default" | "host";
679
- export declare type ResourceType = "capacity-reservation" | "carrier-gateway" | "client-vpn-endpoint" | "customer-gateway" | "dedicated-host" | "dhcp-options" | "egress-only-internet-gateway" | "elastic-gpu" | "elastic-ip" | "export-image-task" | "export-instance-task" | "fleet" | "fpga-image" | "host-reservation" | "image" | "import-image-task" | "import-snapshot-task" | "instance" | "instance-event-window" | "internet-gateway" | "ipam" | "ipam-pool" | "ipam-scope" | "ipv4pool-ec2" | "ipv6pool-ec2" | "key-pair" | "launch-template" | "local-gateway" | "local-gateway-route-table" | "local-gateway-route-table-virtual-interface-group-association" | "local-gateway-route-table-vpc-association" | "local-gateway-virtual-interface" | "local-gateway-virtual-interface-group" | "natgateway" | "network-acl" | "network-insights-access-scope" | "network-insights-access-scope-analysis" | "network-insights-analysis" | "network-insights-path" | "network-interface" | "placement-group" | "prefix-list" | "replace-root-volume-task" | "reserved-instances" | "route-table" | "security-group" | "security-group-rule" | "snapshot" | "spot-fleet-request" | "spot-instances-request" | "subnet" | "subnet-cidr-reservation" | "traffic-mirror-filter" | "traffic-mirror-session" | "traffic-mirror-target" | "transit-gateway" | "transit-gateway-attachment" | "transit-gateway-connect-peer" | "transit-gateway-multicast-domain" | "transit-gateway-policy-table" | "transit-gateway-route-table" | "transit-gateway-route-table-announcement" | "volume" | "vpc" | "vpc-endpoint" | "vpc-endpoint-service" | "vpc-flow-log" | "vpc-peering-connection" | "vpn-connection" | "vpn-gateway";
679
+ export declare type ResourceType = "capacity-reservation" | "capacity-reservation-fleet" | "carrier-gateway" | "client-vpn-endpoint" | "customer-gateway" | "dedicated-host" | "dhcp-options" | "egress-only-internet-gateway" | "elastic-gpu" | "elastic-ip" | "export-image-task" | "export-instance-task" | "fleet" | "fpga-image" | "host-reservation" | "image" | "import-image-task" | "import-snapshot-task" | "instance" | "instance-event-window" | "internet-gateway" | "ipam" | "ipam-pool" | "ipam-scope" | "ipv4pool-ec2" | "ipv6pool-ec2" | "key-pair" | "launch-template" | "local-gateway" | "local-gateway-route-table" | "local-gateway-route-table-virtual-interface-group-association" | "local-gateway-route-table-vpc-association" | "local-gateway-virtual-interface" | "local-gateway-virtual-interface-group" | "natgateway" | "network-acl" | "network-insights-access-scope" | "network-insights-access-scope-analysis" | "network-insights-analysis" | "network-insights-path" | "network-interface" | "placement-group" | "prefix-list" | "replace-root-volume-task" | "reserved-instances" | "route-table" | "security-group" | "security-group-rule" | "snapshot" | "spot-fleet-request" | "spot-instances-request" | "subnet" | "subnet-cidr-reservation" | "traffic-mirror-filter" | "traffic-mirror-filter-rule" | "traffic-mirror-session" | "traffic-mirror-target" | "transit-gateway" | "transit-gateway-attachment" | "transit-gateway-connect-peer" | "transit-gateway-multicast-domain" | "transit-gateway-policy-table" | "transit-gateway-route-table" | "transit-gateway-route-table-announcement" | "volume" | "vpc" | "vpc-endpoint" | "vpc-endpoint-connection-device-type" | "vpc-endpoint-service" | "vpc-flow-log" | "vpc-peering-connection" | "vpn-connection" | "vpn-gateway";
680
680
 
681
681
  export interface TagSpecification {
682
682
 
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.139.0",
4
+ "version": "3.142.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.137.0",
21
+ "@aws-sdk/client-sts": "3.142.0",
22
22
  "@aws-sdk/config-resolver": "3.130.0",
23
- "@aws-sdk/credential-provider-node": "3.137.0",
23
+ "@aws-sdk/credential-provider-node": "3.142.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.131.0",
25
25
  "@aws-sdk/hash-node": "3.127.0",
26
26
  "@aws-sdk/invalid-dependency": "3.127.0",
@@ -37,15 +37,15 @@
37
37
  "@aws-sdk/node-config-provider": "3.127.0",
38
38
  "@aws-sdk/node-http-handler": "3.127.0",
39
39
  "@aws-sdk/protocol-http": "3.127.0",
40
- "@aws-sdk/smithy-client": "3.137.0",
40
+ "@aws-sdk/smithy-client": "3.142.0",
41
41
  "@aws-sdk/types": "3.127.0",
42
42
  "@aws-sdk/url-parser": "3.127.0",
43
43
  "@aws-sdk/util-base64-browser": "3.109.0",
44
44
  "@aws-sdk/util-base64-node": "3.55.0",
45
45
  "@aws-sdk/util-body-length-browser": "3.55.0",
46
46
  "@aws-sdk/util-body-length-node": "3.55.0",
47
- "@aws-sdk/util-defaults-mode-browser": "3.137.0",
48
- "@aws-sdk/util-defaults-mode-node": "3.137.0",
47
+ "@aws-sdk/util-defaults-mode-browser": "3.142.0",
48
+ "@aws-sdk/util-defaults-mode-node": "3.142.0",
49
49
  "@aws-sdk/util-user-agent-browser": "3.127.0",
50
50
  "@aws-sdk/util-user-agent-node": "3.127.0",
51
51
  "@aws-sdk/util-utf8-browser": "3.109.0",