@aws-sdk/client-ec2 3.390.0 → 3.392.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/dist-types/commands/CreateSubnetCidrReservationCommand.d.ts +3 -1
- package/dist-types/commands/DeleteLaunchTemplateVersionsCommand.d.ts +9 -4
- package/dist-types/models/models_1.d.ts +1 -3
- package/dist-types/models/models_2.d.ts +10 -20
- package/dist-types/models/models_3.d.ts +154 -18
- package/dist-types/models/models_6.d.ts +1 -0
- package/package.json +30 -30
|
@@ -23,7 +23,9 @@ export interface CreateSubnetCidrReservationCommandOutput extends CreateSubnetCi
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>Creates a subnet CIDR reservation. For information
|
|
26
|
+
* <p>Creates a subnet CIDR reservation. For more information, see <a href="https://docs.aws.amazon.com/vpc/latest/userguide/subnet-cidr-reservation.html">Subnet CIDR reservations</a>
|
|
27
|
+
* in the <i>Amazon Virtual Private Cloud User Guide</i> and <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-prefix-eni.html">Assign prefixes
|
|
28
|
+
* to network interfaces</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
27
29
|
* @example
|
|
28
30
|
* Use a bare-bones client and the command you need to make an API call.
|
|
29
31
|
* ```javascript
|
|
@@ -23,10 +23,15 @@ export interface DeleteLaunchTemplateVersionsCommandOutput extends DeleteLaunchT
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>Deletes one or more versions of a launch template
|
|
27
|
-
*
|
|
28
|
-
* If the default version is the only version for the
|
|
29
|
-
* entire launch template using <a>DeleteLaunchTemplate</a>.</p>
|
|
26
|
+
* <p>Deletes one or more versions of a launch template.</p>
|
|
27
|
+
* <p>You can't delete the default version of a launch template; you must first assign a
|
|
28
|
+
* different version as the default. If the default version is the only version for the
|
|
29
|
+
* launch template, you must delete the entire launch template using <a>DeleteLaunchTemplate</a>.</p>
|
|
30
|
+
* <p>You can delete up to 200 launch template versions in a single request. To delete more
|
|
31
|
+
* than 200 versions in a single request, use <a>DeleteLaunchTemplate</a>, which
|
|
32
|
+
* deletes the launch template and all of its versions.</p>
|
|
33
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/manage-launch-template-versions.html#delete-launch-template-version">Delete a launch template version</a> in the <i>EC2 User
|
|
34
|
+
* Guide</i>.</p>
|
|
30
35
|
* @example
|
|
31
36
|
* Use a bare-bones client and the command you need to make an API call.
|
|
32
37
|
* ```javascript
|
|
@@ -3356,9 +3356,7 @@ export interface CreateFlowLogsRequest {
|
|
|
3356
3356
|
* field. For more information about the available fields, see <a href="https://docs.aws.amazon.com/vpc/latest/userguide/flow-logs.html#flow-log-records">Flow log
|
|
3357
3357
|
* records</a> in the <i>Amazon VPC User Guide</i> or <a href="https://docs.aws.amazon.com/vpc/latest/tgw/tgw-flow-logs.html#flow-log-records">Transit Gateway Flow Log
|
|
3358
3358
|
* records</a> in the <i>Amazon Web Services Transit Gateway Guide</i>.</p>
|
|
3359
|
-
* <p>Specify the fields using the <code>$\{field-id\}</code> format, separated by spaces
|
|
3360
|
-
* the CLI, surround this parameter value with single quotes on Linux or
|
|
3361
|
-
* double quotes on Windows.</p>
|
|
3359
|
+
* <p>Specify the fields using the <code>$\{field-id\}</code> format, separated by spaces.</p>
|
|
3362
3360
|
*/
|
|
3363
3361
|
LogFormat?: string;
|
|
3364
3362
|
/**
|
|
@@ -1343,33 +1343,24 @@ export interface CreateSubnetCidrReservationRequest {
|
|
|
1343
1343
|
Cidr: string | undefined;
|
|
1344
1344
|
/**
|
|
1345
1345
|
* @public
|
|
1346
|
-
* <p>The type of reservation
|
|
1347
|
-
*
|
|
1346
|
+
* <p>The type of reservation. The reservation type determines how the reserved IP addresses are
|
|
1347
|
+
* assigned to resources.</p>
|
|
1348
1348
|
* <ul>
|
|
1349
1349
|
* <li>
|
|
1350
1350
|
* <p>
|
|
1351
|
-
* <code>prefix</code
|
|
1352
|
-
*
|
|
1353
|
-
* Delegation feature assigns the IP addresses to network interfaces that are
|
|
1354
|
-
* associated with an instance. For information about Prefix
|
|
1355
|
-
* Delegation,
|
|
1356
|
-
* see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-prefix-delegation.html">Prefix Delegation
|
|
1357
|
-
* for Amazon EC2 network interfaces</a> in the
|
|
1358
|
-
* <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
1351
|
+
* <code>prefix</code> - Amazon Web Services assigns the reserved IP addresses to
|
|
1352
|
+
* network interfaces.</p>
|
|
1359
1353
|
* </li>
|
|
1360
1354
|
* <li>
|
|
1361
1355
|
* <p>
|
|
1362
|
-
* <code>explicit</code
|
|
1363
|
-
* reside in your subnet. </p>
|
|
1356
|
+
* <code>explicit</code> - You assign the reserved IP addresses to network interfaces.</p>
|
|
1364
1357
|
* </li>
|
|
1365
1358
|
* </ul>
|
|
1366
1359
|
*/
|
|
1367
1360
|
ReservationType: SubnetCidrReservationType | string | undefined;
|
|
1368
1361
|
/**
|
|
1369
1362
|
* @public
|
|
1370
|
-
* <p>The
|
|
1371
|
-
* description
|
|
1372
|
-
* to assign to the subnet CIDR reservation.</p>
|
|
1363
|
+
* <p>The description to assign to the subnet CIDR reservation.</p>
|
|
1373
1364
|
*/
|
|
1374
1365
|
Description?: string;
|
|
1375
1366
|
/**
|
|
@@ -1417,10 +1408,7 @@ export interface SubnetCidrReservation {
|
|
|
1417
1408
|
OwnerId?: string;
|
|
1418
1409
|
/**
|
|
1419
1410
|
* @public
|
|
1420
|
-
* <p>The
|
|
1421
|
-
* description
|
|
1422
|
-
* assigned to the subnet CIDR
|
|
1423
|
-
* reservation.</p>
|
|
1411
|
+
* <p>The description assigned to the subnet CIDR reservation.</p>
|
|
1424
1412
|
*/
|
|
1425
1413
|
Description?: string;
|
|
1426
1414
|
/**
|
|
@@ -1780,6 +1768,7 @@ export interface CreateTrafficMirrorSessionRequest {
|
|
|
1780
1768
|
* set this value to 100, then the first 100 bytes that meet the filter criteria are copied to
|
|
1781
1769
|
* the target.</p>
|
|
1782
1770
|
* <p>If you do not want to mirror the entire packet, use the <code>PacketLength</code> parameter to specify the number of bytes in each packet to mirror.</p>
|
|
1771
|
+
* <p>For sessions with Network Load Balancer (NLB) Traffic Mirror targets the default <code>PacketLength</code> will be set to 8500. Valid values are 1-8500. Setting a <code>PacketLength</code> greater than 8500 will result in an error response.</p>
|
|
1783
1772
|
*/
|
|
1784
1773
|
PacketLength?: number;
|
|
1785
1774
|
/**
|
|
@@ -6977,7 +6966,8 @@ export interface DeleteLaunchTemplateVersionsRequest {
|
|
|
6977
6966
|
LaunchTemplateName?: string;
|
|
6978
6967
|
/**
|
|
6979
6968
|
* @public
|
|
6980
|
-
* <p>The version numbers of one or more launch template versions to delete
|
|
6969
|
+
* <p>The version numbers of one or more launch template versions to delete. You can specify
|
|
6970
|
+
* up to 200 launch template version numbers.</p>
|
|
6981
6971
|
*/
|
|
6982
6972
|
Versions: string[] | undefined;
|
|
6983
6973
|
}
|
|
@@ -8384,7 +8384,7 @@ export interface DescribeInstancesRequest {
|
|
|
8384
8384
|
* <p>
|
|
8385
8385
|
* <code>block-device-mapping.attach-time</code> - The attach time for an EBS
|
|
8386
8386
|
* volume mapped to the instance, for example,
|
|
8387
|
-
* <code>
|
|
8387
|
+
* <code>2022-09-15T17:15:20.000Z</code>.</p>
|
|
8388
8388
|
* </li>
|
|
8389
8389
|
* <li>
|
|
8390
8390
|
* <p>
|
|
@@ -8393,9 +8393,9 @@ export interface DescribeInstancesRequest {
|
|
|
8393
8393
|
* </li>
|
|
8394
8394
|
* <li>
|
|
8395
8395
|
* <p>
|
|
8396
|
-
* <code>block-device-mapping.device-name</code> - The device name specified in
|
|
8397
|
-
* block device mapping (for example, <code>/dev/sdh</code> or
|
|
8398
|
-
*
|
|
8396
|
+
* <code>block-device-mapping.device-name</code> - The device name specified in
|
|
8397
|
+
* the block device mapping (for example, <code>/dev/sdh</code> or
|
|
8398
|
+
* <code>xvdh</code>).</p>
|
|
8399
8399
|
* </li>
|
|
8400
8400
|
* <li>
|
|
8401
8401
|
* <p>
|
|
@@ -8410,13 +8410,40 @@ export interface DescribeInstancesRequest {
|
|
|
8410
8410
|
* </li>
|
|
8411
8411
|
* <li>
|
|
8412
8412
|
* <p>
|
|
8413
|
+
* <code>boot-mode</code> - The boot mode that was specified by the AMI
|
|
8414
|
+
* (<code>legacy-bios</code> | <code>uefi</code> |
|
|
8415
|
+
* <code>uefi-preferred</code>).</p>
|
|
8416
|
+
* </li>
|
|
8417
|
+
* <li>
|
|
8418
|
+
* <p>
|
|
8413
8419
|
* <code>capacity-reservation-id</code> - The ID of the Capacity Reservation into which the
|
|
8414
8420
|
* instance was launched.</p>
|
|
8415
8421
|
* </li>
|
|
8416
8422
|
* <li>
|
|
8417
8423
|
* <p>
|
|
8418
|
-
* <code>
|
|
8419
|
-
*
|
|
8424
|
+
* <code>capacity-reservation-specification.capacity-reservation-preference</code>
|
|
8425
|
+
* - The instance's Capacity Reservation preference (<code>open</code> | <code>none</code>).</p>
|
|
8426
|
+
* </li>
|
|
8427
|
+
* <li>
|
|
8428
|
+
* <p>
|
|
8429
|
+
* <code>capacity-reservation-specification.capacity-reservation-target.capacity-reservation-id</code>
|
|
8430
|
+
* - The ID of the targeted Capacity Reservation.</p>
|
|
8431
|
+
* </li>
|
|
8432
|
+
* <li>
|
|
8433
|
+
* <p>
|
|
8434
|
+
* <code>capacity-reservation-specification.capacity-reservation-target.capacity-reservation-resource-group-arn</code>
|
|
8435
|
+
* - The ARN of the targeted Capacity Reservation group.</p>
|
|
8436
|
+
* </li>
|
|
8437
|
+
* <li>
|
|
8438
|
+
* <p>
|
|
8439
|
+
* <code>client-token</code> - The idempotency token you provided when you
|
|
8440
|
+
* launched the instance.</p>
|
|
8441
|
+
* </li>
|
|
8442
|
+
* <li>
|
|
8443
|
+
* <p>
|
|
8444
|
+
* <code>current-instance-boot-mode</code> - The boot mode that is used to launch
|
|
8445
|
+
* the instance at launch or start (<code>legacy-bios</code> |
|
|
8446
|
+
* <code>uefi</code>).</p>
|
|
8420
8447
|
* </li>
|
|
8421
8448
|
* <li>
|
|
8422
8449
|
* <p>
|
|
@@ -8424,9 +8451,24 @@ export interface DescribeInstancesRequest {
|
|
|
8424
8451
|
* </li>
|
|
8425
8452
|
* <li>
|
|
8426
8453
|
* <p>
|
|
8454
|
+
* <code>ebs-optimized</code> - A Boolean that indicates whether the instance is
|
|
8455
|
+
* optimized for Amazon EBS I/O.</p>
|
|
8456
|
+
* </li>
|
|
8457
|
+
* <li>
|
|
8458
|
+
* <p>
|
|
8459
|
+
* <code>ena-support</code> - A Boolean that indicates whether the instance is
|
|
8460
|
+
* enabled for enhanced networking with ENA.</p>
|
|
8461
|
+
* </li>
|
|
8462
|
+
* <li>
|
|
8463
|
+
* <p>
|
|
8464
|
+
* <code>enclave-options.enabled</code> - A Boolean that indicates whether the
|
|
8465
|
+
* instance is enabled for Amazon Web Services Nitro Enclaves.</p>
|
|
8466
|
+
* </li>
|
|
8467
|
+
* <li>
|
|
8468
|
+
* <p>
|
|
8427
8469
|
* <code>hibernation-options.configured</code> - A Boolean that indicates whether
|
|
8428
8470
|
* the instance is enabled for hibernation. A value of <code>true</code> means that
|
|
8429
|
-
* the instance is enabled for hibernation
|
|
8471
|
+
* the instance is enabled for hibernation.</p>
|
|
8430
8472
|
* </li>
|
|
8431
8473
|
* <li>
|
|
8432
8474
|
* <p>
|
|
@@ -8446,6 +8488,16 @@ export interface DescribeInstancesRequest {
|
|
|
8446
8488
|
* </li>
|
|
8447
8489
|
* <li>
|
|
8448
8490
|
* <p>
|
|
8491
|
+
* <code>iam-instance-profile.id</code> - The instance profile associated with
|
|
8492
|
+
* the instance. Specified as an ID.</p>
|
|
8493
|
+
* </li>
|
|
8494
|
+
* <li>
|
|
8495
|
+
* <p>
|
|
8496
|
+
* <code>iam-instance-profile.name</code> - The instance profile associated with
|
|
8497
|
+
* the instance. Specified as an name.</p>
|
|
8498
|
+
* </li>
|
|
8499
|
+
* <li>
|
|
8500
|
+
* <p>
|
|
8449
8501
|
* <code>image-id</code> - The ID of the image used to launch the
|
|
8450
8502
|
* instance.</p>
|
|
8451
8503
|
* </li>
|
|
@@ -8494,6 +8546,10 @@ export interface DescribeInstancesRequest {
|
|
|
8494
8546
|
* </li>
|
|
8495
8547
|
* <li>
|
|
8496
8548
|
* <p>
|
|
8549
|
+
* <code>ipv6-address</code> - The IPv6 address of the instance.</p>
|
|
8550
|
+
* </li>
|
|
8551
|
+
* <li>
|
|
8552
|
+
* <p>
|
|
8497
8553
|
* <code>kernel-id</code> - The kernel ID.</p>
|
|
8498
8554
|
* </li>
|
|
8499
8555
|
* <li>
|
|
@@ -8517,14 +8573,12 @@ export interface DescribeInstancesRequest {
|
|
|
8517
8573
|
* </li>
|
|
8518
8574
|
* <li>
|
|
8519
8575
|
* <p>
|
|
8520
|
-
* <code>
|
|
8521
|
-
* state (<code>optional</code> | <code>required</code>)</p>
|
|
8576
|
+
* <code>license-pool</code> - </p>
|
|
8522
8577
|
* </li>
|
|
8523
8578
|
* <li>
|
|
8524
8579
|
* <p>
|
|
8525
|
-
* <code>
|
|
8526
|
-
*
|
|
8527
|
-
* <code>64</code>)</p>
|
|
8580
|
+
* <code>maintenance-options.auto-recovery</code> - The current automatic
|
|
8581
|
+
* recovery behavior of the instance (<code>disabled</code> | <code>default</code>).</p>
|
|
8528
8582
|
* </li>
|
|
8529
8583
|
* <li>
|
|
8530
8584
|
* <p>
|
|
@@ -8534,19 +8588,40 @@ export interface DescribeInstancesRequest {
|
|
|
8534
8588
|
* </li>
|
|
8535
8589
|
* <li>
|
|
8536
8590
|
* <p>
|
|
8591
|
+
* <code>metadata-options.http-protocol-ipv4</code> - Indicates whether the IPv4
|
|
8592
|
+
* endpoint is enabled (<code>disabled</code> | <code>enabled</code>).</p>
|
|
8593
|
+
* </li>
|
|
8594
|
+
* <li>
|
|
8595
|
+
* <p>
|
|
8596
|
+
* <code>metadata-options.http-protocol-ipv6</code> - Indicates whether the IPv6
|
|
8597
|
+
* endpoint is enabled (<code>disabled</code> | <code>enabled</code>).</p>
|
|
8598
|
+
* </li>
|
|
8599
|
+
* <li>
|
|
8600
|
+
* <p>
|
|
8601
|
+
* <code>metadata-options.http-put-response-hop-limit</code> - The HTTP metadata
|
|
8602
|
+
* request put response hop limit (integer, possible values <code>1</code> to
|
|
8603
|
+
* <code>64</code>)</p>
|
|
8604
|
+
* </li>
|
|
8605
|
+
* <li>
|
|
8606
|
+
* <p>
|
|
8607
|
+
* <code>metadata-options.http-tokens</code> - The metadata request authorization
|
|
8608
|
+
* state (<code>optional</code> | <code>required</code>)</p>
|
|
8609
|
+
* </li>
|
|
8610
|
+
* <li>
|
|
8611
|
+
* <p>
|
|
8537
8612
|
* <code>metadata-options.instance-metadata-tags</code> - The status of access to
|
|
8538
8613
|
* instance tags from the instance metadata (<code>enabled</code> |
|
|
8539
8614
|
* <code>disabled</code>)</p>
|
|
8540
8615
|
* </li>
|
|
8541
8616
|
* <li>
|
|
8542
8617
|
* <p>
|
|
8543
|
-
* <code>
|
|
8544
|
-
*
|
|
8618
|
+
* <code>metadata-options.state</code> - The state of the metadata option changes
|
|
8619
|
+
* (<code>pending</code> | <code>applied</code>).</p>
|
|
8545
8620
|
* </li>
|
|
8546
8621
|
* <li>
|
|
8547
8622
|
* <p>
|
|
8548
|
-
* <code>
|
|
8549
|
-
*
|
|
8623
|
+
* <code>monitoring-state</code> - Indicates whether detailed monitoring is
|
|
8624
|
+
* enabled (<code>disabled</code> | <code>enabled</code>).</p>
|
|
8550
8625
|
* </li>
|
|
8551
8626
|
* <li>
|
|
8552
8627
|
* <p>
|
|
@@ -8555,6 +8630,11 @@ export interface DescribeInstancesRequest {
|
|
|
8555
8630
|
* </li>
|
|
8556
8631
|
* <li>
|
|
8557
8632
|
* <p>
|
|
8633
|
+
* <code>network-interface.addresses.private-ip-address</code> - The private IPv4
|
|
8634
|
+
* address associated with the network interface.</p>
|
|
8635
|
+
* </li>
|
|
8636
|
+
* <li>
|
|
8637
|
+
* <p>
|
|
8558
8638
|
* <code>network-interface.addresses.association.public-ip</code> - The ID of the
|
|
8559
8639
|
* association of an Elastic IP address (IPv4) with a network interface.</p>
|
|
8560
8640
|
* </li>
|
|
@@ -8725,11 +8805,43 @@ export interface DescribeInstancesRequest {
|
|
|
8725
8805
|
* </li>
|
|
8726
8806
|
* <li>
|
|
8727
8807
|
* <p>
|
|
8808
|
+
* <code>platform-details</code> - The platform (<code>Linux/UNIX</code> |
|
|
8809
|
+
* <code>Red Hat BYOL Linux</code> | <code> Red Hat Enterprise Linux</code> |
|
|
8810
|
+
* <code>Red Hat Enterprise Linux with HA</code> | <code>Red Hat Enterprise
|
|
8811
|
+
* Linux with SQL Server Standard and HA</code> | <code>Red Hat Enterprise
|
|
8812
|
+
* Linux with SQL Server Enterprise and HA</code> | <code>Red Hat Enterprise
|
|
8813
|
+
* Linux with SQL Server Standard</code> | <code>Red Hat Enterprise Linux with
|
|
8814
|
+
* SQL Server Web</code> | <code>Red Hat Enterprise Linux with SQL Server
|
|
8815
|
+
* Enterprise</code> | <code>SQL Server Enterprise</code> | <code>SQL Server
|
|
8816
|
+
* Standard</code> | <code>SQL Server Web</code> | <code>SUSE Linux</code> |
|
|
8817
|
+
* <code>Ubuntu Pro</code> | <code>Windows</code> | <code>Windows BYOL</code> |
|
|
8818
|
+
* <code>Windows with SQL Server Enterprise</code> | <code>Windows with SQL
|
|
8819
|
+
* Server Standard</code> | <code>Windows with SQL Server Web</code>).</p>
|
|
8820
|
+
* </li>
|
|
8821
|
+
* <li>
|
|
8822
|
+
* <p>
|
|
8728
8823
|
* <code>private-dns-name</code> - The private IPv4 DNS name of the
|
|
8729
8824
|
* instance.</p>
|
|
8730
8825
|
* </li>
|
|
8731
8826
|
* <li>
|
|
8732
8827
|
* <p>
|
|
8828
|
+
* <code>private-dns-name-options.enable-resource-name-dns-a-record</code> - A
|
|
8829
|
+
* Boolean that indicates whether to respond to DNS queries for instance hostnames
|
|
8830
|
+
* with DNS A records.</p>
|
|
8831
|
+
* </li>
|
|
8832
|
+
* <li>
|
|
8833
|
+
* <p>
|
|
8834
|
+
* <code>private-dns-name-options.enable-resource-name-dns-aaaa-record</code> - A
|
|
8835
|
+
* Boolean that indicates whether to respond to DNS queries for instance hostnames
|
|
8836
|
+
* with DNS AAAA records.</p>
|
|
8837
|
+
* </li>
|
|
8838
|
+
* <li>
|
|
8839
|
+
* <p>
|
|
8840
|
+
* <code>private-dns-name-options.hostname-type</code> - The type of hostname
|
|
8841
|
+
* (<code>ip-name</code> | <code>resource-name</code>).</p>
|
|
8842
|
+
* </li>
|
|
8843
|
+
* <li>
|
|
8844
|
+
* <p>
|
|
8733
8845
|
* <code>private-ip-address</code> - The private IPv4 address of the
|
|
8734
8846
|
* instance.</p>
|
|
8735
8847
|
* </li>
|
|
@@ -8740,8 +8852,8 @@ export interface DescribeInstancesRequest {
|
|
|
8740
8852
|
* </li>
|
|
8741
8853
|
* <li>
|
|
8742
8854
|
* <p>
|
|
8743
|
-
* <code>product-code.type</code> - The type of product code (<code>devpay</code>
|
|
8744
|
-
*
|
|
8855
|
+
* <code>product-code.type</code> - The type of product code (<code>devpay</code>
|
|
8856
|
+
* | <code>marketplace</code>).</p>
|
|
8745
8857
|
* </li>
|
|
8746
8858
|
* <li>
|
|
8747
8859
|
* <p>
|
|
@@ -8821,6 +8933,30 @@ export interface DescribeInstancesRequest {
|
|
|
8821
8933
|
* </li>
|
|
8822
8934
|
* <li>
|
|
8823
8935
|
* <p>
|
|
8936
|
+
* <code>tpm-support</code> - Indicates if the instance is configured for
|
|
8937
|
+
* NitroTPM support (<code>v2.0</code>). </p>
|
|
8938
|
+
* </li>
|
|
8939
|
+
* <li>
|
|
8940
|
+
* <p>
|
|
8941
|
+
* <code>usage-operation</code> - The usage operation value for the instance
|
|
8942
|
+
* (<code>RunInstances</code> | <code>RunInstances:00g0</code> |
|
|
8943
|
+
* <code>RunInstances:0010</code> | <code>RunInstances:1010</code> |
|
|
8944
|
+
* <code>RunInstances:1014</code> | <code>RunInstances:1110</code> |
|
|
8945
|
+
* <code>RunInstances:0014</code> | <code>RunInstances:0210</code> |
|
|
8946
|
+
* <code>RunInstances:0110</code> | <code>RunInstances:0100</code> |
|
|
8947
|
+
* <code>RunInstances:0004</code> | <code>RunInstances:0200</code> |
|
|
8948
|
+
* <code>RunInstances:000g</code> | <code>RunInstances:0g00</code> |
|
|
8949
|
+
* <code>RunInstances:0002</code> | <code>RunInstances:0800</code> |
|
|
8950
|
+
* <code>RunInstances:0102</code> | <code>RunInstances:0006</code> |
|
|
8951
|
+
* <code>RunInstances:0202</code>).</p>
|
|
8952
|
+
* </li>
|
|
8953
|
+
* <li>
|
|
8954
|
+
* <p>
|
|
8955
|
+
* <code>usage-operation-update-time</code> - The time that the usage operation
|
|
8956
|
+
* was last updated, for example, <code>2022-09-15T17:15:20.000Z</code>.</p>
|
|
8957
|
+
* </li>
|
|
8958
|
+
* <li>
|
|
8959
|
+
* <p>
|
|
8824
8960
|
* <code>virtualization-type</code> - The virtualization type of the instance
|
|
8825
8961
|
* (<code>paravirtual</code> | <code>hvm</code>).</p>
|
|
8826
8962
|
* </li>
|
|
@@ -3488,6 +3488,7 @@ export interface ModifyTrafficMirrorSessionRequest {
|
|
|
3488
3488
|
/**
|
|
3489
3489
|
* @public
|
|
3490
3490
|
* <p>The number of bytes in each packet to mirror. These are bytes after the VXLAN header. To mirror a subset, set this to the length (in bytes) to mirror. For example, if you set this value to 100, then the first 100 bytes that meet the filter criteria are copied to the target. Do not specify this parameter when you want to mirror the entire packet.</p>
|
|
3491
|
+
* <p>For sessions with Network Load Balancer (NLB) traffic mirror targets, the default <code>PacketLength</code> will be set to 8500. Valid values are 1-8500. Setting a <code>PacketLength</code> greater than 8500 will result in an error response.</p>
|
|
3491
3492
|
*/
|
|
3492
3493
|
PacketLength?: number;
|
|
3493
3494
|
/**
|
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.392.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",
|
|
@@ -21,41 +21,41 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-sdk-ec2": "3.
|
|
30
|
-
"@aws-sdk/middleware-signing": "3.
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.0.
|
|
38
|
-
"@smithy/hash-node": "^2.0.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.0.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
43
|
-
"@smithy/middleware-serde": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.391.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.391.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.391.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.391.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.391.0",
|
|
29
|
+
"@aws-sdk/middleware-sdk-ec2": "3.391.0",
|
|
30
|
+
"@aws-sdk/middleware-signing": "3.391.0",
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "3.391.0",
|
|
32
|
+
"@aws-sdk/types": "3.391.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.391.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.391.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.391.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.3",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.0.3",
|
|
38
|
+
"@smithy/hash-node": "^2.0.3",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.0.3",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.0.3",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.0.3",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.3",
|
|
43
|
+
"@smithy/middleware-serde": "^2.0.3",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.0",
|
|
45
|
-
"@smithy/node-config-provider": "^2.0.
|
|
46
|
-
"@smithy/node-http-handler": "^2.0.
|
|
47
|
-
"@smithy/protocol-http": "^2.0.
|
|
48
|
-
"@smithy/smithy-client": "^2.0.
|
|
49
|
-
"@smithy/types": "^2.
|
|
50
|
-
"@smithy/url-parser": "^2.0.
|
|
45
|
+
"@smithy/node-config-provider": "^2.0.3",
|
|
46
|
+
"@smithy/node-http-handler": "^2.0.3",
|
|
47
|
+
"@smithy/protocol-http": "^2.0.3",
|
|
48
|
+
"@smithy/smithy-client": "^2.0.3",
|
|
49
|
+
"@smithy/types": "^2.2.0",
|
|
50
|
+
"@smithy/url-parser": "^2.0.3",
|
|
51
51
|
"@smithy/util-base64": "^2.0.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.0.0",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.0.3",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.3",
|
|
56
56
|
"@smithy/util-retry": "^2.0.0",
|
|
57
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
58
|
-
"@smithy/util-waiter": "^2.0.
|
|
58
|
+
"@smithy/util-waiter": "^2.0.3",
|
|
59
59
|
"fast-xml-parser": "4.2.5",
|
|
60
60
|
"tslib": "^2.5.0",
|
|
61
61
|
"uuid": "^8.3.2"
|