@aws-sdk/client-ec2 3.48.0 → 3.52.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 +41 -0
- package/dist-cjs/EC2.js +30 -0
- package/dist-cjs/commands/ListImagesInRecycleBinCommand.js +36 -0
- package/dist-cjs/commands/ResetInstanceAttributeCommand.js +2 -2
- package/dist-cjs/commands/ResetNetworkInterfaceAttributeCommand.js +2 -2
- package/dist-cjs/commands/ResetSnapshotAttributeCommand.js +2 -2
- package/dist-cjs/commands/RestoreImageFromRecycleBinCommand.js +36 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/models/models_5.js +23 -23
- package/dist-cjs/models/models_6.js +32 -2
- package/dist-cjs/pagination/ListImagesInRecycleBinPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_ec2.js +207 -13
- package/dist-es/EC2.js +30 -0
- package/dist-es/commands/ListImagesInRecycleBinCommand.js +39 -0
- package/dist-es/commands/ResetInstanceAttributeCommand.js +1 -1
- package/dist-es/commands/ResetNetworkInterfaceAttributeCommand.js +1 -1
- package/dist-es/commands/ResetSnapshotAttributeCommand.js +1 -1
- package/dist-es/commands/RestoreImageFromRecycleBinCommand.js +39 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_5.js +12 -12
- package/dist-es/models/models_6.js +20 -0
- package/dist-es/pagination/ListImagesInRecycleBinPaginator.js +74 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_ec2.js +199 -0
- package/dist-types/EC2.d.ts +47 -12
- package/dist-types/EC2Client.d.ts +4 -2
- package/dist-types/commands/CreateFleetCommand.d.ts +1 -1
- package/dist-types/commands/CreateImageCommand.d.ts +6 -0
- package/dist-types/commands/DeleteFleetsCommand.d.ts +1 -1
- package/dist-types/commands/DeregisterImageCommand.d.ts +12 -4
- package/dist-types/commands/DeregisterInstanceEventNotificationAttributesCommand.d.ts +1 -2
- package/dist-types/commands/DescribeFleetInstancesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFleetsCommand.d.ts +1 -1
- package/dist-types/commands/DisableFastLaunchCommand.d.ts +3 -0
- package/dist-types/commands/EnableFastLaunchCommand.d.ts +3 -0
- package/dist-types/commands/ListImagesInRecycleBinCommand.d.ts +37 -0
- package/dist-types/commands/MonitorInstancesCommand.d.ts +1 -1
- package/dist-types/commands/RegisterInstanceEventNotificationAttributesCommand.d.ts +1 -1
- package/dist-types/commands/ResetInstanceAttributeCommand.d.ts +1 -1
- package/dist-types/commands/ResetNetworkInterfaceAttributeCommand.d.ts +1 -1
- package/dist-types/commands/ResetSnapshotAttributeCommand.d.ts +1 -1
- package/dist-types/commands/RestoreImageFromRecycleBinCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +30 -2
- package/dist-types/models/models_1.d.ts +16 -14
- package/dist-types/models/models_2.d.ts +35 -10
- package/dist-types/models/models_3.d.ts +104 -22
- package/dist-types/models/models_4.d.ts +6 -20
- package/dist-types/models/models_5.d.ts +90 -75
- package/dist-types/models/models_6.d.ts +135 -2
- package/dist-types/pagination/ListImagesInRecycleBinPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_ec2.d.ts +6 -0
- package/dist-types/ts3.4/EC2.d.ts +10 -0
- package/dist-types/ts3.4/EC2Client.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListImagesInRecycleBinCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ResetInstanceAttributeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ResetNetworkInterfaceAttributeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ResetSnapshotAttributeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RestoreImageFromRecycleBinCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +6 -1
- package/dist-types/ts3.4/models/models_1.d.ts +1 -1
- package/dist-types/ts3.4/models/models_2.d.ts +5 -0
- package/dist-types/ts3.4/models/models_5.d.ts +43 -37
- package/dist-types/ts3.4/models/models_6.d.ts +57 -2
- package/dist-types/ts3.4/pagination/ListImagesInRecycleBinPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_ec2.d.ts +6 -0
- package/package.json +42 -36
|
@@ -836,7 +836,7 @@ export interface CreateFleetRequest {
|
|
|
836
836
|
/**
|
|
837
837
|
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
838
838
|
* request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring
|
|
839
|
-
*
|
|
839
|
+
* idempotency</a>.</p>
|
|
840
840
|
*/
|
|
841
841
|
ClientToken?: string;
|
|
842
842
|
/**
|
|
@@ -1482,12 +1482,12 @@ export interface CreateFleetError {
|
|
|
1482
1482
|
Lifecycle?: InstanceLifecycle | string;
|
|
1483
1483
|
/**
|
|
1484
1484
|
* <p>The error code that indicates why the instance could not be launched. For more
|
|
1485
|
-
* information about error codes, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/errors-overview.html.html">Error
|
|
1485
|
+
* information about error codes, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/errors-overview.html.html">Error codes</a>.</p>
|
|
1486
1486
|
*/
|
|
1487
1487
|
ErrorCode?: string;
|
|
1488
1488
|
/**
|
|
1489
1489
|
* <p>The error message that describes why the instance could not be launched. For more
|
|
1490
|
-
* information about error messages, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/errors-overview.html.html">Error
|
|
1490
|
+
* information about error messages, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/errors-overview.html.html">Error codes</a>.</p>
|
|
1491
1491
|
*/
|
|
1492
1492
|
ErrorMessage?: string;
|
|
1493
1493
|
}
|
|
@@ -1881,7 +1881,7 @@ export interface EbsBlockDevice {
|
|
|
1881
1881
|
* <p>In no case can you remove encryption from an encrypted volume.</p>
|
|
1882
1882
|
* <p>Encrypted volumes can only be attached to instances that support Amazon EBS
|
|
1883
1883
|
* encryption. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html#EBSEncryption_supported_instances">Supported instance types</a>.</p>
|
|
1884
|
-
* <p>This parameter is not returned by
|
|
1884
|
+
* <p>This parameter is not returned by <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeImageAttribute.html">DescribeImageAttribute</a>.</p>
|
|
1885
1885
|
*/
|
|
1886
1886
|
Encrypted?: boolean;
|
|
1887
1887
|
}
|
|
@@ -3593,8 +3593,9 @@ export declare namespace LaunchTemplatePrivateDnsNameOptionsRequest {
|
|
|
3593
3593
|
export interface LaunchTemplateTagSpecificationRequest {
|
|
3594
3594
|
/**
|
|
3595
3595
|
* <p>The type of resource to tag. Currently, the resource types that support tagging on
|
|
3596
|
-
* creation are <code>instance</code
|
|
3597
|
-
*
|
|
3596
|
+
* creation are <code>instance</code>, <code>volume</code>, <code>elastic-gpu</code>,
|
|
3597
|
+
* <code>network-interface</code>, and <code>spot-instances-request</code>. To tag a
|
|
3598
|
+
* resource after it has been created, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateTags.html">CreateTags</a>.</p>
|
|
3598
3599
|
*/
|
|
3599
3600
|
ResourceType?: ResourceType | string;
|
|
3600
3601
|
/**
|
|
@@ -4326,9 +4327,12 @@ export interface LaunchTemplateInstanceMetadataOptions {
|
|
|
4326
4327
|
*/
|
|
4327
4328
|
HttpProtocolIpv6?: LaunchTemplateInstanceMetadataProtocolIpv6 | string;
|
|
4328
4329
|
/**
|
|
4329
|
-
* <p>
|
|
4330
|
-
*
|
|
4331
|
-
*
|
|
4330
|
+
* <p>Set to <code>enabled</code> to allow access to instance tags from the instance
|
|
4331
|
+
* metadata. Set to <code>disabled</code> to turn off access to instance tags from the instance
|
|
4332
|
+
* metadata. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html#work-with-tags-in-IMDS">Work with
|
|
4333
|
+
* instance tags using the instance metadata</a>.</p>
|
|
4334
|
+
* <p>Default: <code>disabled</code>
|
|
4335
|
+
* </p>
|
|
4332
4336
|
*/
|
|
4333
4337
|
InstanceMetadataTags?: LaunchTemplateInstanceMetadataTagsState | string;
|
|
4334
4338
|
}
|
|
@@ -5781,10 +5785,8 @@ export interface CreateNetworkInterfaceRequest {
|
|
|
5781
5785
|
*/
|
|
5782
5786
|
Ipv6PrefixCount?: number;
|
|
5783
5787
|
/**
|
|
5784
|
-
* <p>
|
|
5785
|
-
*
|
|
5786
|
-
* Elastic Fabric Adapter</a> in the <i>Amazon Elastic Compute Cloud User Guide</i>. To create a trunk network interface, specify
|
|
5787
|
-
* <code>trunk</code>.</p>
|
|
5788
|
+
* <p>The type of network interface. The default is <code>interface</code>.</p>
|
|
5789
|
+
* <p>The only supported values are <code>efa</code> and <code>trunk</code>.</p>
|
|
5788
5790
|
*/
|
|
5789
5791
|
InterfaceType?: NetworkInterfaceCreationType | string;
|
|
5790
5792
|
/**
|
|
@@ -5911,7 +5913,7 @@ export declare namespace GroupIdentifier {
|
|
|
5911
5913
|
*/
|
|
5912
5914
|
const filterSensitiveLog: (obj: GroupIdentifier) => any;
|
|
5913
5915
|
}
|
|
5914
|
-
export declare type NetworkInterfaceType = "efa" | "interface" | "natGateway" | "trunk";
|
|
5916
|
+
export declare type NetworkInterfaceType = "api_gateway_managed" | "aws_codestar_connections_managed" | "branch" | "efa" | "gateway_load_balancer" | "gateway_load_balancer_endpoint" | "global_accelerator_managed" | "interface" | "iot_rules_managed" | "lambda" | "load_balancer" | "natGateway" | "network_load_balancer" | "quicksight" | "transit_gateway" | "trunk" | "vpc_endpoint";
|
|
5915
5917
|
/**
|
|
5916
5918
|
* <p>Describes an IPv6 address associated with a network interface.</p>
|
|
5917
5919
|
*/
|
|
@@ -5129,8 +5129,7 @@ export interface DescribeAvailabilityZonesRequest {
|
|
|
5129
5129
|
* <li>
|
|
5130
5130
|
* <p>
|
|
5131
5131
|
* <code>state</code> - The state of the Availability Zone, the Local Zone, or the
|
|
5132
|
-
* Wavelength Zone (<code>available</code>
|
|
5133
|
-
* | <code>unavailable</code>).</p>
|
|
5132
|
+
* Wavelength Zone (<code>available</code>).</p>
|
|
5134
5133
|
* </li>
|
|
5135
5134
|
* <li>
|
|
5136
5135
|
* <p>
|
|
@@ -5204,7 +5203,8 @@ export declare type AvailabilityZoneState = "available" | "impaired" | "informat
|
|
|
5204
5203
|
*/
|
|
5205
5204
|
export interface AvailabilityZone {
|
|
5206
5205
|
/**
|
|
5207
|
-
* <p>The state of the Availability Zone, Local Zone, or Wavelength Zone
|
|
5206
|
+
* <p>The state of the Availability Zone, Local Zone, or Wavelength Zone. This value is always
|
|
5207
|
+
* <code>available</code>.</p>
|
|
5208
5208
|
*/
|
|
5209
5209
|
State?: AvailabilityZoneState | string;
|
|
5210
5210
|
/**
|
|
@@ -5713,6 +5713,10 @@ export interface DescribeCapacityReservationsRequest {
|
|
|
5713
5713
|
* </li>
|
|
5714
5714
|
* </ul>
|
|
5715
5715
|
* </li>
|
|
5716
|
+
* <li>
|
|
5717
|
+
* <p>
|
|
5718
|
+
* <code>placement-group-arn</code> - The ARN of the cluster placement group in which the Capacity Reservation was created.</p>
|
|
5719
|
+
* </li>
|
|
5716
5720
|
* </ul>
|
|
5717
5721
|
*/
|
|
5718
5722
|
Filters?: Filter[];
|
|
@@ -6339,8 +6343,22 @@ export declare namespace ClientConnectResponseOptions {
|
|
|
6339
6343
|
*/
|
|
6340
6344
|
const filterSensitiveLog: (obj: ClientConnectResponseOptions) => any;
|
|
6341
6345
|
}
|
|
6346
|
+
/**
|
|
6347
|
+
* <p>Current state of options for customizable text banner that will be displayed on
|
|
6348
|
+
* Amazon Web Services provided clients when a VPN session is established.</p>
|
|
6349
|
+
*/
|
|
6342
6350
|
export interface ClientLoginBannerResponseOptions {
|
|
6351
|
+
/**
|
|
6352
|
+
* <p>Current state of text banner feature.</p>
|
|
6353
|
+
* <p>Valid values: <code>true | false</code>
|
|
6354
|
+
* </p>
|
|
6355
|
+
*/
|
|
6343
6356
|
Enabled?: boolean;
|
|
6357
|
+
/**
|
|
6358
|
+
* <p>Customizable text that will be displayed in a banner on Amazon Web Services provided
|
|
6359
|
+
* clients when a VPN session is established. UTF-8 encoded
|
|
6360
|
+
* characters only. Maximum of 1400 characters.</p>
|
|
6361
|
+
*/
|
|
6344
6362
|
BannerText?: string;
|
|
6345
6363
|
}
|
|
6346
6364
|
export declare namespace ClientLoginBannerResponseOptions {
|
|
@@ -6465,7 +6483,18 @@ export interface ClientVpnEndpoint {
|
|
|
6465
6483
|
* <p>The options for managing connection authorization for new client connections.</p>
|
|
6466
6484
|
*/
|
|
6467
6485
|
ClientConnectOptions?: ClientConnectResponseOptions;
|
|
6486
|
+
/**
|
|
6487
|
+
* <p>The maximum VPN session duration time in hours.</p>
|
|
6488
|
+
* <p>Valid values: <code>8 | 10 | 12 | 24</code>
|
|
6489
|
+
* </p>
|
|
6490
|
+
* <p>Default value: <code>24</code>
|
|
6491
|
+
* </p>
|
|
6492
|
+
*/
|
|
6468
6493
|
SessionTimeoutHours?: number;
|
|
6494
|
+
/**
|
|
6495
|
+
* <p>Options for enabling a customizable text banner that will be displayed on Amazon Web Services provided clients when a VPN session is
|
|
6496
|
+
* established.</p>
|
|
6497
|
+
*/
|
|
6469
6498
|
ClientLoginBannerOptions?: ClientLoginBannerResponseOptions;
|
|
6470
6499
|
}
|
|
6471
6500
|
export declare namespace ClientVpnEndpoint {
|
|
@@ -6693,19 +6722,15 @@ export interface DescribeCoipPoolsRequest {
|
|
|
6693
6722
|
*/
|
|
6694
6723
|
PoolIds?: string[];
|
|
6695
6724
|
/**
|
|
6696
|
-
* <p>
|
|
6725
|
+
* <p>One or more filters.</p>
|
|
6697
6726
|
* <ul>
|
|
6698
6727
|
* <li>
|
|
6699
6728
|
* <p>
|
|
6700
|
-
* <code>coip-pool.
|
|
6701
|
-
* </p>
|
|
6729
|
+
* <code>coip-pool.local-gateway-route-table-id</code> - The ID of the local gateway route table.</p>
|
|
6702
6730
|
* </li>
|
|
6703
|
-
* </ul>
|
|
6704
|
-
* <ul>
|
|
6705
6731
|
* <li>
|
|
6706
6732
|
* <p>
|
|
6707
|
-
* <code>coip-pool.
|
|
6708
|
-
* </p>
|
|
6733
|
+
* <code>coip-pool.pool-id</code> - The ID of the address pool.</p>
|
|
6709
6734
|
* </li>
|
|
6710
6735
|
* </ul>
|
|
6711
6736
|
*/
|
|
@@ -1276,7 +1276,11 @@ export interface DescribeFleetsRequest {
|
|
|
1276
1276
|
*/
|
|
1277
1277
|
NextToken?: string;
|
|
1278
1278
|
/**
|
|
1279
|
-
* <p>The
|
|
1279
|
+
* <p>The IDs of the EC2 Fleets.</p>
|
|
1280
|
+
* <note>
|
|
1281
|
+
* <p>If a fleet is of type <code>instant</code>, you must specify the fleet ID, otherwise
|
|
1282
|
+
* it does not appear in the response.</p>
|
|
1283
|
+
* </note>
|
|
1280
1284
|
*/
|
|
1281
1285
|
FleetIds?: string[];
|
|
1282
1286
|
/**
|
|
@@ -1342,12 +1346,12 @@ export interface DescribeFleetError {
|
|
|
1342
1346
|
Lifecycle?: InstanceLifecycle | string;
|
|
1343
1347
|
/**
|
|
1344
1348
|
* <p>The error code that indicates why the instance could not be launched. For more
|
|
1345
|
-
* information about error codes, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/errors-overview.html.html">Error
|
|
1349
|
+
* information about error codes, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/errors-overview.html.html">Error codes</a>.</p>
|
|
1346
1350
|
*/
|
|
1347
1351
|
ErrorCode?: string;
|
|
1348
1352
|
/**
|
|
1349
1353
|
* <p>The error message that describes why the instance could not be launched. For more
|
|
1350
|
-
* information about error messages, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/errors-overview.html.html">Error
|
|
1354
|
+
* information about error messages, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/errors-overview.html.html">Error codes</a>.</p>
|
|
1351
1355
|
*/
|
|
1352
1356
|
ErrorMessage?: string;
|
|
1353
1357
|
}
|
|
@@ -1707,7 +1711,7 @@ export interface FleetData {
|
|
|
1707
1711
|
/**
|
|
1708
1712
|
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
1709
1713
|
* request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">Ensuring
|
|
1710
|
-
*
|
|
1714
|
+
* idempotency</a>.</p>
|
|
1711
1715
|
* <p>Constraints: Maximum 64 ASCII characters</p>
|
|
1712
1716
|
*/
|
|
1713
1717
|
ClientToken?: string;
|
|
@@ -5240,7 +5244,7 @@ export interface InstanceNetworkInterface {
|
|
|
5240
5244
|
*/
|
|
5241
5245
|
VpcId?: string;
|
|
5242
5246
|
/**
|
|
5243
|
-
* <p>
|
|
5247
|
+
* <p>The type of network interface.</p>
|
|
5244
5248
|
* <p>Valid values: <code>interface</code> | <code>efa</code> | <code>trunk</code>
|
|
5245
5249
|
* </p>
|
|
5246
5250
|
*/
|
|
@@ -6101,8 +6105,8 @@ export interface DescribeInstanceTypesRequest {
|
|
|
6101
6105
|
* </li>
|
|
6102
6106
|
* <li>
|
|
6103
6107
|
* <p>
|
|
6104
|
-
* <code>instance-storage-info.encryption-
|
|
6105
|
-
* (<code>required</code> | <code>unsupported</code>).</p>
|
|
6108
|
+
* <code>instance-storage-info.encryption-support</code> - Indicates whether data is encrypted at rest
|
|
6109
|
+
* (<code>required</code> | <code>supported</code> | <code>unsupported</code>).</p>
|
|
6106
6110
|
* </li>
|
|
6107
6111
|
* <li>
|
|
6108
6112
|
* <p>
|
|
@@ -6166,6 +6170,11 @@ export interface DescribeInstanceTypesRequest {
|
|
|
6166
6170
|
* </li>
|
|
6167
6171
|
* <li>
|
|
6168
6172
|
* <p>
|
|
6173
|
+
* <code>network-info.maximum-network-cards</code> - The maximum number of network cards per
|
|
6174
|
+
* instance.</p>
|
|
6175
|
+
* </li>
|
|
6176
|
+
* <li>
|
|
6177
|
+
* <p>
|
|
6169
6178
|
* <code>network-info.maximum-network-interfaces</code> - The maximum number of network interfaces per instance.</p>
|
|
6170
6179
|
* </li>
|
|
6171
6180
|
* <li>
|
|
@@ -7504,6 +7513,11 @@ export interface DescribeLocalGatewayRouteTablesRequest {
|
|
|
7504
7513
|
* </li>
|
|
7505
7514
|
* <li>
|
|
7506
7515
|
* <p>
|
|
7516
|
+
* <code>local-gateway-route-table-arn</code> - The Amazon Resource Name (ARN) of the
|
|
7517
|
+
* local gateway route table.</p>
|
|
7518
|
+
* </li>
|
|
7519
|
+
* <li>
|
|
7520
|
+
* <p>
|
|
7507
7521
|
* <code>local-gateway-route-table-id</code> - The ID of a local gateway route table.</p>
|
|
7508
7522
|
* </li>
|
|
7509
7523
|
* <li>
|
|
@@ -7512,6 +7526,10 @@ export interface DescribeLocalGatewayRouteTablesRequest {
|
|
|
7512
7526
|
* </li>
|
|
7513
7527
|
* <li>
|
|
7514
7528
|
* <p>
|
|
7529
|
+
* <code>owner-id</code> - The ID of the Amazon Web Services account that owns the local gateway route table.</p>
|
|
7530
|
+
* </li>
|
|
7531
|
+
* <li>
|
|
7532
|
+
* <p>
|
|
7515
7533
|
* <code>state</code> - The state of the local gateway route table.</p>
|
|
7516
7534
|
* </li>
|
|
7517
7535
|
* </ul>
|
|
@@ -7608,6 +7626,11 @@ export interface DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociations
|
|
|
7608
7626
|
* </li>
|
|
7609
7627
|
* <li>
|
|
7610
7628
|
* <p>
|
|
7629
|
+
* <code>local-gateway-route-table-arn</code> - The Amazon Resource Name (ARN) of the local
|
|
7630
|
+
* gateway route table for the virtual interface group.</p>
|
|
7631
|
+
* </li>
|
|
7632
|
+
* <li>
|
|
7633
|
+
* <p>
|
|
7611
7634
|
* <code>local-gateway-route-table-id</code> - The ID of the local gateway route table.</p>
|
|
7612
7635
|
* </li>
|
|
7613
7636
|
* <li>
|
|
@@ -7620,6 +7643,11 @@ export interface DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociations
|
|
|
7620
7643
|
* </li>
|
|
7621
7644
|
* <li>
|
|
7622
7645
|
* <p>
|
|
7646
|
+
* <code>owner-id</code> - The ID of the Amazon Web Services account that owns the local gateway virtual
|
|
7647
|
+
* interface group association.</p>
|
|
7648
|
+
* </li>
|
|
7649
|
+
* <li>
|
|
7650
|
+
* <p>
|
|
7623
7651
|
* <code>state</code> - The state of the association.</p>
|
|
7624
7652
|
* </li>
|
|
7625
7653
|
* </ul>
|
|
@@ -7720,6 +7748,11 @@ export interface DescribeLocalGatewayRouteTableVpcAssociationsRequest {
|
|
|
7720
7748
|
* </li>
|
|
7721
7749
|
* <li>
|
|
7722
7750
|
* <p>
|
|
7751
|
+
* <code>local-gateway-route-table-arn</code> - The Amazon Resource Name (ARN) of the local
|
|
7752
|
+
* gateway route table for the association.</p>
|
|
7753
|
+
* </li>
|
|
7754
|
+
* <li>
|
|
7755
|
+
* <p>
|
|
7723
7756
|
* <code>local-gateway-route-table-id</code> - The ID of the local gateway route table.</p>
|
|
7724
7757
|
* </li>
|
|
7725
7758
|
* <li>
|
|
@@ -7728,6 +7761,11 @@ export interface DescribeLocalGatewayRouteTableVpcAssociationsRequest {
|
|
|
7728
7761
|
* </li>
|
|
7729
7762
|
* <li>
|
|
7730
7763
|
* <p>
|
|
7764
|
+
* <code>owner-id</code> - The ID of the Amazon Web Services account that owns the local gateway route table
|
|
7765
|
+
* for the association.</p>
|
|
7766
|
+
* </li>
|
|
7767
|
+
* <li>
|
|
7768
|
+
* <p>
|
|
7731
7769
|
* <code>state</code> - The state of the association.</p>
|
|
7732
7770
|
* </li>
|
|
7733
7771
|
* <li>
|
|
@@ -7776,6 +7814,10 @@ export declare namespace DescribeLocalGatewayRouteTableVpcAssociationsResult {
|
|
|
7776
7814
|
const filterSensitiveLog: (obj: DescribeLocalGatewayRouteTableVpcAssociationsResult) => any;
|
|
7777
7815
|
}
|
|
7778
7816
|
export interface DescribeLocalGatewaysRequest {
|
|
7817
|
+
/**
|
|
7818
|
+
* <p>The IDs of the local gateways.</p>
|
|
7819
|
+
*/
|
|
7820
|
+
LocalGatewayIds?: string[];
|
|
7779
7821
|
/**
|
|
7780
7822
|
* <p>One or more filters.</p>
|
|
7781
7823
|
* <ul>
|
|
@@ -7785,19 +7827,11 @@ export interface DescribeLocalGatewaysRequest {
|
|
|
7785
7827
|
* </li>
|
|
7786
7828
|
* <li>
|
|
7787
7829
|
* <p>
|
|
7788
|
-
* <code>
|
|
7789
|
-
* </li>
|
|
7790
|
-
* <li>
|
|
7791
|
-
* <p>
|
|
7792
|
-
* <code>local-gateway-route-table-virtual-interface-group-association-id</code> - The ID of the association.</p>
|
|
7793
|
-
* </li>
|
|
7794
|
-
* <li>
|
|
7795
|
-
* <p>
|
|
7796
|
-
* <code>local-gateway-route-table-virtual-interface-group-id</code> - The ID of the virtual interface group.</p>
|
|
7830
|
+
* <code>outpost-arn</code> - The Amazon Resource Name (ARN) of the Outpost.</p>
|
|
7797
7831
|
* </li>
|
|
7798
7832
|
* <li>
|
|
7799
7833
|
* <p>
|
|
7800
|
-
* <code>
|
|
7834
|
+
* <code>owner-id</code> - The ID of the Amazon Web Services account that owns the local gateway.</p>
|
|
7801
7835
|
* </li>
|
|
7802
7836
|
* <li>
|
|
7803
7837
|
* <p>
|
|
@@ -7805,10 +7839,6 @@ export interface DescribeLocalGatewaysRequest {
|
|
|
7805
7839
|
* </li>
|
|
7806
7840
|
* </ul>
|
|
7807
7841
|
*/
|
|
7808
|
-
LocalGatewayIds?: string[];
|
|
7809
|
-
/**
|
|
7810
|
-
* <p>One or more filters.</p>
|
|
7811
|
-
*/
|
|
7812
7842
|
Filters?: Filter[];
|
|
7813
7843
|
/**
|
|
7814
7844
|
* <p>The maximum number of results to return with a single call.
|
|
@@ -7893,11 +7923,15 @@ export interface DescribeLocalGatewayVirtualInterfaceGroupsRequest {
|
|
|
7893
7923
|
* </li>
|
|
7894
7924
|
* <li>
|
|
7895
7925
|
* <p>
|
|
7926
|
+
* <code>local-gateway-virtual-interface-group-id</code> - The ID of the virtual interface group.</p>
|
|
7927
|
+
* </li>
|
|
7928
|
+
* <li>
|
|
7929
|
+
* <p>
|
|
7896
7930
|
* <code>local-gateway-virtual-interface-id</code> - The ID of the virtual interface.</p>
|
|
7897
7931
|
* </li>
|
|
7898
7932
|
* <li>
|
|
7899
7933
|
* <p>
|
|
7900
|
-
* <code>
|
|
7934
|
+
* <code>owner-id</code> - The ID of the Amazon Web Services account that owns the local gateway virtual interface group.</p>
|
|
7901
7935
|
* </li>
|
|
7902
7936
|
* </ul>
|
|
7903
7937
|
*/
|
|
@@ -7978,6 +8012,45 @@ export interface DescribeLocalGatewayVirtualInterfacesRequest {
|
|
|
7978
8012
|
LocalGatewayVirtualInterfaceIds?: string[];
|
|
7979
8013
|
/**
|
|
7980
8014
|
* <p>One or more filters.</p>
|
|
8015
|
+
* <ul>
|
|
8016
|
+
* <li>
|
|
8017
|
+
* <p>
|
|
8018
|
+
* <code>local-address</code> - The local address.</p>
|
|
8019
|
+
* </li>
|
|
8020
|
+
* <li>
|
|
8021
|
+
* <p>
|
|
8022
|
+
* <code>local-bgp-asn</code> - The Border Gateway Protocol (BGP) Autonomous System Number (ASN)
|
|
8023
|
+
* of the local gateway.</p>
|
|
8024
|
+
* </li>
|
|
8025
|
+
* <li>
|
|
8026
|
+
* <p>
|
|
8027
|
+
* <code>local-gateway-id</code> - The ID of the local gateway.</p>
|
|
8028
|
+
* </li>
|
|
8029
|
+
* <li>
|
|
8030
|
+
* <p>
|
|
8031
|
+
* <code>local-gateway-virtual-interface-id</code> - The ID of the virtual interface.</p>
|
|
8032
|
+
* </li>
|
|
8033
|
+
* <li>
|
|
8034
|
+
* <p>
|
|
8035
|
+
* <code>local-gateway-virtual-interface-group-id</code> - The ID of the virtual interface group.</p>
|
|
8036
|
+
* </li>
|
|
8037
|
+
* <li>
|
|
8038
|
+
* <p>
|
|
8039
|
+
* <code>owner-id</code> - The ID of the Amazon Web Services account that owns the local gateway virtual interface.</p>
|
|
8040
|
+
* </li>
|
|
8041
|
+
* <li>
|
|
8042
|
+
* <p>
|
|
8043
|
+
* <code>peer-address</code> - The peer address.</p>
|
|
8044
|
+
* </li>
|
|
8045
|
+
* <li>
|
|
8046
|
+
* <p>
|
|
8047
|
+
* <code>peer-bgp-asn</code> - The peer BGP ASN.</p>
|
|
8048
|
+
* </li>
|
|
8049
|
+
* <li>
|
|
8050
|
+
* <p>
|
|
8051
|
+
* <code>vlan</code> - The ID of the VLAN.</p>
|
|
8052
|
+
* </li>
|
|
8053
|
+
* </ul>
|
|
7981
8054
|
*/
|
|
7982
8055
|
Filters?: Filter[];
|
|
7983
8056
|
/**
|
|
@@ -9245,6 +9318,15 @@ export interface DescribeNetworkInterfacesRequest {
|
|
|
9245
9318
|
* </li>
|
|
9246
9319
|
* <li>
|
|
9247
9320
|
* <p>
|
|
9321
|
+
* <code>interface-type</code> - The type of network interface (<code>api_gateway_managed</code> |
|
|
9322
|
+
* <code>aws_codestar_connections_managed</code> | <code>branch</code> | <code>efa</code> |
|
|
9323
|
+
* <code>gateway_load_balancer</code> | <code>gateway_load_balancer_endpoint</code> | <code>global_accelerator_managed</code> |
|
|
9324
|
+
* <code>interface</code> | <code>iot_rules_managed</code> | <code>lambda</code> | <code>load_balancer</code> |
|
|
9325
|
+
* <code>nat_gateway</code> | <code>network_load_balancer</code> | <code>quicksight</code> |
|
|
9326
|
+
* <code>transit_gateway</code> | <code>trunk</code> | <code>vpc_endpoint</code>).</p>
|
|
9327
|
+
* </li>
|
|
9328
|
+
* <li>
|
|
9329
|
+
* <p>
|
|
9248
9330
|
* <code>mac-address</code> - The MAC address of the network interface.</p>
|
|
9249
9331
|
* </li>
|
|
9250
9332
|
* <li>
|
|
@@ -2233,10 +2233,6 @@ export interface InstanceNetworkInterfaceSpecification {
|
|
|
2233
2233
|
AssociateCarrierIpAddress?: boolean;
|
|
2234
2234
|
/**
|
|
2235
2235
|
* <p>The type of network interface.</p>
|
|
2236
|
-
* <p>To create an Elastic Fabric Adapter (EFA), specify
|
|
2237
|
-
* <code>efa</code>. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/efa.html">Elastic Fabric Adapter</a> in the
|
|
2238
|
-
* <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
2239
|
-
*
|
|
2240
2236
|
* <p>Valid values: <code>interface</code> | <code>efa</code>
|
|
2241
2237
|
* </p>
|
|
2242
2238
|
*/
|
|
@@ -7837,7 +7833,7 @@ export interface EnableFastLaunchRequest {
|
|
|
7837
7833
|
*/
|
|
7838
7834
|
LaunchTemplate?: FastLaunchLaunchTemplateSpecificationRequest;
|
|
7839
7835
|
/**
|
|
7840
|
-
* <p>The maximum number of parallel instances to launch for creating resources
|
|
7836
|
+
* <p>The maximum number of parallel instances to launch for creating resources. Value must be <code>6</code> or greater. </p>
|
|
7841
7837
|
*/
|
|
7842
7838
|
MaxParallelLaunches?: number;
|
|
7843
7839
|
/**
|
|
@@ -8796,33 +8792,23 @@ export interface GetCoipPoolUsageRequest {
|
|
|
8796
8792
|
*/
|
|
8797
8793
|
PoolId: string | undefined;
|
|
8798
8794
|
/**
|
|
8799
|
-
* <p>
|
|
8795
|
+
* <p>One or more filters.</p>
|
|
8800
8796
|
* <ul>
|
|
8801
8797
|
* <li>
|
|
8802
8798
|
* <p>
|
|
8803
|
-
* <code>coip-address-usage.allocation-id</code>
|
|
8804
|
-
* </p>
|
|
8799
|
+
* <code>coip-address-usage.allocation-id</code> - The allocation ID of the address.</p>
|
|
8805
8800
|
* </li>
|
|
8806
|
-
* </ul>
|
|
8807
|
-
* <ul>
|
|
8808
8801
|
* <li>
|
|
8809
8802
|
* <p>
|
|
8810
|
-
* <code>coip-address-usage.aws-account-id</code>
|
|
8811
|
-
* </p>
|
|
8803
|
+
* <code>coip-address-usage.aws-account-id</code> - The ID of the Amazon Web Services account that is using the customer-owned IP address.</p>
|
|
8812
8804
|
* </li>
|
|
8813
|
-
* </ul>
|
|
8814
|
-
* <ul>
|
|
8815
8805
|
* <li>
|
|
8816
8806
|
* <p>
|
|
8817
|
-
* <code>coip-address-usage.aws-service</code>
|
|
8818
|
-
* </p>
|
|
8807
|
+
* <code>coip-address-usage.aws-service</code> - The Amazon Web Services service that is using the customer-owned IP address.</p>
|
|
8819
8808
|
* </li>
|
|
8820
|
-
* </ul>
|
|
8821
|
-
* <ul>
|
|
8822
8809
|
* <li>
|
|
8823
8810
|
* <p>
|
|
8824
|
-
* <code>coip-address-usage.co-ip</code>
|
|
8825
|
-
* </p>
|
|
8811
|
+
* <code>coip-address-usage.co-ip</code> - The customer-owned IP address.</p>
|
|
8826
8812
|
* </li>
|
|
8827
8813
|
* </ul>
|
|
8828
8814
|
*/
|