@aws-sdk/client-ec2 3.425.0 → 3.428.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/README.md +16 -0
- package/dist-cjs/EC2.js +4 -0
- package/dist-cjs/commands/DisableImageCommand.js +51 -0
- package/dist-cjs/commands/EnableImageCommand.js +51 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/models/models_0.js +1 -0
- package/dist-cjs/models/models_3.js +1 -0
- package/dist-cjs/protocols/Aws_ec2.js +133 -17
- package/dist-es/EC2.js +4 -0
- package/dist-es/commands/DisableImageCommand.js +47 -0
- package/dist-es/commands/EnableImageCommand.js +47 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/models/models_3.js +1 -0
- package/dist-es/protocols/Aws_ec2.js +112 -0
- package/dist-types/EC2.d.ts +14 -0
- package/dist-types/EC2Client.d.ts +4 -2
- package/dist-types/commands/AssociateNatGatewayAddressCommand.d.ts +4 -0
- package/dist-types/commands/CreateCapacityReservationCommand.d.ts +2 -2
- package/dist-types/commands/CreateCapacityReservationFleetCommand.d.ts +2 -2
- package/dist-types/commands/CreateNatGatewayCommand.d.ts +4 -0
- package/dist-types/commands/DeleteVpcCommand.d.ts +1 -1
- package/dist-types/commands/DescribeCapacityReservationFleetsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeCapacityReservationsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeImagesCommand.d.ts +3 -1
- package/dist-types/commands/DescribeNetworkInterfacesCommand.d.ts +4 -0
- package/dist-types/commands/DisableImageCommand.d.ts +84 -0
- package/dist-types/commands/EnableImageCommand.d.ts +81 -0
- package/dist-types/commands/GetTransitGatewayRouteTablePropagationsCommand.d.ts +2 -1
- package/dist-types/commands/GetVerifiedAccessEndpointPolicyCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +3 -3
- package/dist-types/models/models_1.d.ts +48 -7
- package/dist-types/models/models_3.d.ts +147 -28
- package/dist-types/models/models_4.d.ts +56 -35
- package/dist-types/models/models_5.d.ts +54 -78
- package/dist-types/models/models_6.d.ts +86 -105
- package/dist-types/models/models_7.d.ts +102 -2
- package/dist-types/protocols/Aws_ec2.d.ts +18 -0
- package/dist-types/ts3.4/EC2.d.ts +34 -0
- package/dist-types/ts3.4/EC2Client.d.ts +12 -0
- package/dist-types/ts3.4/commands/DisableImageCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/EnableImageCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetTransitGatewayRouteTablePropagationsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetVerifiedAccessEndpointPolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/dist-types/ts3.4/models/models_3.d.ts +3 -0
- package/dist-types/ts3.4/models/models_5.d.ts +14 -19
- package/dist-types/ts3.4/models/models_6.d.ts +21 -18
- package/dist-types/ts3.4/models/models_7.d.ts +20 -3
- package/dist-types/ts3.4/protocols/Aws_ec2.d.ts +24 -0
- package/package.json +33 -33
|
@@ -5176,6 +5176,14 @@ export interface OnDemandOptions {
|
|
|
5176
5176
|
/**
|
|
5177
5177
|
* @public
|
|
5178
5178
|
* <p>The maximum amount per hour for On-Demand Instances that you're willing to pay.</p>
|
|
5179
|
+
* <note>
|
|
5180
|
+
* <p>If your fleet includes T instances that are configured as <code>unlimited</code>,
|
|
5181
|
+
* and if their average CPU usage exceeds the baseline utilization, you will incur a charge
|
|
5182
|
+
* for surplus credits. The <code>maxTotalPrice</code> does not account for surplus
|
|
5183
|
+
* credits, and, if you use surplus credits, your final cost might be higher than what you
|
|
5184
|
+
* specified for <code>maxTotalPrice</code>. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/burstable-performance-instances-unlimited-mode-concepts.html#unlimited-mode-surplus-credits">Surplus credits can incur charges</a> in the <i>EC2 User
|
|
5185
|
+
* Guide</i>.</p>
|
|
5186
|
+
* </note>
|
|
5179
5187
|
*/
|
|
5180
5188
|
MaxTotalPrice?: string;
|
|
5181
5189
|
}
|
|
@@ -5338,6 +5346,14 @@ export interface SpotOptions {
|
|
|
5338
5346
|
* <important>
|
|
5339
5347
|
* <p>If you specify a maximum price, your Spot Instances will be interrupted more frequently than if you do not specify this parameter.</p>
|
|
5340
5348
|
* </important>
|
|
5349
|
+
* <note>
|
|
5350
|
+
* <p>If your fleet includes T instances that are configured as <code>unlimited</code>,
|
|
5351
|
+
* and if their average CPU usage exceeds the baseline utilization, you will incur a charge
|
|
5352
|
+
* for surplus credits. The <code>maxTotalPrice</code> does not account for surplus
|
|
5353
|
+
* credits, and, if you use surplus credits, your final cost might be higher than what you
|
|
5354
|
+
* specified for <code>maxTotalPrice</code>. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/burstable-performance-instances-unlimited-mode-concepts.html#unlimited-mode-surplus-credits">Surplus credits can incur charges</a> in the <i>EC2 User
|
|
5355
|
+
* Guide</i>.</p>
|
|
5356
|
+
* </note>
|
|
5341
5357
|
*/
|
|
5342
5358
|
MaxTotalPrice?: string;
|
|
5343
5359
|
}
|
|
@@ -5511,13 +5527,13 @@ export interface FleetData {
|
|
|
5511
5527
|
/**
|
|
5512
5528
|
* @public
|
|
5513
5529
|
* <p>Information about the instances that could not be launched by the fleet. Valid only when
|
|
5514
|
-
*
|
|
5530
|
+
* <b>Type</b> is set to <code>instant</code>.</p>
|
|
5515
5531
|
*/
|
|
5516
5532
|
Errors?: DescribeFleetError[];
|
|
5517
5533
|
/**
|
|
5518
5534
|
* @public
|
|
5519
5535
|
* <p>Information about the instances that were launched by the fleet. Valid only when
|
|
5520
|
-
*
|
|
5536
|
+
* <b>Type</b> is set to <code>instant</code>.</p>
|
|
5521
5537
|
*/
|
|
5522
5538
|
Instances?: DescribeFleetsInstances[];
|
|
5523
5539
|
/**
|
|
@@ -7156,6 +7172,12 @@ export interface DescribeImagesRequest {
|
|
|
7156
7172
|
* </li>
|
|
7157
7173
|
* <li>
|
|
7158
7174
|
* <p>
|
|
7175
|
+
* <code>source-instance-id</code> - The ID of the instance that the AMI was created from
|
|
7176
|
+
* if the AMI was created using CreateImage. This filter is applicable only if the AMI was
|
|
7177
|
+
* created using <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateImage.html">CreateImage</a>.</p>
|
|
7178
|
+
* </li>
|
|
7179
|
+
* <li>
|
|
7180
|
+
* <p>
|
|
7159
7181
|
* <code>state</code> - The state of the image (<code>available</code> | <code>pending</code>
|
|
7160
7182
|
* | <code>failed</code>).</p>
|
|
7161
7183
|
* </li>
|
|
@@ -7213,6 +7235,12 @@ export interface DescribeImagesRequest {
|
|
|
7213
7235
|
* </note>
|
|
7214
7236
|
*/
|
|
7215
7237
|
IncludeDeprecated?: boolean;
|
|
7238
|
+
/**
|
|
7239
|
+
* @public
|
|
7240
|
+
* <p>Specifies whether to include disabled AMIs.</p>
|
|
7241
|
+
* <p>Default: No disabled AMIs are included in the response.</p>
|
|
7242
|
+
*/
|
|
7243
|
+
IncludeDisabled?: boolean;
|
|
7216
7244
|
/**
|
|
7217
7245
|
* @public
|
|
7218
7246
|
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
@@ -7316,6 +7344,7 @@ export type DeviceType = (typeof DeviceType)[keyof typeof DeviceType];
|
|
|
7316
7344
|
export declare const ImageState: {
|
|
7317
7345
|
readonly available: "available";
|
|
7318
7346
|
readonly deregistered: "deregistered";
|
|
7347
|
+
readonly disabled: "disabled";
|
|
7319
7348
|
readonly error: "error";
|
|
7320
7349
|
readonly failed: "failed";
|
|
7321
7350
|
readonly invalid: "invalid";
|
|
@@ -7451,7 +7480,8 @@ export interface Image {
|
|
|
7451
7480
|
EnaSupport?: boolean;
|
|
7452
7481
|
/**
|
|
7453
7482
|
* @public
|
|
7454
|
-
* <p>The hypervisor type of the image
|
|
7483
|
+
* <p>The hypervisor type of the image. Only <code>xen</code> is supported. <code>ovm</code> is
|
|
7484
|
+
* not supported.</p>
|
|
7455
7485
|
*/
|
|
7456
7486
|
Hypervisor?: HypervisorType | string;
|
|
7457
7487
|
/**
|
|
@@ -7526,6 +7556,12 @@ export interface Image {
|
|
|
7526
7556
|
* the AMI</a> in the <i>Amazon EC2 User Guide</i>.</p>
|
|
7527
7557
|
*/
|
|
7528
7558
|
ImdsSupport?: ImdsSupportValues | string;
|
|
7559
|
+
/**
|
|
7560
|
+
* @public
|
|
7561
|
+
* <p>The ID of the instance that the AMI was created from if the AMI was created using <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateImage.html">CreateImage</a>. This field only appears if the AMI was created using
|
|
7562
|
+
* CreateImage.</p>
|
|
7563
|
+
*/
|
|
7564
|
+
SourceInstanceId?: string;
|
|
7529
7565
|
}
|
|
7530
7566
|
/**
|
|
7531
7567
|
* @public
|
|
@@ -8629,10 +8665,6 @@ export interface DescribeInstancesRequest {
|
|
|
8629
8665
|
* </li>
|
|
8630
8666
|
* <li>
|
|
8631
8667
|
* <p>
|
|
8632
|
-
* <code>license-pool</code> - </p>
|
|
8633
|
-
* </li>
|
|
8634
|
-
* <li>
|
|
8635
|
-
* <p>
|
|
8636
8668
|
* <code>maintenance-options.auto-recovery</code> - The current automatic
|
|
8637
8669
|
* recovery behavior of the instance (<code>disabled</code> | <code>default</code>).</p>
|
|
8638
8670
|
* </li>
|
|
@@ -8681,18 +8713,19 @@ export interface DescribeInstancesRequest {
|
|
|
8681
8713
|
* </li>
|
|
8682
8714
|
* <li>
|
|
8683
8715
|
* <p>
|
|
8684
|
-
* <code>network-interface.addresses.
|
|
8685
|
-
* address of the network interface is the primary private IPv4 address.</p>
|
|
8716
|
+
* <code>network-interface.addresses.association.allocation-id</code> - The allocation ID.</p>
|
|
8686
8717
|
* </li>
|
|
8687
8718
|
* <li>
|
|
8688
8719
|
* <p>
|
|
8689
|
-
* <code>network-interface.addresses.
|
|
8690
|
-
* address associated with the network interface.</p>
|
|
8720
|
+
* <code>network-interface.addresses.association.association-id</code> - The association ID.</p>
|
|
8691
8721
|
* </li>
|
|
8692
8722
|
* <li>
|
|
8693
8723
|
* <p>
|
|
8694
|
-
* <code>network-interface.addresses.association.
|
|
8695
|
-
*
|
|
8724
|
+
* <code>network-interface.addresses.association.carrier-ip</code> - The carrier IP address.</p>
|
|
8725
|
+
* </li>
|
|
8726
|
+
* <li>
|
|
8727
|
+
* <p>
|
|
8728
|
+
* <code>network-interface.addresses.association.customer-owned-ip</code> - The customer-owned IP address.</p>
|
|
8696
8729
|
* </li>
|
|
8697
8730
|
* <li>
|
|
8698
8731
|
* <p>
|
|
@@ -8701,13 +8734,26 @@ export interface DescribeInstancesRequest {
|
|
|
8701
8734
|
* </li>
|
|
8702
8735
|
* <li>
|
|
8703
8736
|
* <p>
|
|
8704
|
-
* <code>network-interface.association.public-
|
|
8705
|
-
* Elastic IP address (IPv4) bound to the network interface.</p>
|
|
8737
|
+
* <code>network-interface.addresses.association.public-dns-name</code> - The public DNS name.</p>
|
|
8706
8738
|
* </li>
|
|
8707
8739
|
* <li>
|
|
8708
8740
|
* <p>
|
|
8709
|
-
* <code>network-interface.association.ip
|
|
8710
|
-
* Elastic IP address (IPv4)
|
|
8741
|
+
* <code>network-interface.addresses.association.public-ip</code> - The ID of the
|
|
8742
|
+
* association of an Elastic IP address (IPv4) with a network interface.</p>
|
|
8743
|
+
* </li>
|
|
8744
|
+
* <li>
|
|
8745
|
+
* <p>
|
|
8746
|
+
* <code>network-interface.addresses.primary</code> - Specifies whether the IPv4
|
|
8747
|
+
* address of the network interface is the primary private IPv4 address.</p>
|
|
8748
|
+
* </li>
|
|
8749
|
+
* <li>
|
|
8750
|
+
* <p>
|
|
8751
|
+
* <code>network-interface.addresses.private-dns-name</code> - The private DNS name.</p>
|
|
8752
|
+
* </li>
|
|
8753
|
+
* <li>
|
|
8754
|
+
* <p>
|
|
8755
|
+
* <code>network-interface.addresses.private-ip-address</code> - The private IPv4
|
|
8756
|
+
* address associated with the network interface.</p>
|
|
8711
8757
|
* </li>
|
|
8712
8758
|
* <li>
|
|
8713
8759
|
* <p>
|
|
@@ -8722,29 +8768,25 @@ export interface DescribeInstancesRequest {
|
|
|
8722
8768
|
* </li>
|
|
8723
8769
|
* <li>
|
|
8724
8770
|
* <p>
|
|
8725
|
-
* <code>network-interface.
|
|
8726
|
-
* interface attachment.</p>
|
|
8771
|
+
* <code>network-interface.association.carrier-ip</code> - The customer-owned IP address.</p>
|
|
8727
8772
|
* </li>
|
|
8728
8773
|
* <li>
|
|
8729
8774
|
* <p>
|
|
8730
|
-
* <code>network-interface.
|
|
8731
|
-
* to which the network interface is attached.</p>
|
|
8775
|
+
* <code>network-interface.association.customer-owned-ip</code> - The customer-owned IP address.</p>
|
|
8732
8776
|
* </li>
|
|
8733
8777
|
* <li>
|
|
8734
8778
|
* <p>
|
|
8735
|
-
* <code>network-interface.
|
|
8736
|
-
*
|
|
8779
|
+
* <code>network-interface.association.ip-owner-id</code> - The owner of the
|
|
8780
|
+
* Elastic IP address (IPv4) associated with the network interface.</p>
|
|
8737
8781
|
* </li>
|
|
8738
8782
|
* <li>
|
|
8739
8783
|
* <p>
|
|
8740
|
-
* <code>network-interface.
|
|
8741
|
-
* which the network interface is attached.</p>
|
|
8784
|
+
* <code>network-interface.association.public-dns-name</code> - The public DNS name.</p>
|
|
8742
8785
|
* </li>
|
|
8743
8786
|
* <li>
|
|
8744
8787
|
* <p>
|
|
8745
|
-
* <code>network-interface.
|
|
8746
|
-
*
|
|
8747
|
-
* <code>detaching</code> | <code>detached</code>).</p>
|
|
8788
|
+
* <code>network-interface.association.public-ip</code> - The address of the
|
|
8789
|
+
* Elastic IP address (IPv4) bound to the network interface.</p>
|
|
8748
8790
|
* </li>
|
|
8749
8791
|
* <li>
|
|
8750
8792
|
* <p>
|
|
@@ -8753,16 +8795,51 @@ export interface DescribeInstancesRequest {
|
|
|
8753
8795
|
* </li>
|
|
8754
8796
|
* <li>
|
|
8755
8797
|
* <p>
|
|
8798
|
+
* <code>network-interface.attachment.attachment-id</code> - The ID of the
|
|
8799
|
+
* interface attachment.</p>
|
|
8800
|
+
* </li>
|
|
8801
|
+
* <li>
|
|
8802
|
+
* <p>
|
|
8756
8803
|
* <code>network-interface.attachment.delete-on-termination</code> - Specifies
|
|
8757
8804
|
* whether the attachment is deleted when an instance is terminated.</p>
|
|
8758
8805
|
* </li>
|
|
8759
8806
|
* <li>
|
|
8760
8807
|
* <p>
|
|
8808
|
+
* <code>network-interface.attachment.device-index</code> - The device index to
|
|
8809
|
+
* which the network interface is attached.</p>
|
|
8810
|
+
* </li>
|
|
8811
|
+
* <li>
|
|
8812
|
+
* <p>
|
|
8813
|
+
* <code>network-interface.attachment.instance-id</code> - The ID of the instance
|
|
8814
|
+
* to which the network interface is attached.</p>
|
|
8815
|
+
* </li>
|
|
8816
|
+
* <li>
|
|
8817
|
+
* <p>
|
|
8818
|
+
* <code>network-interface.attachment.instance-owner-id</code> - The owner ID of
|
|
8819
|
+
* the instance to which the network interface is attached.</p>
|
|
8820
|
+
* </li>
|
|
8821
|
+
* <li>
|
|
8822
|
+
* <p>
|
|
8823
|
+
* <code>network-interface.attachment.network-card-index</code> - The index of the network card.</p>
|
|
8824
|
+
* </li>
|
|
8825
|
+
* <li>
|
|
8826
|
+
* <p>
|
|
8827
|
+
* <code>network-interface.attachment.status</code> - The status of the
|
|
8828
|
+
* attachment (<code>attaching</code> | <code>attached</code> |
|
|
8829
|
+
* <code>detaching</code> | <code>detached</code>).</p>
|
|
8830
|
+
* </li>
|
|
8831
|
+
* <li>
|
|
8832
|
+
* <p>
|
|
8761
8833
|
* <code>network-interface.availability-zone</code> - The Availability Zone for
|
|
8762
8834
|
* the network interface.</p>
|
|
8763
8835
|
* </li>
|
|
8764
8836
|
* <li>
|
|
8765
8837
|
* <p>
|
|
8838
|
+
* <code>network-interface.deny-all-igw-traffic</code> - A Boolean that indicates whether
|
|
8839
|
+
* a network interface with an IPv6 address is unreachable from the public internet.</p>
|
|
8840
|
+
* </li>
|
|
8841
|
+
* <li>
|
|
8842
|
+
* <p>
|
|
8766
8843
|
* <code>network-interface.description</code> - The description of the network
|
|
8767
8844
|
* interface.</p>
|
|
8768
8845
|
* </li>
|
|
@@ -8778,11 +8855,33 @@ export interface DescribeInstancesRequest {
|
|
|
8778
8855
|
* </li>
|
|
8779
8856
|
* <li>
|
|
8780
8857
|
* <p>
|
|
8858
|
+
* <code>network-interface.ipv4-prefixes.ipv4-prefix</code> - The IPv4 prefixes that are assigned to the network interface.</p>
|
|
8859
|
+
* </li>
|
|
8860
|
+
* <li>
|
|
8861
|
+
* <p>
|
|
8862
|
+
* <code>network-interface.ipv6-address</code> - The IPv6 address associated with the network interface.</p>
|
|
8863
|
+
* </li>
|
|
8864
|
+
* <li>
|
|
8865
|
+
* <p>
|
|
8781
8866
|
* <code>network-interface.ipv6-addresses.ipv6-address</code> - The IPv6 address
|
|
8782
8867
|
* associated with the network interface.</p>
|
|
8783
8868
|
* </li>
|
|
8784
8869
|
* <li>
|
|
8785
8870
|
* <p>
|
|
8871
|
+
* <code>network-interface.ipv6-addresses.is-primary-ipv6</code> - A Boolean that indicates whether this
|
|
8872
|
+
* is the primary IPv6 address.</p>
|
|
8873
|
+
* </li>
|
|
8874
|
+
* <li>
|
|
8875
|
+
* <p>
|
|
8876
|
+
* <code>network-interface.ipv6-native</code> - A Boolean that indicates whether this is
|
|
8877
|
+
* an IPv6 only network interface.</p>
|
|
8878
|
+
* </li>
|
|
8879
|
+
* <li>
|
|
8880
|
+
* <p>
|
|
8881
|
+
* <code>network-interface.ipv6-prefixes.ipv6-prefix</code> - The IPv6 prefix assigned to the network interface.</p>
|
|
8882
|
+
* </li>
|
|
8883
|
+
* <li>
|
|
8884
|
+
* <p>
|
|
8786
8885
|
* <code>network-interface.mac-address</code> - The MAC address of the network
|
|
8787
8886
|
* interface.</p>
|
|
8788
8887
|
* </li>
|
|
@@ -8793,6 +8892,10 @@ export interface DescribeInstancesRequest {
|
|
|
8793
8892
|
* </li>
|
|
8794
8893
|
* <li>
|
|
8795
8894
|
* <p>
|
|
8895
|
+
* <code>network-interface.outpost-arn</code> - The ARN of the Outpost.</p>
|
|
8896
|
+
* </li>
|
|
8897
|
+
* <li>
|
|
8898
|
+
* <p>
|
|
8796
8899
|
* <code>network-interface.owner-id</code> - The ID of the owner of the network
|
|
8797
8900
|
* interface.</p>
|
|
8798
8901
|
* </li>
|
|
@@ -8803,6 +8906,14 @@ export interface DescribeInstancesRequest {
|
|
|
8803
8906
|
* </li>
|
|
8804
8907
|
* <li>
|
|
8805
8908
|
* <p>
|
|
8909
|
+
* <code>network-interface.private-ip-address</code> - The private IPv4 address.</p>
|
|
8910
|
+
* </li>
|
|
8911
|
+
* <li>
|
|
8912
|
+
* <p>
|
|
8913
|
+
* <code>network-interface.public-dns-name</code> - The public DNS name.</p>
|
|
8914
|
+
* </li>
|
|
8915
|
+
* <li>
|
|
8916
|
+
* <p>
|
|
8806
8917
|
* <code>network-interface.requester-id</code> - The requester ID for the network
|
|
8807
8918
|
* interface.</p>
|
|
8808
8919
|
* </li>
|
|
@@ -8831,6 +8942,14 @@ export interface DescribeInstancesRequest {
|
|
|
8831
8942
|
* </li>
|
|
8832
8943
|
* <li>
|
|
8833
8944
|
* <p>
|
|
8945
|
+
* <code>network-interface.tag-key</code> - The key of a tag assigned to the network interface.</p>
|
|
8946
|
+
* </li>
|
|
8947
|
+
* <li>
|
|
8948
|
+
* <p>
|
|
8949
|
+
* <code>network-interface.tag-value</code> - The value of a tag assigned to the network interface.</p>
|
|
8950
|
+
* </li>
|
|
8951
|
+
* <li>
|
|
8952
|
+
* <p>
|
|
8834
8953
|
* <code>network-interface.vpc-id</code> - The ID of the VPC for the network
|
|
8835
8954
|
* interface.</p>
|
|
8836
8955
|
* </li>
|
|
@@ -4788,33 +4788,33 @@ export interface DescribeNetworkInterfacesRequest {
|
|
|
4788
4788
|
* <ul>
|
|
4789
4789
|
* <li>
|
|
4790
4790
|
* <p>
|
|
4791
|
-
* <code>
|
|
4792
|
-
*
|
|
4791
|
+
* <code>association.allocation-id</code> - The allocation ID returned when you
|
|
4792
|
+
* allocated the Elastic IP address (IPv4) for your network interface.</p>
|
|
4793
4793
|
* </li>
|
|
4794
4794
|
* <li>
|
|
4795
4795
|
* <p>
|
|
4796
|
-
* <code>
|
|
4797
|
-
*
|
|
4796
|
+
* <code>association.association-id</code> - The association ID returned when the
|
|
4797
|
+
* network interface was associated with an IPv4 address.</p>
|
|
4798
4798
|
* </li>
|
|
4799
4799
|
* <li>
|
|
4800
4800
|
* <p>
|
|
4801
|
-
* <code>addresses.association.
|
|
4802
|
-
* the network interface was associated with the Elastic IP address
|
|
4803
|
-
* (IPv4).</p>
|
|
4801
|
+
* <code>addresses.association.owner-id</code> - The owner ID of the addresses associated with the network interface.</p>
|
|
4804
4802
|
* </li>
|
|
4805
4803
|
* <li>
|
|
4806
4804
|
* <p>
|
|
4807
|
-
* <code>addresses.association.
|
|
4805
|
+
* <code>addresses.association.public-ip</code> - The association ID returned when
|
|
4806
|
+
* the network interface was associated with the Elastic IP address
|
|
4807
|
+
* (IPv4).</p>
|
|
4808
4808
|
* </li>
|
|
4809
4809
|
* <li>
|
|
4810
4810
|
* <p>
|
|
4811
|
-
* <code>
|
|
4812
|
-
*
|
|
4811
|
+
* <code>addresses.primary</code> - Whether the private IPv4 address is the primary
|
|
4812
|
+
* IP address associated with the network interface. </p>
|
|
4813
4813
|
* </li>
|
|
4814
4814
|
* <li>
|
|
4815
4815
|
* <p>
|
|
4816
|
-
* <code>
|
|
4817
|
-
*
|
|
4816
|
+
* <code>addresses.private-ip-address</code> - The private IPv4 addresses
|
|
4817
|
+
* associated with the network interface.</p>
|
|
4818
4818
|
* </li>
|
|
4819
4819
|
* <li>
|
|
4820
4820
|
* <p>
|
|
@@ -4833,11 +4833,11 @@ export interface DescribeNetworkInterfacesRequest {
|
|
|
4833
4833
|
* </li>
|
|
4834
4834
|
* <li>
|
|
4835
4835
|
* <p>
|
|
4836
|
-
* <code>attachment.
|
|
4836
|
+
* <code>attachment.attach-time</code> - The time that the network interface was attached to an instance.</p>
|
|
4837
4837
|
* </li>
|
|
4838
4838
|
* <li>
|
|
4839
4839
|
* <p>
|
|
4840
|
-
* <code>attachment.
|
|
4840
|
+
* <code>attachment.attachment-id</code> - The ID of the interface attachment.</p>
|
|
4841
4841
|
* </li>
|
|
4842
4842
|
* <li>
|
|
4843
4843
|
* <p>
|
|
@@ -4873,21 +4873,22 @@ export interface DescribeNetworkInterfacesRequest {
|
|
|
4873
4873
|
* </li>
|
|
4874
4874
|
* <li>
|
|
4875
4875
|
* <p>
|
|
4876
|
-
* <code>group-name</code> - The name of a security group associated with the network interface.</p>
|
|
4877
|
-
* </li>
|
|
4878
|
-
* <li>
|
|
4879
|
-
* <p>
|
|
4880
4876
|
* <code>ipv6-addresses.ipv6-address</code> - An IPv6 address associated with
|
|
4881
4877
|
* the network interface.</p>
|
|
4882
4878
|
* </li>
|
|
4883
4879
|
* <li>
|
|
4884
4880
|
* <p>
|
|
4885
4881
|
* <code>interface-type</code> - The type of network interface (<code>api_gateway_managed</code> |
|
|
4886
|
-
* <code>aws_codestar_connections_managed</code> | <code>branch</code> |
|
|
4887
|
-
* <code>
|
|
4888
|
-
* <code>
|
|
4889
|
-
* <code>
|
|
4890
|
-
* <code>
|
|
4882
|
+
* <code>aws_codestar_connections_managed</code> | <code>branch</code> |
|
|
4883
|
+
* <code>ec2_instance_connect_endpoint</code> | <code>efa</code> | <code>efs</code> |
|
|
4884
|
+
* <code>gateway_load_balancer</code> | <code>gateway_load_balancer_endpoint</code> |
|
|
4885
|
+
* <code>global_accelerator_managed</code> |
|
|
4886
|
+
* <code>interface</code> | <code>iot_rules_managed</code> |
|
|
4887
|
+
* <code>lambda</code> | <code>load_balancer</code> |
|
|
4888
|
+
* <code>nat_gateway</code> | <code>network_load_balancer</code> |
|
|
4889
|
+
* <code>quicksight</code> |
|
|
4890
|
+
* <code>transit_gateway</code> | <code>trunk</code> |
|
|
4891
|
+
* <code>vpc_endpoint</code>).</p>
|
|
4891
4892
|
* </li>
|
|
4892
4893
|
* <li>
|
|
4893
4894
|
* <p>
|
|
@@ -4903,12 +4904,12 @@ export interface DescribeNetworkInterfacesRequest {
|
|
|
4903
4904
|
* </li>
|
|
4904
4905
|
* <li>
|
|
4905
4906
|
* <p>
|
|
4906
|
-
* <code>private-
|
|
4907
|
-
* network interface.</p>
|
|
4907
|
+
* <code>private-dns-name</code> - The private DNS name of the network interface (IPv4).</p>
|
|
4908
4908
|
* </li>
|
|
4909
4909
|
* <li>
|
|
4910
4910
|
* <p>
|
|
4911
|
-
* <code>private-
|
|
4911
|
+
* <code>private-ip-address</code> - The private IPv4 address or addresses of the
|
|
4912
|
+
* network interface.</p>
|
|
4912
4913
|
* </li>
|
|
4913
4914
|
* <li>
|
|
4914
4915
|
* <p>
|
|
@@ -8507,17 +8508,33 @@ export interface SpotFleetRequestConfigData {
|
|
|
8507
8508
|
* maximum amount you're willing to pay. When the maximum amount you're willing to pay is
|
|
8508
8509
|
* reached, the fleet stops launching instances even if it hasn’t met the target
|
|
8509
8510
|
* capacity.</p>
|
|
8511
|
+
* <note>
|
|
8512
|
+
* <p>If your fleet includes T instances that are configured as <code>unlimited</code>,
|
|
8513
|
+
* and if their average CPU usage exceeds the baseline utilization, you will incur a charge
|
|
8514
|
+
* for surplus credits. The <code>onDemandMaxTotalPrice</code> does not account for surplus
|
|
8515
|
+
* credits, and, if you use surplus credits, your final cost might be higher than what you
|
|
8516
|
+
* specified for <code>onDemandMaxTotalPrice</code>. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/burstable-performance-instances-unlimited-mode-concepts.html#unlimited-mode-surplus-credits">Surplus credits can incur charges</a> in the <i>EC2 User
|
|
8517
|
+
* Guide</i>.</p>
|
|
8518
|
+
* </note>
|
|
8510
8519
|
*/
|
|
8511
8520
|
OnDemandMaxTotalPrice?: string;
|
|
8512
8521
|
/**
|
|
8513
8522
|
* @public
|
|
8514
8523
|
* <p>The maximum amount per hour for Spot Instances that you're willing to pay. You can use
|
|
8515
|
-
*
|
|
8516
|
-
*
|
|
8517
|
-
*
|
|
8518
|
-
*
|
|
8519
|
-
*
|
|
8520
|
-
*
|
|
8524
|
+
* the <code>spotMaxTotalPrice</code> parameter, the <code>onDemandMaxTotalPrice</code>
|
|
8525
|
+
* parameter, or both parameters to ensure that your fleet cost does not exceed your budget.
|
|
8526
|
+
* If you set a maximum price per hour for the On-Demand Instances and Spot Instances in your request, Spot Fleet will
|
|
8527
|
+
* launch instances until it reaches the maximum amount you're willing to pay. When the
|
|
8528
|
+
* maximum amount you're willing to pay is reached, the fleet stops launching instances even
|
|
8529
|
+
* if it hasn’t met the target capacity.</p>
|
|
8530
|
+
* <note>
|
|
8531
|
+
* <p>If your fleet includes T instances that are configured as <code>unlimited</code>,
|
|
8532
|
+
* and if their average CPU usage exceeds the baseline utilization, you will incur a charge
|
|
8533
|
+
* for surplus credits. The <code>spotMaxTotalPrice</code> does not account for surplus
|
|
8534
|
+
* credits, and, if you use surplus credits, your final cost might be higher than what you
|
|
8535
|
+
* specified for <code>spotMaxTotalPrice</code>. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/burstable-performance-instances-unlimited-mode-concepts.html#unlimited-mode-surplus-credits">Surplus credits can incur charges</a> in the <i>EC2 User
|
|
8536
|
+
* Guide</i>.</p>
|
|
8537
|
+
* </note>
|
|
8521
8538
|
*/
|
|
8522
8539
|
SpotMaxTotalPrice?: string;
|
|
8523
8540
|
/**
|
|
@@ -8613,7 +8630,7 @@ export interface SpotFleetRequestConfigData {
|
|
|
8613
8630
|
* <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_SpotFleetTagSpecification.html">SpotFleetTagSpecification</a>
|
|
8614
8631
|
* </code> (valid only if you use
|
|
8615
8632
|
* <code>LaunchSpecifications</code>). For information about tagging after launch, see
|
|
8616
|
-
* <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#tag-resources">
|
|
8633
|
+
* <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#tag-resources">Tag your resources</a>.</p>
|
|
8617
8634
|
*/
|
|
8618
8635
|
TagSpecifications?: TagSpecification[];
|
|
8619
8636
|
}
|
|
@@ -9479,6 +9496,10 @@ export interface DescribeStoreImageTasksRequest {
|
|
|
9479
9496
|
* bucket. For the filter value, specify the bucket name.</p>
|
|
9480
9497
|
* </li>
|
|
9481
9498
|
* </ul>
|
|
9499
|
+
* <note>
|
|
9500
|
+
* <p>When you specify the <code>ImageIds</code> parameter, any filters that you specify are
|
|
9501
|
+
* ignored. To use the filters, you must remove the <code>ImageIds</code> parameter.</p>
|
|
9502
|
+
* </note>
|
|
9482
9503
|
*/
|
|
9483
9504
|
Filters?: Filter[];
|
|
9484
9505
|
/**
|
|
@@ -9491,8 +9512,8 @@ export interface DescribeStoreImageTasksRequest {
|
|
|
9491
9512
|
* <p>The maximum number of items to return for this request.
|
|
9492
9513
|
* To get the next page of items, make another request with the token returned in the output.
|
|
9493
9514
|
* For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
|
|
9494
|
-
* <p>You cannot specify this parameter and the <code>
|
|
9495
|
-
*
|
|
9515
|
+
* <p>You cannot specify this parameter and the <code>ImageIds</code> parameter in the same
|
|
9516
|
+
* call.</p>
|
|
9496
9517
|
*/
|
|
9497
9518
|
MaxResults?: number;
|
|
9498
9519
|
}
|