@aws-sdk/client-ec2 3.130.0 → 3.136.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +27 -0
- package/dist-types/EC2.d.ts +36 -34
- package/dist-types/commands/AllocateIpamPoolCidrCommand.d.ts +1 -1
- package/dist-types/commands/CreateIpamCommand.d.ts +1 -1
- package/dist-types/commands/CreateIpamPoolCommand.d.ts +1 -1
- package/dist-types/commands/CreateIpamScopeCommand.d.ts +1 -1
- package/dist-types/commands/CreateLaunchTemplateVersionCommand.d.ts +2 -2
- package/dist-types/commands/CreateTagsCommand.d.ts +2 -2
- package/dist-types/commands/CreateTransitGatewayPeeringAttachmentCommand.d.ts +2 -3
- package/dist-types/commands/DeleteIpamCommand.d.ts +1 -1
- package/dist-types/commands/DeleteIpamPoolCommand.d.ts +1 -1
- package/dist-types/commands/DeleteIpamScopeCommand.d.ts +1 -1
- package/dist-types/commands/DeleteTagsCommand.d.ts +4 -3
- package/dist-types/commands/DeprovisionIpamPoolCidrCommand.d.ts +1 -1
- package/dist-types/commands/DescribeIpamsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTagsCommand.d.ts +2 -2
- package/dist-types/commands/DisableIpamOrganizationAdminAccountCommand.d.ts +1 -1
- package/dist-types/commands/EnableIpamOrganizationAdminAccountCommand.d.ts +1 -1
- package/dist-types/commands/GetIpamAddressHistoryCommand.d.ts +1 -1
- package/dist-types/commands/GetLaunchTemplateDataCommand.d.ts +2 -2
- package/dist-types/commands/ModifyIpamPoolCommand.d.ts +1 -1
- package/dist-types/commands/ModifyIpamResourceCidrCommand.d.ts +1 -1
- package/dist-types/commands/MoveByoipCidrToIpamCommand.d.ts +1 -1
- package/dist-types/commands/ProvisionIpamPoolCidrCommand.d.ts +1 -1
- package/dist-types/commands/ProvisionPublicIpv4PoolCidrCommand.d.ts +1 -1
- package/dist-types/commands/RegisterImageCommand.d.ts +4 -2
- package/dist-types/commands/ReleaseIpamPoolAllocationCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +24 -6
- package/dist-types/models/models_1.d.ts +84 -47
- package/dist-types/models/models_2.d.ts +30 -12
- package/dist-types/models/models_3.d.ts +16 -9
- package/dist-types/models/models_4.d.ts +31 -13
- package/dist-types/models/models_5.d.ts +30 -18
- package/dist-types/models/models_6.d.ts +37 -13
- package/dist-types/ts3.4/models/models_0.d.ts +5 -1
- package/dist-types/ts3.4/models/models_2.d.ts +6 -0
- package/package.json +4 -4
|
@@ -7,7 +7,7 @@ export interface ReleaseIpamPoolAllocationCommandInput extends ReleaseIpamPoolAl
|
|
|
7
7
|
export interface ReleaseIpamPoolAllocationCommandOutput extends ReleaseIpamPoolAllocationResult, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Release an allocation within an IPAM pool. You can only use this action to release manual allocations. To remove an allocation for a resource without deleting the resource, set its monitored state to false using <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifyIpamResourceCidr.html">ModifyIpamResourceCidr</a>. For more information, see <a href="/vpc/latest/ipam/release-pool-alloc-ipam.html">Release an allocation</a> in the <i>Amazon VPC IPAM User Guide</i>.
|
|
10
|
+
* <p>Release an allocation within an IPAM pool. You can only use this action to release manual allocations. To remove an allocation for a resource without deleting the resource, set its monitored state to false using <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifyIpamResourceCidr.html">ModifyIpamResourceCidr</a>. For more information, see <a href="https://docs.aws.amazon.com/vpc/latest/ipam/release-pool-alloc-ipam.html">Release an allocation</a> in the <i>Amazon VPC IPAM User Guide</i>.
|
|
11
11
|
* </p>
|
|
12
12
|
* @example
|
|
13
13
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -288,6 +288,9 @@ export interface PeeringTgwInfo {
|
|
|
288
288
|
* <p>The ID of the transit gateway.</p>
|
|
289
289
|
*/
|
|
290
290
|
TransitGatewayId?: string;
|
|
291
|
+
/**
|
|
292
|
+
* <p>The ID of the core network where the transit gateway peer is located.</p>
|
|
293
|
+
*/
|
|
291
294
|
CoreNetworkId?: string;
|
|
292
295
|
/**
|
|
293
296
|
* <p>The ID of the Amazon Web Services account that owns the transit gateway.</p>
|
|
@@ -308,7 +311,13 @@ export declare enum DynamicRoutingValue {
|
|
|
308
311
|
disable = "disable",
|
|
309
312
|
enable = "enable"
|
|
310
313
|
}
|
|
314
|
+
/**
|
|
315
|
+
* <p>Describes dynamic routing for the transit gateway peering attachment.</p>
|
|
316
|
+
*/
|
|
311
317
|
export interface TransitGatewayPeeringAttachmentOptions {
|
|
318
|
+
/**
|
|
319
|
+
* <p>Describes whether dynamic routing is enabled or disabled for the transit gateway peering attachment.</p>
|
|
320
|
+
*/
|
|
312
321
|
DynamicRouting?: DynamicRoutingValue | string;
|
|
313
322
|
}
|
|
314
323
|
export declare namespace TransitGatewayPeeringAttachmentOptions {
|
|
@@ -379,6 +388,9 @@ export interface TransitGatewayPeeringAttachment {
|
|
|
379
388
|
* <p>Information about the accepter transit gateway.</p>
|
|
380
389
|
*/
|
|
381
390
|
AccepterTgwInfo?: PeeringTgwInfo;
|
|
391
|
+
/**
|
|
392
|
+
* <p>Details about the transit gateway peering attachment.</p>
|
|
393
|
+
*/
|
|
382
394
|
Options?: TransitGatewayPeeringAttachmentOptions;
|
|
383
395
|
/**
|
|
384
396
|
* <p>The status of the transit gateway peering attachment.</p>
|
|
@@ -1455,7 +1467,7 @@ export declare enum ActivityStatus {
|
|
|
1455
1467
|
/**
|
|
1456
1468
|
* <p>Add an operating Region to an IPAM. Operating Regions are Amazon Web Services Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only
|
|
1457
1469
|
* discovers and monitors resources in the Amazon Web Services Regions you select as operating Regions.</p>
|
|
1458
|
-
* <p>For more information about operating Regions, see <a href="/vpc/latest/ipam/create-ipam.html">Create an IPAM</a> in the <i>Amazon VPC IPAM User Guide</i>.
|
|
1470
|
+
* <p>For more information about operating Regions, see <a href="https://docs.aws.amazon.com/vpc/latest/ipam/create-ipam.html">Create an IPAM</a> in the <i>Amazon VPC IPAM User Guide</i>.
|
|
1459
1471
|
* </p>
|
|
1460
1472
|
*/
|
|
1461
1473
|
export interface AddIpamOperatingRegion {
|
|
@@ -1680,6 +1692,12 @@ export declare type Affinity = "default" | "host";
|
|
|
1680
1692
|
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";
|
|
1681
1693
|
/**
|
|
1682
1694
|
* <p>The tags to apply to a resource when the resource is being created.</p>
|
|
1695
|
+
* <note>
|
|
1696
|
+
* <p>The <code>Valid Values</code> lists all the resource types that can be tagged.
|
|
1697
|
+
* However, the action you're using might not support tagging all of these resource types.
|
|
1698
|
+
* If you try to tag a resource type that is unsupported for the action you're using,
|
|
1699
|
+
* you'll get an error.</p>
|
|
1700
|
+
* </note>
|
|
1683
1701
|
*/
|
|
1684
1702
|
export interface TagSpecification {
|
|
1685
1703
|
/**
|
|
@@ -3118,20 +3136,20 @@ export interface AssociateVpcCidrBlockRequest {
|
|
|
3118
3136
|
*/
|
|
3119
3137
|
Ipv6CidrBlock?: string;
|
|
3120
3138
|
/**
|
|
3121
|
-
* <p>Associate a CIDR allocated from an IPv4 IPAM pool to a VPC. For more information about Amazon VPC IP Address Manager (IPAM), see <a href="/vpc/latest/ipam/what-is-it-ipam.html">What is IPAM?</a> in the <i>Amazon VPC IPAM User Guide</i>.</p>
|
|
3139
|
+
* <p>Associate a CIDR allocated from an IPv4 IPAM pool to a VPC. For more information about Amazon VPC IP Address Manager (IPAM), see <a href="https://docs.aws.amazon.com/vpc/latest/ipam/what-is-it-ipam.html">What is IPAM?</a> in the <i>Amazon VPC IPAM User Guide</i>.</p>
|
|
3122
3140
|
*/
|
|
3123
3141
|
Ipv4IpamPoolId?: string;
|
|
3124
3142
|
/**
|
|
3125
|
-
* <p>The netmask length of the IPv4 CIDR you would like to associate from an Amazon VPC IP Address Manager (IPAM) pool. For more information about IPAM, see <a href="/vpc/latest/ipam/what-is-it-ipam.html">What is IPAM?</a> in the <i>Amazon VPC IPAM User Guide</i>.
|
|
3143
|
+
* <p>The netmask length of the IPv4 CIDR you would like to associate from an Amazon VPC IP Address Manager (IPAM) pool. For more information about IPAM, see <a href="https://docs.aws.amazon.com/vpc/latest/ipam/what-is-it-ipam.html">What is IPAM?</a> in the <i>Amazon VPC IPAM User Guide</i>.
|
|
3126
3144
|
* </p>
|
|
3127
3145
|
*/
|
|
3128
3146
|
Ipv4NetmaskLength?: number;
|
|
3129
3147
|
/**
|
|
3130
|
-
* <p>Associates a CIDR allocated from an IPv6 IPAM pool to a VPC. For more information about Amazon VPC IP Address Manager (IPAM), see <a href="/vpc/latest/ipam/what-is-it-ipam.html">What is IPAM?</a> in the <i>Amazon VPC IPAM User Guide</i>.</p>
|
|
3148
|
+
* <p>Associates a CIDR allocated from an IPv6 IPAM pool to a VPC. For more information about Amazon VPC IP Address Manager (IPAM), see <a href="https://docs.aws.amazon.com/vpc/latest/ipam/what-is-it-ipam.html">What is IPAM?</a> in the <i>Amazon VPC IPAM User Guide</i>.</p>
|
|
3131
3149
|
*/
|
|
3132
3150
|
Ipv6IpamPoolId?: string;
|
|
3133
3151
|
/**
|
|
3134
|
-
* <p>The netmask length of the IPv6 CIDR you would like to associate from an Amazon VPC IP Address Manager (IPAM) pool. For more information about IPAM, see <a href="/vpc/latest/ipam/what-is-it-ipam.html">What is IPAM?</a> in the <i>Amazon VPC IPAM User Guide</i>. </p>
|
|
3152
|
+
* <p>The netmask length of the IPv6 CIDR you would like to associate from an Amazon VPC IP Address Manager (IPAM) pool. For more information about IPAM, see <a href="https://docs.aws.amazon.com/vpc/latest/ipam/what-is-it-ipam.html">What is IPAM?</a> in the <i>Amazon VPC IPAM User Guide</i>. </p>
|
|
3135
3153
|
*/
|
|
3136
3154
|
Ipv6NetmaskLength?: number;
|
|
3137
3155
|
}
|
|
@@ -5326,7 +5344,7 @@ export declare namespace CreateCapacityReservationResult {
|
|
|
5326
5344
|
export declare enum FleetInstanceMatchCriteria {
|
|
5327
5345
|
open = "open"
|
|
5328
5346
|
}
|
|
5329
|
-
export declare type _InstanceType = "a1.2xlarge" | "a1.4xlarge" | "a1.large" | "a1.medium" | "a1.metal" | "a1.xlarge" | "c1.medium" | "c1.xlarge" | "c3.2xlarge" | "c3.4xlarge" | "c3.8xlarge" | "c3.large" | "c3.xlarge" | "c4.2xlarge" | "c4.4xlarge" | "c4.8xlarge" | "c4.large" | "c4.xlarge" | "c5.12xlarge" | "c5.18xlarge" | "c5.24xlarge" | "c5.2xlarge" | "c5.4xlarge" | "c5.9xlarge" | "c5.large" | "c5.metal" | "c5.xlarge" | "c5a.12xlarge" | "c5a.16xlarge" | "c5a.24xlarge" | "c5a.2xlarge" | "c5a.4xlarge" | "c5a.8xlarge" | "c5a.large" | "c5a.xlarge" | "c5ad.12xlarge" | "c5ad.16xlarge" | "c5ad.24xlarge" | "c5ad.2xlarge" | "c5ad.4xlarge" | "c5ad.8xlarge" | "c5ad.large" | "c5ad.xlarge" | "c5d.12xlarge" | "c5d.18xlarge" | "c5d.24xlarge" | "c5d.2xlarge" | "c5d.4xlarge" | "c5d.9xlarge" | "c5d.large" | "c5d.metal" | "c5d.xlarge" | "c5n.18xlarge" | "c5n.2xlarge" | "c5n.4xlarge" | "c5n.9xlarge" | "c5n.large" | "c5n.metal" | "c5n.xlarge" | "c6a.12xlarge" | "c6a.16xlarge" | "c6a.24xlarge" | "c6a.2xlarge" | "c6a.32xlarge" | "c6a.48xlarge" | "c6a.4xlarge" | "c6a.8xlarge" | "c6a.large" | "c6a.metal" | "c6a.xlarge" | "c6g.12xlarge" | "c6g.16xlarge" | "c6g.2xlarge" | "c6g.4xlarge" | "c6g.8xlarge" | "c6g.large" | "c6g.medium" | "c6g.metal" | "c6g.xlarge" | "c6gd.12xlarge" | "c6gd.16xlarge" | "c6gd.2xlarge" | "c6gd.4xlarge" | "c6gd.8xlarge" | "c6gd.large" | "c6gd.medium" | "c6gd.metal" | "c6gd.xlarge" | "c6gn.12xlarge" | "c6gn.16xlarge" | "c6gn.2xlarge" | "c6gn.4xlarge" | "c6gn.8xlarge" | "c6gn.large" | "c6gn.medium" | "c6gn.xlarge" | "c6i.12xlarge" | "c6i.16xlarge" | "c6i.24xlarge" | "c6i.2xlarge" | "c6i.32xlarge" | "c6i.4xlarge" | "c6i.8xlarge" | "c6i.large" | "c6i.metal" | "c6i.xlarge" | "c7g.12xlarge" | "c7g.16xlarge" | "c7g.2xlarge" | "c7g.4xlarge" | "c7g.8xlarge" | "c7g.large" | "c7g.medium" | "c7g.xlarge" | "cc1.4xlarge" | "cc2.8xlarge" | "cg1.4xlarge" | "cr1.8xlarge" | "d2.2xlarge" | "d2.4xlarge" | "d2.8xlarge" | "d2.xlarge" | "d3.2xlarge" | "d3.4xlarge" | "d3.8xlarge" | "d3.xlarge" | "d3en.12xlarge" | "d3en.2xlarge" | "d3en.4xlarge" | "d3en.6xlarge" | "d3en.8xlarge" | "d3en.xlarge" | "dl1.24xlarge" | "f1.16xlarge" | "f1.2xlarge" | "f1.4xlarge" | "g2.2xlarge" | "g2.8xlarge" | "g3.16xlarge" | "g3.4xlarge" | "g3.8xlarge" | "g3s.xlarge" | "g4ad.16xlarge" | "g4ad.2xlarge" | "g4ad.4xlarge" | "g4ad.8xlarge" | "g4ad.xlarge" | "g4dn.12xlarge" | "g4dn.16xlarge" | "g4dn.2xlarge" | "g4dn.4xlarge" | "g4dn.8xlarge" | "g4dn.metal" | "g4dn.xlarge" | "g5.12xlarge" | "g5.16xlarge" | "g5.24xlarge" | "g5.2xlarge" | "g5.48xlarge" | "g5.4xlarge" | "g5.8xlarge" | "g5.xlarge" | "g5g.16xlarge" | "g5g.2xlarge" | "g5g.4xlarge" | "g5g.8xlarge" | "g5g.metal" | "g5g.xlarge" | "h1.16xlarge" | "h1.2xlarge" | "h1.4xlarge" | "h1.8xlarge" | "hi1.4xlarge" | "hpc6a.48xlarge" | "hs1.8xlarge" | "i2.2xlarge" | "i2.4xlarge" | "i2.8xlarge" | "i2.xlarge" | "i3.16xlarge" | "i3.2xlarge" | "i3.4xlarge" | "i3.8xlarge" | "i3.large" | "i3.metal" | "i3.xlarge" | "i3en.12xlarge" | "i3en.24xlarge" | "i3en.2xlarge" | "i3en.3xlarge" | "i3en.6xlarge" | "i3en.large" | "i3en.metal" | "i3en.xlarge" | "i4i.16xlarge" | "i4i.2xlarge" | "i4i.32xlarge" | "i4i.4xlarge" | "i4i.8xlarge" | "i4i.large" | "i4i.metal" | "i4i.xlarge" | "im4gn.16xlarge" | "im4gn.2xlarge" | "im4gn.4xlarge" | "im4gn.8xlarge" | "im4gn.large" | "im4gn.xlarge" | "inf1.24xlarge" | "inf1.2xlarge" | "inf1.6xlarge" | "inf1.xlarge" | "is4gen.2xlarge" | "is4gen.4xlarge" | "is4gen.8xlarge" | "is4gen.large" | "is4gen.medium" | "is4gen.xlarge" | "m1.large" | "m1.medium" | "m1.small" | "m1.xlarge" | "m2.2xlarge" | "m2.4xlarge" | "m2.xlarge" | "m3.2xlarge" | "m3.large" | "m3.medium" | "m3.xlarge" | "m4.10xlarge" | "m4.16xlarge" | "m4.2xlarge" | "m4.4xlarge" | "m4.large" | "m4.xlarge" | "m5.12xlarge" | "m5.16xlarge" | "m5.24xlarge" | "m5.2xlarge" | "m5.4xlarge" | "m5.8xlarge" | "m5.large" | "m5.metal" | "m5.xlarge" | "m5a.12xlarge" | "m5a.16xlarge" | "m5a.24xlarge" | "m5a.2xlarge" | "m5a.4xlarge" | "m5a.8xlarge" | "m5a.large" | "m5a.xlarge" | "m5ad.12xlarge" | "m5ad.16xlarge" | "m5ad.24xlarge" | "m5ad.2xlarge" | "m5ad.4xlarge" | "m5ad.8xlarge" | "m5ad.large" | "m5ad.xlarge" | "m5d.12xlarge" | "m5d.16xlarge" | "m5d.24xlarge" | "m5d.2xlarge" | "m5d.4xlarge" | "m5d.8xlarge" | "m5d.large" | "m5d.metal" | "m5d.xlarge" | "m5dn.12xlarge" | "m5dn.16xlarge" | "m5dn.24xlarge" | "m5dn.2xlarge" | "m5dn.4xlarge" | "m5dn.8xlarge" | "m5dn.large" | "m5dn.metal" | "m5dn.xlarge" | "m5n.12xlarge" | "m5n.16xlarge" | "m5n.24xlarge" | "m5n.2xlarge" | "m5n.4xlarge" | "m5n.8xlarge" | "m5n.large" | "m5n.metal" | "m5n.xlarge" | "m5zn.12xlarge" | "m5zn.2xlarge" | "m5zn.3xlarge" | "m5zn.6xlarge" | "m5zn.large" | "m5zn.metal" | "m5zn.xlarge" | "m6a.12xlarge" | "m6a.16xlarge" | "m6a.24xlarge" | "m6a.2xlarge" | "m6a.32xlarge" | "m6a.48xlarge" | "m6a.4xlarge" | "m6a.8xlarge" | "m6a.large" | "m6a.metal" | "m6a.xlarge" | "m6g.12xlarge" | "m6g.16xlarge" | "m6g.2xlarge" | "m6g.4xlarge" | "m6g.8xlarge" | "m6g.large" | "m6g.medium" | "m6g.metal" | "m6g.xlarge" | "m6gd.12xlarge" | "m6gd.16xlarge" | "m6gd.2xlarge" | "m6gd.4xlarge" | "m6gd.8xlarge" | "m6gd.large" | "m6gd.medium" | "m6gd.metal" | "m6gd.xlarge" | "m6i.12xlarge" | "m6i.16xlarge" | "m6i.24xlarge" | "m6i.2xlarge" | "m6i.32xlarge" | "m6i.4xlarge" | "m6i.8xlarge" | "m6i.large" | "m6i.metal" | "m6i.xlarge" | "mac1.metal" | "p2.16xlarge" | "p2.8xlarge" | "p2.xlarge" | "p3.16xlarge" | "p3.2xlarge" | "p3.8xlarge" | "p3dn.24xlarge" | "p4d.24xlarge" | "r3.2xlarge" | "r3.4xlarge" | "r3.8xlarge" | "r3.large" | "r3.xlarge" | "r4.16xlarge" | "r4.2xlarge" | "r4.4xlarge" | "r4.8xlarge" | "r4.large" | "r4.xlarge" | "r5.12xlarge" | "r5.16xlarge" | "r5.24xlarge" | "r5.2xlarge" | "r5.4xlarge" | "r5.8xlarge" | "r5.large" | "r5.metal" | "r5.xlarge" | "r5a.12xlarge" | "r5a.16xlarge" | "r5a.24xlarge" | "r5a.2xlarge" | "r5a.4xlarge" | "r5a.8xlarge" | "r5a.large" | "r5a.xlarge" | "r5ad.12xlarge" | "r5ad.16xlarge" | "r5ad.24xlarge" | "r5ad.2xlarge" | "r5ad.4xlarge" | "r5ad.8xlarge" | "r5ad.large" | "r5ad.xlarge" | "r5b.12xlarge" | "r5b.16xlarge" | "r5b.24xlarge" | "r5b.2xlarge" | "r5b.4xlarge" | "r5b.8xlarge" | "r5b.large" | "r5b.metal" | "r5b.xlarge" | "r5d.12xlarge" | "r5d.16xlarge" | "r5d.24xlarge" | "r5d.2xlarge" | "r5d.4xlarge" | "r5d.8xlarge" | "r5d.large" | "r5d.metal" | "r5d.xlarge" | "r5dn.12xlarge" | "r5dn.16xlarge" | "r5dn.24xlarge" | "r5dn.2xlarge" | "r5dn.4xlarge" | "r5dn.8xlarge" | "r5dn.large" | "r5dn.metal" | "r5dn.xlarge" | "r5n.12xlarge" | "r5n.16xlarge" | "r5n.24xlarge" | "r5n.2xlarge" | "r5n.4xlarge" | "r5n.8xlarge" | "r5n.large" | "r5n.metal" | "r5n.xlarge" | "r6g.12xlarge" | "r6g.16xlarge" | "r6g.2xlarge" | "r6g.4xlarge" | "r6g.8xlarge" | "r6g.large" | "r6g.medium" | "r6g.metal" | "r6g.xlarge" | "r6gd.12xlarge" | "r6gd.16xlarge" | "r6gd.2xlarge" | "r6gd.4xlarge" | "r6gd.8xlarge" | "r6gd.large" | "r6gd.medium" | "r6gd.metal" | "r6gd.xlarge" | "r6i.12xlarge" | "r6i.16xlarge" | "r6i.24xlarge" | "r6i.2xlarge" | "r6i.32xlarge" | "r6i.4xlarge" | "r6i.8xlarge" | "r6i.large" | "r6i.metal" | "r6i.xlarge" | "t1.micro" | "t2.2xlarge" | "t2.large" | "t2.medium" | "t2.micro" | "t2.nano" | "t2.small" | "t2.xlarge" | "t3.2xlarge" | "t3.large" | "t3.medium" | "t3.micro" | "t3.nano" | "t3.small" | "t3.xlarge" | "t3a.2xlarge" | "t3a.large" | "t3a.medium" | "t3a.micro" | "t3a.nano" | "t3a.small" | "t3a.xlarge" | "t4g.2xlarge" | "t4g.large" | "t4g.medium" | "t4g.micro" | "t4g.nano" | "t4g.small" | "t4g.xlarge" | "u-12tb1.112xlarge" | "u-12tb1.metal" | "u-18tb1.metal" | "u-24tb1.metal" | "u-6tb1.112xlarge" | "u-6tb1.56xlarge" | "u-6tb1.metal" | "u-9tb1.112xlarge" | "u-9tb1.metal" | "vt1.24xlarge" | "vt1.3xlarge" | "vt1.6xlarge" | "x1.16xlarge" | "x1.32xlarge" | "x1e.16xlarge" | "x1e.2xlarge" | "x1e.32xlarge" | "x1e.4xlarge" | "x1e.8xlarge" | "x1e.xlarge" | "x2gd.12xlarge" | "x2gd.16xlarge" | "x2gd.2xlarge" | "x2gd.4xlarge" | "x2gd.8xlarge" | "x2gd.large" | "x2gd.medium" | "x2gd.metal" | "x2gd.xlarge" | "x2idn.16xlarge" | "x2idn.24xlarge" | "x2idn.32xlarge" | "x2idn.metal" | "x2iedn.16xlarge" | "x2iedn.24xlarge" | "x2iedn.2xlarge" | "x2iedn.32xlarge" | "x2iedn.4xlarge" | "x2iedn.8xlarge" | "x2iedn.metal" | "x2iedn.xlarge" | "x2iezn.12xlarge" | "x2iezn.2xlarge" | "x2iezn.4xlarge" | "x2iezn.6xlarge" | "x2iezn.8xlarge" | "x2iezn.metal" | "z1d.12xlarge" | "z1d.2xlarge" | "z1d.3xlarge" | "z1d.6xlarge" | "z1d.large" | "z1d.metal" | "z1d.xlarge";
|
|
5347
|
+
export declare type _InstanceType = "a1.2xlarge" | "a1.4xlarge" | "a1.large" | "a1.medium" | "a1.metal" | "a1.xlarge" | "c1.medium" | "c1.xlarge" | "c3.2xlarge" | "c3.4xlarge" | "c3.8xlarge" | "c3.large" | "c3.xlarge" | "c4.2xlarge" | "c4.4xlarge" | "c4.8xlarge" | "c4.large" | "c4.xlarge" | "c5.12xlarge" | "c5.18xlarge" | "c5.24xlarge" | "c5.2xlarge" | "c5.4xlarge" | "c5.9xlarge" | "c5.large" | "c5.metal" | "c5.xlarge" | "c5a.12xlarge" | "c5a.16xlarge" | "c5a.24xlarge" | "c5a.2xlarge" | "c5a.4xlarge" | "c5a.8xlarge" | "c5a.large" | "c5a.xlarge" | "c5ad.12xlarge" | "c5ad.16xlarge" | "c5ad.24xlarge" | "c5ad.2xlarge" | "c5ad.4xlarge" | "c5ad.8xlarge" | "c5ad.large" | "c5ad.xlarge" | "c5d.12xlarge" | "c5d.18xlarge" | "c5d.24xlarge" | "c5d.2xlarge" | "c5d.4xlarge" | "c5d.9xlarge" | "c5d.large" | "c5d.metal" | "c5d.xlarge" | "c5n.18xlarge" | "c5n.2xlarge" | "c5n.4xlarge" | "c5n.9xlarge" | "c5n.large" | "c5n.metal" | "c5n.xlarge" | "c6a.12xlarge" | "c6a.16xlarge" | "c6a.24xlarge" | "c6a.2xlarge" | "c6a.32xlarge" | "c6a.48xlarge" | "c6a.4xlarge" | "c6a.8xlarge" | "c6a.large" | "c6a.metal" | "c6a.xlarge" | "c6g.12xlarge" | "c6g.16xlarge" | "c6g.2xlarge" | "c6g.4xlarge" | "c6g.8xlarge" | "c6g.large" | "c6g.medium" | "c6g.metal" | "c6g.xlarge" | "c6gd.12xlarge" | "c6gd.16xlarge" | "c6gd.2xlarge" | "c6gd.4xlarge" | "c6gd.8xlarge" | "c6gd.large" | "c6gd.medium" | "c6gd.metal" | "c6gd.xlarge" | "c6gn.12xlarge" | "c6gn.16xlarge" | "c6gn.2xlarge" | "c6gn.4xlarge" | "c6gn.8xlarge" | "c6gn.large" | "c6gn.medium" | "c6gn.xlarge" | "c6i.12xlarge" | "c6i.16xlarge" | "c6i.24xlarge" | "c6i.2xlarge" | "c6i.32xlarge" | "c6i.4xlarge" | "c6i.8xlarge" | "c6i.large" | "c6i.metal" | "c6i.xlarge" | "c7g.12xlarge" | "c7g.16xlarge" | "c7g.2xlarge" | "c7g.4xlarge" | "c7g.8xlarge" | "c7g.large" | "c7g.medium" | "c7g.xlarge" | "cc1.4xlarge" | "cc2.8xlarge" | "cg1.4xlarge" | "cr1.8xlarge" | "d2.2xlarge" | "d2.4xlarge" | "d2.8xlarge" | "d2.xlarge" | "d3.2xlarge" | "d3.4xlarge" | "d3.8xlarge" | "d3.xlarge" | "d3en.12xlarge" | "d3en.2xlarge" | "d3en.4xlarge" | "d3en.6xlarge" | "d3en.8xlarge" | "d3en.xlarge" | "dl1.24xlarge" | "f1.16xlarge" | "f1.2xlarge" | "f1.4xlarge" | "g2.2xlarge" | "g2.8xlarge" | "g3.16xlarge" | "g3.4xlarge" | "g3.8xlarge" | "g3s.xlarge" | "g4ad.16xlarge" | "g4ad.2xlarge" | "g4ad.4xlarge" | "g4ad.8xlarge" | "g4ad.xlarge" | "g4dn.12xlarge" | "g4dn.16xlarge" | "g4dn.2xlarge" | "g4dn.4xlarge" | "g4dn.8xlarge" | "g4dn.metal" | "g4dn.xlarge" | "g5.12xlarge" | "g5.16xlarge" | "g5.24xlarge" | "g5.2xlarge" | "g5.48xlarge" | "g5.4xlarge" | "g5.8xlarge" | "g5.xlarge" | "g5g.16xlarge" | "g5g.2xlarge" | "g5g.4xlarge" | "g5g.8xlarge" | "g5g.metal" | "g5g.xlarge" | "h1.16xlarge" | "h1.2xlarge" | "h1.4xlarge" | "h1.8xlarge" | "hi1.4xlarge" | "hpc6a.48xlarge" | "hs1.8xlarge" | "i2.2xlarge" | "i2.4xlarge" | "i2.8xlarge" | "i2.xlarge" | "i3.16xlarge" | "i3.2xlarge" | "i3.4xlarge" | "i3.8xlarge" | "i3.large" | "i3.metal" | "i3.xlarge" | "i3en.12xlarge" | "i3en.24xlarge" | "i3en.2xlarge" | "i3en.3xlarge" | "i3en.6xlarge" | "i3en.large" | "i3en.metal" | "i3en.xlarge" | "i4i.16xlarge" | "i4i.2xlarge" | "i4i.32xlarge" | "i4i.4xlarge" | "i4i.8xlarge" | "i4i.large" | "i4i.metal" | "i4i.xlarge" | "im4gn.16xlarge" | "im4gn.2xlarge" | "im4gn.4xlarge" | "im4gn.8xlarge" | "im4gn.large" | "im4gn.xlarge" | "inf1.24xlarge" | "inf1.2xlarge" | "inf1.6xlarge" | "inf1.xlarge" | "is4gen.2xlarge" | "is4gen.4xlarge" | "is4gen.8xlarge" | "is4gen.large" | "is4gen.medium" | "is4gen.xlarge" | "m1.large" | "m1.medium" | "m1.small" | "m1.xlarge" | "m2.2xlarge" | "m2.4xlarge" | "m2.xlarge" | "m3.2xlarge" | "m3.large" | "m3.medium" | "m3.xlarge" | "m4.10xlarge" | "m4.16xlarge" | "m4.2xlarge" | "m4.4xlarge" | "m4.large" | "m4.xlarge" | "m5.12xlarge" | "m5.16xlarge" | "m5.24xlarge" | "m5.2xlarge" | "m5.4xlarge" | "m5.8xlarge" | "m5.large" | "m5.metal" | "m5.xlarge" | "m5a.12xlarge" | "m5a.16xlarge" | "m5a.24xlarge" | "m5a.2xlarge" | "m5a.4xlarge" | "m5a.8xlarge" | "m5a.large" | "m5a.xlarge" | "m5ad.12xlarge" | "m5ad.16xlarge" | "m5ad.24xlarge" | "m5ad.2xlarge" | "m5ad.4xlarge" | "m5ad.8xlarge" | "m5ad.large" | "m5ad.xlarge" | "m5d.12xlarge" | "m5d.16xlarge" | "m5d.24xlarge" | "m5d.2xlarge" | "m5d.4xlarge" | "m5d.8xlarge" | "m5d.large" | "m5d.metal" | "m5d.xlarge" | "m5dn.12xlarge" | "m5dn.16xlarge" | "m5dn.24xlarge" | "m5dn.2xlarge" | "m5dn.4xlarge" | "m5dn.8xlarge" | "m5dn.large" | "m5dn.metal" | "m5dn.xlarge" | "m5n.12xlarge" | "m5n.16xlarge" | "m5n.24xlarge" | "m5n.2xlarge" | "m5n.4xlarge" | "m5n.8xlarge" | "m5n.large" | "m5n.metal" | "m5n.xlarge" | "m5zn.12xlarge" | "m5zn.2xlarge" | "m5zn.3xlarge" | "m5zn.6xlarge" | "m5zn.large" | "m5zn.metal" | "m5zn.xlarge" | "m6a.12xlarge" | "m6a.16xlarge" | "m6a.24xlarge" | "m6a.2xlarge" | "m6a.32xlarge" | "m6a.48xlarge" | "m6a.4xlarge" | "m6a.8xlarge" | "m6a.large" | "m6a.metal" | "m6a.xlarge" | "m6g.12xlarge" | "m6g.16xlarge" | "m6g.2xlarge" | "m6g.4xlarge" | "m6g.8xlarge" | "m6g.large" | "m6g.medium" | "m6g.metal" | "m6g.xlarge" | "m6gd.12xlarge" | "m6gd.16xlarge" | "m6gd.2xlarge" | "m6gd.4xlarge" | "m6gd.8xlarge" | "m6gd.large" | "m6gd.medium" | "m6gd.metal" | "m6gd.xlarge" | "m6i.12xlarge" | "m6i.16xlarge" | "m6i.24xlarge" | "m6i.2xlarge" | "m6i.32xlarge" | "m6i.4xlarge" | "m6i.8xlarge" | "m6i.large" | "m6i.metal" | "m6i.xlarge" | "mac1.metal" | "mac2.metal" | "p2.16xlarge" | "p2.8xlarge" | "p2.xlarge" | "p3.16xlarge" | "p3.2xlarge" | "p3.8xlarge" | "p3dn.24xlarge" | "p4d.24xlarge" | "r3.2xlarge" | "r3.4xlarge" | "r3.8xlarge" | "r3.large" | "r3.xlarge" | "r4.16xlarge" | "r4.2xlarge" | "r4.4xlarge" | "r4.8xlarge" | "r4.large" | "r4.xlarge" | "r5.12xlarge" | "r5.16xlarge" | "r5.24xlarge" | "r5.2xlarge" | "r5.4xlarge" | "r5.8xlarge" | "r5.large" | "r5.metal" | "r5.xlarge" | "r5a.12xlarge" | "r5a.16xlarge" | "r5a.24xlarge" | "r5a.2xlarge" | "r5a.4xlarge" | "r5a.8xlarge" | "r5a.large" | "r5a.xlarge" | "r5ad.12xlarge" | "r5ad.16xlarge" | "r5ad.24xlarge" | "r5ad.2xlarge" | "r5ad.4xlarge" | "r5ad.8xlarge" | "r5ad.large" | "r5ad.xlarge" | "r5b.12xlarge" | "r5b.16xlarge" | "r5b.24xlarge" | "r5b.2xlarge" | "r5b.4xlarge" | "r5b.8xlarge" | "r5b.large" | "r5b.metal" | "r5b.xlarge" | "r5d.12xlarge" | "r5d.16xlarge" | "r5d.24xlarge" | "r5d.2xlarge" | "r5d.4xlarge" | "r5d.8xlarge" | "r5d.large" | "r5d.metal" | "r5d.xlarge" | "r5dn.12xlarge" | "r5dn.16xlarge" | "r5dn.24xlarge" | "r5dn.2xlarge" | "r5dn.4xlarge" | "r5dn.8xlarge" | "r5dn.large" | "r5dn.metal" | "r5dn.xlarge" | "r5n.12xlarge" | "r5n.16xlarge" | "r5n.24xlarge" | "r5n.2xlarge" | "r5n.4xlarge" | "r5n.8xlarge" | "r5n.large" | "r5n.metal" | "r5n.xlarge" | "r6g.12xlarge" | "r6g.16xlarge" | "r6g.2xlarge" | "r6g.4xlarge" | "r6g.8xlarge" | "r6g.large" | "r6g.medium" | "r6g.metal" | "r6g.xlarge" | "r6gd.12xlarge" | "r6gd.16xlarge" | "r6gd.2xlarge" | "r6gd.4xlarge" | "r6gd.8xlarge" | "r6gd.large" | "r6gd.medium" | "r6gd.metal" | "r6gd.xlarge" | "r6i.12xlarge" | "r6i.16xlarge" | "r6i.24xlarge" | "r6i.2xlarge" | "r6i.32xlarge" | "r6i.4xlarge" | "r6i.8xlarge" | "r6i.large" | "r6i.metal" | "r6i.xlarge" | "t1.micro" | "t2.2xlarge" | "t2.large" | "t2.medium" | "t2.micro" | "t2.nano" | "t2.small" | "t2.xlarge" | "t3.2xlarge" | "t3.large" | "t3.medium" | "t3.micro" | "t3.nano" | "t3.small" | "t3.xlarge" | "t3a.2xlarge" | "t3a.large" | "t3a.medium" | "t3a.micro" | "t3a.nano" | "t3a.small" | "t3a.xlarge" | "t4g.2xlarge" | "t4g.large" | "t4g.medium" | "t4g.micro" | "t4g.nano" | "t4g.small" | "t4g.xlarge" | "u-12tb1.112xlarge" | "u-12tb1.metal" | "u-18tb1.metal" | "u-24tb1.metal" | "u-6tb1.112xlarge" | "u-6tb1.56xlarge" | "u-6tb1.metal" | "u-9tb1.112xlarge" | "u-9tb1.metal" | "vt1.24xlarge" | "vt1.3xlarge" | "vt1.6xlarge" | "x1.16xlarge" | "x1.32xlarge" | "x1e.16xlarge" | "x1e.2xlarge" | "x1e.32xlarge" | "x1e.4xlarge" | "x1e.8xlarge" | "x1e.xlarge" | "x2gd.12xlarge" | "x2gd.16xlarge" | "x2gd.2xlarge" | "x2gd.4xlarge" | "x2gd.8xlarge" | "x2gd.large" | "x2gd.medium" | "x2gd.metal" | "x2gd.xlarge" | "x2idn.16xlarge" | "x2idn.24xlarge" | "x2idn.32xlarge" | "x2idn.metal" | "x2iedn.16xlarge" | "x2iedn.24xlarge" | "x2iedn.2xlarge" | "x2iedn.32xlarge" | "x2iedn.4xlarge" | "x2iedn.8xlarge" | "x2iedn.metal" | "x2iedn.xlarge" | "x2iezn.12xlarge" | "x2iezn.2xlarge" | "x2iezn.4xlarge" | "x2iezn.6xlarge" | "x2iezn.8xlarge" | "x2iezn.metal" | "z1d.12xlarge" | "z1d.2xlarge" | "z1d.3xlarge" | "z1d.6xlarge" | "z1d.large" | "z1d.metal" | "z1d.xlarge";
|
|
5330
5348
|
/**
|
|
5331
5349
|
* <p>Information about an instance type to use in a Capacity Reservation Fleet.</p>
|
|
5332
5350
|
*/
|
|
@@ -1,17 +1,20 @@
|
|
|
1
1
|
import { _InstanceType, AcceleratorCount, AcceleratorCountRequest, AcceleratorManufacturer, AcceleratorName, AcceleratorTotalMemoryMiB, AcceleratorTotalMemoryMiBRequest, AcceleratorType, AccessScopePath, AccessScopePathRequest, AddIpamOperatingRegion, AddPrefixListEntry, AddressFamily, AttachmentStatus, CurrencyCodeValues, DnsSupportValue, FleetExcessCapacityTerminationPolicy, HostnameType, InstanceEventWindow, InternetGatewayAttachment, Ipv4PrefixSpecification, PortRange, Protocol, ReservedInstancesListing, ResourceType, RouteTableAssociationState, Subnet, Tag, TagSpecification, Tenancy, UnsuccessfulItem, WeekDay } from "./models_0";
|
|
2
2
|
/**
|
|
3
|
-
* <p>
|
|
4
|
-
* an EC2 Fleet to configure Amazon EC2 instances.
|
|
3
|
+
* <p>The Amazon EC2 launch template that can be used by
|
|
4
|
+
* an EC2 Fleet to configure Amazon EC2 instances. You must specify either the ID or name of the launch template in the request, but not both.</p>
|
|
5
|
+
* <p>For information about launch templates, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-templates.html">Launch
|
|
5
6
|
* an instance from a launch template</a> in the
|
|
6
7
|
* <i>Amazon EC2 User Guide</i>.</p>
|
|
7
8
|
*/
|
|
8
9
|
export interface FleetLaunchTemplateSpecificationRequest {
|
|
9
10
|
/**
|
|
10
|
-
* <p>The ID of the launch template
|
|
11
|
+
* <p>The ID of the launch template.</p>
|
|
12
|
+
* <p>You must specify the <code>LaunchTemplateId</code> or the <code>LaunchTemplateName</code>, but not both.</p>
|
|
11
13
|
*/
|
|
12
14
|
LaunchTemplateId?: string;
|
|
13
15
|
/**
|
|
14
|
-
* <p>The name of the launch template
|
|
16
|
+
* <p>The name of the launch template.</p>
|
|
17
|
+
* <p>You must specify the <code>LaunchTemplateName</code> or the <code>LaunchTemplateId</code>, but not both.</p>
|
|
15
18
|
*/
|
|
16
19
|
LaunchTemplateName?: string;
|
|
17
20
|
/**
|
|
@@ -254,7 +257,7 @@ export interface InstanceRequirementsRequest {
|
|
|
254
257
|
InstanceGenerations?: (InstanceGeneration | string)[];
|
|
255
258
|
/**
|
|
256
259
|
* <p>The price protection threshold for Spot Instance. This is the maximum you’ll pay for an Spot Instance,
|
|
257
|
-
* expressed as a percentage above the
|
|
260
|
+
* expressed as a percentage above the least expensive current generation M, C, or R instance type with your specified
|
|
258
261
|
* attributes. When Amazon EC2 selects instance types with your attributes, it excludes instance
|
|
259
262
|
* types priced above your threshold.</p>
|
|
260
263
|
* <p>The parameter accepts an integer, which Amazon EC2 interprets as a percentage.</p>
|
|
@@ -271,7 +274,7 @@ export interface InstanceRequirementsRequest {
|
|
|
271
274
|
SpotMaxPricePercentageOverLowestPrice?: number;
|
|
272
275
|
/**
|
|
273
276
|
* <p>The price protection threshold for On-Demand Instances. This is the maximum you’ll pay for an On-Demand Instance,
|
|
274
|
-
* expressed as a percentage above the
|
|
277
|
+
* expressed as a percentage above the least expensive current generation M, C, or R instance type with your specified
|
|
275
278
|
* attributes. When Amazon EC2 selects instance types with your attributes, it excludes instance
|
|
276
279
|
* types priced above your threshold.</p>
|
|
277
280
|
* <p>The parameter accepts an integer, which Amazon EC2 interprets as a percentage.</p>
|
|
@@ -542,7 +545,11 @@ export interface FleetLaunchTemplateOverridesRequest {
|
|
|
542
545
|
*/
|
|
543
546
|
InstanceType?: _InstanceType | string;
|
|
544
547
|
/**
|
|
545
|
-
* <p>The maximum price per unit hour that you are willing to pay for a Spot Instance
|
|
548
|
+
* <p>The maximum price per unit hour that you are willing to pay for a Spot Instance. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.
|
|
549
|
+
* </p>
|
|
550
|
+
* <important>
|
|
551
|
+
* <p>If you specify a maximum price, your instances will be interrupted more frequently than if you do not specify this parameter.</p>
|
|
552
|
+
* </important>
|
|
546
553
|
*/
|
|
547
554
|
MaxPrice?: string;
|
|
548
555
|
/**
|
|
@@ -847,7 +854,12 @@ export interface SpotOptionsRequest {
|
|
|
847
854
|
*/
|
|
848
855
|
MinTargetCapacity?: number;
|
|
849
856
|
/**
|
|
850
|
-
* <p>The maximum amount per hour for Spot Instances that you're willing to pay
|
|
857
|
+
* <p>The maximum amount per hour for Spot Instances that you're willing to pay. We do not recommend
|
|
858
|
+
* using this parameter because it can lead to increased interruptions. If you do not specify
|
|
859
|
+
* this parameter, you will pay the current Spot price.</p>
|
|
860
|
+
* <important>
|
|
861
|
+
* <p>If you specify a maximum price, your Spot Instances will be interrupted more frequently than if you do not specify this parameter.</p>
|
|
862
|
+
* </important>
|
|
851
863
|
*/
|
|
852
864
|
MaxTotalPrice?: string;
|
|
853
865
|
}
|
|
@@ -1021,20 +1033,21 @@ export declare namespace CreateFleetRequest {
|
|
|
1021
1033
|
const filterSensitiveLog: (obj: CreateFleetRequest) => any;
|
|
1022
1034
|
}
|
|
1023
1035
|
/**
|
|
1024
|
-
* <p>
|
|
1025
|
-
*
|
|
1026
|
-
*
|
|
1036
|
+
* <p>The Amazon EC2 launch template that can be used by
|
|
1037
|
+
* a Spot Fleet to configure Amazon EC2 instances. You must specify either the ID or name of the launch template in the request, but not both.</p>
|
|
1038
|
+
* <p>For information about launch templates,
|
|
1039
|
+
* see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-templates.html">Launch an instance from a launch template</a> in the
|
|
1027
1040
|
* <i>Amazon EC2 User Guide for Linux Instances</i>.</p>
|
|
1028
1041
|
*/
|
|
1029
1042
|
export interface FleetLaunchTemplateSpecification {
|
|
1030
1043
|
/**
|
|
1031
|
-
* <p>The ID of the launch template
|
|
1032
|
-
*
|
|
1044
|
+
* <p>The ID of the launch template.</p>
|
|
1045
|
+
* <p>You must specify the <code>LaunchTemplateId</code> or the <code>LaunchTemplateName</code>, but not both.</p>
|
|
1033
1046
|
*/
|
|
1034
1047
|
LaunchTemplateId?: string;
|
|
1035
1048
|
/**
|
|
1036
|
-
* <p>The name of the launch template
|
|
1037
|
-
*
|
|
1049
|
+
* <p>The name of the launch template.</p>
|
|
1050
|
+
* <p>You must specify the <code>LaunchTemplateName</code> or the <code>LaunchTemplateId</code>, but not both.</p>
|
|
1038
1051
|
*/
|
|
1039
1052
|
LaunchTemplateName?: string;
|
|
1040
1053
|
/**
|
|
@@ -1255,7 +1268,7 @@ export interface InstanceRequirements {
|
|
|
1255
1268
|
InstanceGenerations?: (InstanceGeneration | string)[];
|
|
1256
1269
|
/**
|
|
1257
1270
|
* <p>The price protection threshold for Spot Instances. This is the maximum you’ll pay for a Spot Instance,
|
|
1258
|
-
* expressed as a percentage above the
|
|
1271
|
+
* expressed as a percentage above the least expensive current generation M, C, or R instance type with your specified
|
|
1259
1272
|
* attributes. When Amazon EC2 selects instance types with your attributes, it excludes instance
|
|
1260
1273
|
* types priced above your threshold.</p>
|
|
1261
1274
|
* <p>The parameter accepts an integer, which Amazon EC2 interprets as a percentage.</p>
|
|
@@ -1272,7 +1285,7 @@ export interface InstanceRequirements {
|
|
|
1272
1285
|
SpotMaxPricePercentageOverLowestPrice?: number;
|
|
1273
1286
|
/**
|
|
1274
1287
|
* <p>The price protection threshold for On-Demand Instances. This is the maximum you’ll pay for an On-Demand Instance,
|
|
1275
|
-
* expressed as a percentage above the
|
|
1288
|
+
* expressed as a percentage above the least expensive current generation M, C, or R instance type with your specified
|
|
1276
1289
|
* attributes. When Amazon EC2 selects instance types with your attributes, it excludes instance
|
|
1277
1290
|
* types priced above your threshold.</p>
|
|
1278
1291
|
* <p>The parameter accepts an integer, which Amazon EC2 interprets as a percentage.</p>
|
|
@@ -1494,7 +1507,11 @@ export interface FleetLaunchTemplateOverrides {
|
|
|
1494
1507
|
*/
|
|
1495
1508
|
InstanceType?: _InstanceType | string;
|
|
1496
1509
|
/**
|
|
1497
|
-
* <p>The maximum price per unit hour that you are willing to pay for a Spot Instance
|
|
1510
|
+
* <p>The maximum price per unit hour that you are willing to pay for a Spot Instance. We do not recommend using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.
|
|
1511
|
+
* </p>
|
|
1512
|
+
* <important>
|
|
1513
|
+
* <p>If you specify a maximum price, your instances will be interrupted more frequently than if you do not specify this parameter.</p>
|
|
1514
|
+
* </important>
|
|
1498
1515
|
*/
|
|
1499
1516
|
MaxPrice?: string;
|
|
1500
1517
|
/**
|
|
@@ -2442,7 +2459,7 @@ export interface CreateIpamRequest {
|
|
|
2442
2459
|
/**
|
|
2443
2460
|
* <p>The operating Regions for the IPAM. Operating Regions are Amazon Web Services Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only
|
|
2444
2461
|
* discovers and monitors resources in the Amazon Web Services Regions you select as operating Regions.</p>
|
|
2445
|
-
* <p>For more information about operating Regions, see <a href="/vpc/latest/ipam/create-ipam.html">Create an IPAM</a> in the <i>Amazon VPC IPAM User Guide</i>.
|
|
2462
|
+
* <p>For more information about operating Regions, see <a href="https://docs.aws.amazon.com/vpc/latest/ipam/create-ipam.html">Create an IPAM</a> in the <i>Amazon VPC IPAM User Guide</i>.
|
|
2446
2463
|
* </p>
|
|
2447
2464
|
*/
|
|
2448
2465
|
OperatingRegions?: AddIpamOperatingRegion[];
|
|
@@ -2465,7 +2482,7 @@ export declare namespace CreateIpamRequest {
|
|
|
2465
2482
|
/**
|
|
2466
2483
|
* <p>The operating Regions for an IPAM. Operating Regions are Amazon Web Services Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only
|
|
2467
2484
|
* discovers and monitors resources in the Amazon Web Services Regions you select as operating Regions.</p>
|
|
2468
|
-
* <p>For more information about operating Regions, see <a href="/vpc/latest/ipam/create-ipam.html">Create an IPAM</a> in the <i>Amazon VPC IPAM User Guide</i>.</p>
|
|
2485
|
+
* <p>For more information about operating Regions, see <a href="https://docs.aws.amazon.com/vpc/latest/ipam/create-ipam.html">Create an IPAM</a> in the <i>Amazon VPC IPAM User Guide</i>.</p>
|
|
2469
2486
|
*/
|
|
2470
2487
|
export interface IpamOperatingRegion {
|
|
2471
2488
|
/**
|
|
@@ -2494,7 +2511,7 @@ export declare enum IpamState {
|
|
|
2494
2511
|
restore_in_progress = "restore-in-progress"
|
|
2495
2512
|
}
|
|
2496
2513
|
/**
|
|
2497
|
-
* <p>IPAM is a VPC feature that you can use to automate your IP address management workflows including assigning, tracking, troubleshooting, and auditing IP addresses across Amazon Web Services Regions and accounts throughout your Amazon Web Services Organization. For more information, see <a href="/vpc/latest/ipam/what-is-it-ipam.html">What is IPAM?</a> in the <i>Amazon VPC IPAM User Guide</i>.</p>
|
|
2514
|
+
* <p>IPAM is a VPC feature that you can use to automate your IP address management workflows including assigning, tracking, troubleshooting, and auditing IP addresses across Amazon Web Services Regions and accounts throughout your Amazon Web Services Organization. For more information, see <a href="https://docs.aws.amazon.com/vpc/latest/ipam/what-is-it-ipam.html">What is IPAM?</a> in the <i>Amazon VPC IPAM User Guide</i>.</p>
|
|
2498
2515
|
*/
|
|
2499
2516
|
export interface Ipam {
|
|
2500
2517
|
/**
|
|
@@ -2522,7 +2539,7 @@ export interface Ipam {
|
|
|
2522
2539
|
*/
|
|
2523
2540
|
PrivateDefaultScopeId?: string;
|
|
2524
2541
|
/**
|
|
2525
|
-
* <p>The number of scopes in the IPAM. The scope quota is 5. For more information on quotas, see <a href="/vpc/latest/ipam/quotas-ipam.html">Quotas in IPAM</a> in the <i>Amazon VPC IPAM User Guide</i>.
|
|
2542
|
+
* <p>The number of scopes in the IPAM. The scope quota is 5. For more information on quotas, see <a href="https://docs.aws.amazon.com/vpc/latest/ipam/quotas-ipam.html">Quotas in IPAM</a> in the <i>Amazon VPC IPAM User Guide</i>.
|
|
2526
2543
|
* </p>
|
|
2527
2544
|
*/
|
|
2528
2545
|
ScopeCount?: number;
|
|
@@ -2533,7 +2550,7 @@ export interface Ipam {
|
|
|
2533
2550
|
/**
|
|
2534
2551
|
* <p>The operating Regions for an IPAM. Operating Regions are Amazon Web Services Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only
|
|
2535
2552
|
* discovers and monitors resources in the Amazon Web Services Regions you select as operating Regions.</p>
|
|
2536
|
-
* <p>For more information about operating Regions, see <a href="/vpc/latest/ipam/create-ipam.html">Create an IPAM</a> in the <i>Amazon VPC IPAM User Guide</i>.</p>
|
|
2553
|
+
* <p>For more information about operating Regions, see <a href="https://docs.aws.amazon.com/vpc/latest/ipam/create-ipam.html">Create an IPAM</a> in the <i>Amazon VPC IPAM User Guide</i>.</p>
|
|
2537
2554
|
*/
|
|
2538
2555
|
OperatingRegions?: IpamOperatingRegion[];
|
|
2539
2556
|
/**
|
|
@@ -2747,7 +2764,7 @@ export interface IpamPool {
|
|
|
2747
2764
|
*/
|
|
2748
2765
|
Locale?: string;
|
|
2749
2766
|
/**
|
|
2750
|
-
* <p>The depth of pools in your IPAM pool. The pool depth quota is 10. For more information, see <a href="/vpc/latest/ipam/quotas-ipam.html">Quotas in IPAM</a> in the <i>Amazon VPC IPAM User Guide</i>.
|
|
2767
|
+
* <p>The depth of pools in your IPAM pool. The pool depth quota is 10. For more information, see <a href="https://docs.aws.amazon.com/vpc/latest/ipam/quotas-ipam.html">Quotas in IPAM</a> in the <i>Amazon VPC IPAM User Guide</i>.
|
|
2751
2768
|
* </p>
|
|
2752
2769
|
*/
|
|
2753
2770
|
PoolDepth?: number;
|
|
@@ -2874,7 +2891,7 @@ export declare enum IpamScopeState {
|
|
|
2874
2891
|
}
|
|
2875
2892
|
/**
|
|
2876
2893
|
* <p>In IPAM, a scope is the highest-level container within IPAM. An IPAM contains two default scopes. Each scope represents the IP space for a single network. The private scope is intended for all private IP address space. The public scope is intended for all public IP address space. Scopes enable you to reuse IP addresses across multiple unconnected networks without causing IP address overlap or conflict.</p>
|
|
2877
|
-
* <p>For more information, see <a href="/vpc/latest/ipam/how-it-works-ipam.html">How IPAM works</a> in the <i>Amazon VPC IPAM User Guide</i>.</p>
|
|
2894
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/vpc/latest/ipam/how-it-works-ipam.html">How IPAM works</a> in the <i>Amazon VPC IPAM User Guide</i>.</p>
|
|
2878
2895
|
*/
|
|
2879
2896
|
export interface IpamScope {
|
|
2880
2897
|
/**
|
|
@@ -3215,7 +3232,7 @@ export interface LaunchTemplateCpuOptionsRequest {
|
|
|
3215
3232
|
CoreCount?: number;
|
|
3216
3233
|
/**
|
|
3217
3234
|
* <p>The number of threads per CPU core. To disable multithreading for the instance,
|
|
3218
|
-
* specify a value of 1
|
|
3235
|
+
* specify a value of <code>1</code>. Otherwise, specify the default value of <code>2</code>.</p>
|
|
3219
3236
|
*/
|
|
3220
3237
|
ThreadsPerCore?: number;
|
|
3221
3238
|
}
|
|
@@ -3226,12 +3243,13 @@ export declare namespace LaunchTemplateCpuOptionsRequest {
|
|
|
3226
3243
|
const filterSensitiveLog: (obj: LaunchTemplateCpuOptionsRequest) => any;
|
|
3227
3244
|
}
|
|
3228
3245
|
/**
|
|
3229
|
-
* <p>The credit option for CPU usage of a
|
|
3246
|
+
* <p>The credit option for CPU usage of a T instance.</p>
|
|
3230
3247
|
*/
|
|
3231
3248
|
export interface CreditSpecificationRequest {
|
|
3232
3249
|
/**
|
|
3233
|
-
* <p>The credit option for CPU usage of a
|
|
3234
|
-
*
|
|
3250
|
+
* <p>The credit option for CPU usage of a T instance.</p>
|
|
3251
|
+
* <p>Valid values: <code>standard</code> | <code>unlimited</code>
|
|
3252
|
+
* </p>
|
|
3235
3253
|
*/
|
|
3236
3254
|
CpuCredits: string | undefined;
|
|
3237
3255
|
}
|
|
@@ -3345,7 +3363,11 @@ export declare type SpotInstanceType = "one-time" | "persistent";
|
|
|
3345
3363
|
*/
|
|
3346
3364
|
export interface LaunchTemplateSpotMarketOptionsRequest {
|
|
3347
3365
|
/**
|
|
3348
|
-
* <p>The maximum hourly price you're willing to pay for the Spot Instances
|
|
3366
|
+
* <p>The maximum hourly price you're willing to pay for the Spot Instances. We do not recommend
|
|
3367
|
+
* using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.</p>
|
|
3368
|
+
* <important>
|
|
3369
|
+
* <p>If you specify a maximum price, your Spot Instances will be interrupted more frequently than if you do not specify this parameter.</p>
|
|
3370
|
+
* </important>
|
|
3349
3371
|
*/
|
|
3350
3372
|
MaxPrice?: string;
|
|
3351
3373
|
/**
|
|
@@ -3353,15 +3375,24 @@ export interface LaunchTemplateSpotMarketOptionsRequest {
|
|
|
3353
3375
|
*/
|
|
3354
3376
|
SpotInstanceType?: SpotInstanceType | string;
|
|
3355
3377
|
/**
|
|
3356
|
-
* <p>
|
|
3357
|
-
* This value must be a multiple of 60 (60, 120, 180, 240, 300, or 360).</p>
|
|
3378
|
+
* <p>Deprecated.</p>
|
|
3358
3379
|
*/
|
|
3359
3380
|
BlockDurationMinutes?: number;
|
|
3360
3381
|
/**
|
|
3361
|
-
* <p>The end date of the request
|
|
3362
|
-
*
|
|
3363
|
-
*
|
|
3364
|
-
*
|
|
3382
|
+
* <p>The end date of the request, in UTC format
|
|
3383
|
+
* (<i>YYYY-MM-DD</i>T<i>HH:MM:SS</i>Z). Supported only for
|
|
3384
|
+
* persistent requests.</p>
|
|
3385
|
+
* <ul>
|
|
3386
|
+
* <li>
|
|
3387
|
+
* <p>For a persistent request, the request remains active until the <code>ValidUntil</code>
|
|
3388
|
+
* date and time is reached. Otherwise, the request remains active until you cancel it.</p>
|
|
3389
|
+
* </li>
|
|
3390
|
+
* <li>
|
|
3391
|
+
* <p>For a one-time request, <code>ValidUntil</code> is not supported. The request remains active until
|
|
3392
|
+
* all instances launch or you cancel the request.</p>
|
|
3393
|
+
* </li>
|
|
3394
|
+
* </ul>
|
|
3395
|
+
* <p>Default: 7 days from the current date</p>
|
|
3365
3396
|
*/
|
|
3366
3397
|
ValidUntil?: Date;
|
|
3367
3398
|
/**
|
|
@@ -3444,7 +3475,7 @@ export declare enum LaunchTemplateInstanceMetadataTagsState {
|
|
|
3444
3475
|
enabled = "enabled"
|
|
3445
3476
|
}
|
|
3446
3477
|
/**
|
|
3447
|
-
* <p>The metadata options for the instance. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html">Instance
|
|
3478
|
+
* <p>The metadata options for the instance. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html">Instance metadata and user data</a> in the
|
|
3448
3479
|
* <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
3449
3480
|
*/
|
|
3450
3481
|
export interface LaunchTemplateInstanceMetadataOptionsRequest {
|
|
@@ -3465,7 +3496,8 @@ export interface LaunchTemplateInstanceMetadataOptionsRequest {
|
|
|
3465
3496
|
/**
|
|
3466
3497
|
* <p>The desired HTTP PUT response hop limit for instance metadata requests. The larger the
|
|
3467
3498
|
* number, the further instance metadata requests can travel.</p>
|
|
3468
|
-
* <p>Default: 1</
|
|
3499
|
+
* <p>Default: <code>1</code>
|
|
3500
|
+
* </p>
|
|
3469
3501
|
* <p>Possible values: Integers from 1 to 64</p>
|
|
3470
3502
|
*/
|
|
3471
3503
|
HttpPutResponseHopLimit?: number;
|
|
@@ -4163,13 +4195,13 @@ export interface CreateLaunchTemplateVersionRequest {
|
|
|
4163
4195
|
*/
|
|
4164
4196
|
ClientToken?: string;
|
|
4165
4197
|
/**
|
|
4166
|
-
* <p>The ID of the launch template
|
|
4167
|
-
*
|
|
4198
|
+
* <p>The ID of the launch template.</p>
|
|
4199
|
+
* <p>You must specify either the <code>LaunchTemplateId</code> or the <code>LaunchTemplateName</code>, but not both.</p>
|
|
4168
4200
|
*/
|
|
4169
4201
|
LaunchTemplateId?: string;
|
|
4170
4202
|
/**
|
|
4171
|
-
* <p>The name of the launch template
|
|
4172
|
-
*
|
|
4203
|
+
* <p>The name of the launch template.</p>
|
|
4204
|
+
* <p>You must specify the <code>LaunchTemplateName</code> or the <code>LaunchTemplateId</code>, but not both.</p>
|
|
4173
4205
|
*/
|
|
4174
4206
|
LaunchTemplateName?: string;
|
|
4175
4207
|
/**
|
|
@@ -4338,12 +4370,13 @@ export declare namespace LaunchTemplateCpuOptions {
|
|
|
4338
4370
|
const filterSensitiveLog: (obj: LaunchTemplateCpuOptions) => any;
|
|
4339
4371
|
}
|
|
4340
4372
|
/**
|
|
4341
|
-
* <p>Describes the credit option for CPU usage of a
|
|
4373
|
+
* <p>Describes the credit option for CPU usage of a T instance.</p>
|
|
4342
4374
|
*/
|
|
4343
4375
|
export interface CreditSpecification {
|
|
4344
4376
|
/**
|
|
4345
|
-
* <p>The credit option for CPU usage of a
|
|
4346
|
-
*
|
|
4377
|
+
* <p>The credit option for CPU usage of a T instance.</p>
|
|
4378
|
+
* <p>Valid values: <code>standard</code> | <code>unlimited</code>
|
|
4379
|
+
* </p>
|
|
4347
4380
|
*/
|
|
4348
4381
|
CpuCredits?: string;
|
|
4349
4382
|
}
|
|
@@ -4445,7 +4478,11 @@ export declare namespace LaunchTemplateIamInstanceProfileSpecification {
|
|
|
4445
4478
|
*/
|
|
4446
4479
|
export interface LaunchTemplateSpotMarketOptions {
|
|
4447
4480
|
/**
|
|
4448
|
-
* <p>The maximum hourly price you're willing to pay for the Spot Instances
|
|
4481
|
+
* <p>The maximum hourly price you're willing to pay for the Spot Instances. We do not recommend
|
|
4482
|
+
* using this parameter because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current Spot price.</p>
|
|
4483
|
+
* <important>
|
|
4484
|
+
* <p>If you specify a maximum price, your Spot Instances will be interrupted more frequently than if you do not specify this parameter.</p>
|
|
4485
|
+
* </important>
|
|
4449
4486
|
*/
|
|
4450
4487
|
MaxPrice?: string;
|
|
4451
4488
|
/**
|
|
@@ -4527,7 +4564,7 @@ export declare namespace LaunchTemplateInstanceMaintenanceOptions {
|
|
|
4527
4564
|
}
|
|
4528
4565
|
export declare type LaunchTemplateInstanceMetadataOptionsState = "applied" | "pending";
|
|
4529
4566
|
/**
|
|
4530
|
-
* <p>The metadata options for the instance. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html">Instance
|
|
4567
|
+
* <p>The metadata options for the instance. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html">Instance metadata and user data</a> in the
|
|
4531
4568
|
* <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
4532
4569
|
*/
|
|
4533
4570
|
export interface LaunchTemplateInstanceMetadataOptions {
|
|
@@ -517,7 +517,13 @@ export declare namespace CreateTransitGatewayMulticastDomainResult {
|
|
|
517
517
|
*/
|
|
518
518
|
const filterSensitiveLog: (obj: CreateTransitGatewayMulticastDomainResult) => any;
|
|
519
519
|
}
|
|
520
|
+
/**
|
|
521
|
+
* <p>Describes whether dynamic routing is enabled or disabled for the transit gateway peering request.</p>
|
|
522
|
+
*/
|
|
520
523
|
export interface CreateTransitGatewayPeeringAttachmentRequestOptions {
|
|
524
|
+
/**
|
|
525
|
+
* <p>Indicates whether dynamic routing is enabled or disabled.</p>
|
|
526
|
+
*/
|
|
521
527
|
DynamicRouting?: DynamicRoutingValue | string;
|
|
522
528
|
}
|
|
523
529
|
export declare namespace CreateTransitGatewayPeeringAttachmentRequestOptions {
|
|
@@ -543,6 +549,9 @@ export interface CreateTransitGatewayPeeringAttachmentRequest {
|
|
|
543
549
|
* <p>The Region where the peer transit gateway is located.</p>
|
|
544
550
|
*/
|
|
545
551
|
PeerRegion: string | undefined;
|
|
552
|
+
/**
|
|
553
|
+
* <p>Requests a transit gateway peering attachment.</p>
|
|
554
|
+
*/
|
|
546
555
|
Options?: CreateTransitGatewayPeeringAttachmentRequestOptions;
|
|
547
556
|
/**
|
|
548
557
|
* <p>The tags to apply to the transit gateway peering attachment.</p>
|
|
@@ -813,6 +822,9 @@ export interface TransitGatewayRoute {
|
|
|
813
822
|
* <p>The ID of the prefix list used for destination matches.</p>
|
|
814
823
|
*/
|
|
815
824
|
PrefixListId?: string;
|
|
825
|
+
/**
|
|
826
|
+
* <p>The ID of the transit gateway route table announcement. </p>
|
|
827
|
+
*/
|
|
816
828
|
TransitGatewayRouteTableAnnouncementId?: string;
|
|
817
829
|
/**
|
|
818
830
|
* <p>The attachments.</p>
|
|
@@ -969,11 +981,17 @@ export interface TransitGatewayRouteTableAnnouncement {
|
|
|
969
981
|
* <p>The ID of the transit gateway.</p>
|
|
970
982
|
*/
|
|
971
983
|
TransitGatewayId?: string;
|
|
984
|
+
/**
|
|
985
|
+
* <p>The ID of the core network for the transit gateway route table announcement.</p>
|
|
986
|
+
*/
|
|
972
987
|
CoreNetworkId?: string;
|
|
973
988
|
/**
|
|
974
989
|
* <p>The ID of the peer transit gateway.</p>
|
|
975
990
|
*/
|
|
976
991
|
PeerTransitGatewayId?: string;
|
|
992
|
+
/**
|
|
993
|
+
* <p>The ID of the core network ID for the peer.</p>
|
|
994
|
+
*/
|
|
977
995
|
PeerCoreNetworkId?: string;
|
|
978
996
|
/**
|
|
979
997
|
* <p>The ID of the peering attachment.</p>
|
|
@@ -1356,21 +1374,21 @@ export interface CreateVpcRequest {
|
|
|
1356
1374
|
*/
|
|
1357
1375
|
Ipv6CidrBlock?: string;
|
|
1358
1376
|
/**
|
|
1359
|
-
* <p>The ID of an IPv4 IPAM pool you want to use for allocating this VPC's CIDR. For more information, see <a href="/vpc/latest/ipam/what-is-it-ipam.html">What is IPAM?</a> in the <i>Amazon VPC IPAM User Guide</i>.
|
|
1377
|
+
* <p>The ID of an IPv4 IPAM pool you want to use for allocating this VPC's CIDR. For more information, see <a href="https://docs.aws.amazon.com/vpc/latest/ipam/what-is-it-ipam.html">What is IPAM?</a> in the <i>Amazon VPC IPAM User Guide</i>.
|
|
1360
1378
|
*
|
|
1361
1379
|
* </p>
|
|
1362
1380
|
*/
|
|
1363
1381
|
Ipv4IpamPoolId?: string;
|
|
1364
1382
|
/**
|
|
1365
|
-
* <p>The netmask length of the IPv4 CIDR you want to allocate to this VPC from an Amazon VPC IP Address Manager (IPAM) pool. For more information about IPAM, see <a href="/vpc/latest/ipam/what-is-it-ipam.html">What is IPAM?</a> in the <i>Amazon VPC IPAM User Guide</i>.</p>
|
|
1383
|
+
* <p>The netmask length of the IPv4 CIDR you want to allocate to this VPC from an Amazon VPC IP Address Manager (IPAM) pool. For more information about IPAM, see <a href="https://docs.aws.amazon.com/vpc/latest/ipam/what-is-it-ipam.html">What is IPAM?</a> in the <i>Amazon VPC IPAM User Guide</i>.</p>
|
|
1366
1384
|
*/
|
|
1367
1385
|
Ipv4NetmaskLength?: number;
|
|
1368
1386
|
/**
|
|
1369
|
-
* <p>The ID of an IPv6 IPAM pool which will be used to allocate this VPC an IPv6 CIDR. IPAM is a VPC feature that you can use to automate your IP address management workflows including assigning, tracking, troubleshooting, and auditing IP addresses across Amazon Web Services Regions and accounts throughout your Amazon Web Services Organization. For more information, see <a href="/vpc/latest/ipam/what-is-it-ipam.html">What is IPAM?</a> in the <i>Amazon VPC IPAM User Guide</i>.</p>
|
|
1387
|
+
* <p>The ID of an IPv6 IPAM pool which will be used to allocate this VPC an IPv6 CIDR. IPAM is a VPC feature that you can use to automate your IP address management workflows including assigning, tracking, troubleshooting, and auditing IP addresses across Amazon Web Services Regions and accounts throughout your Amazon Web Services Organization. For more information, see <a href="https://docs.aws.amazon.com/vpc/latest/ipam/what-is-it-ipam.html">What is IPAM?</a> in the <i>Amazon VPC IPAM User Guide</i>.</p>
|
|
1370
1388
|
*/
|
|
1371
1389
|
Ipv6IpamPoolId?: string;
|
|
1372
1390
|
/**
|
|
1373
|
-
* <p>The netmask length of the IPv6 CIDR you want to allocate to this VPC from an Amazon VPC IP Address Manager (IPAM) pool. For more information about IPAM, see <a href="/vpc/latest/ipam/what-is-it-ipam.html">What is IPAM?</a> in the <i>Amazon VPC IPAM User Guide</i>.</p>
|
|
1391
|
+
* <p>The netmask length of the IPv6 CIDR you want to allocate to this VPC from an Amazon VPC IP Address Manager (IPAM) pool. For more information about IPAM, see <a href="https://docs.aws.amazon.com/vpc/latest/ipam/what-is-it-ipam.html">What is IPAM?</a> in the <i>Amazon VPC IPAM User Guide</i>.</p>
|
|
1374
1392
|
*/
|
|
1375
1393
|
Ipv6NetmaskLength?: number;
|
|
1376
1394
|
/**
|
|
@@ -3595,13 +3613,13 @@ export interface DeleteLaunchTemplateRequest {
|
|
|
3595
3613
|
*/
|
|
3596
3614
|
DryRun?: boolean;
|
|
3597
3615
|
/**
|
|
3598
|
-
* <p>The ID of the launch template
|
|
3599
|
-
*
|
|
3616
|
+
* <p>The ID of the launch template.</p>
|
|
3617
|
+
* <p>You must specify either the <code>LaunchTemplateId</code> or the <code>LaunchTemplateName</code>, but not both.</p>
|
|
3600
3618
|
*/
|
|
3601
3619
|
LaunchTemplateId?: string;
|
|
3602
3620
|
/**
|
|
3603
|
-
* <p>The name of the launch template
|
|
3604
|
-
*
|
|
3621
|
+
* <p>The name of the launch template.</p>
|
|
3622
|
+
* <p>You must specify either the <code>LaunchTemplateName</code> or the <code>LaunchTemplateId</code>, but not both.</p>
|
|
3605
3623
|
*/
|
|
3606
3624
|
LaunchTemplateName?: string;
|
|
3607
3625
|
}
|
|
@@ -3632,13 +3650,13 @@ export interface DeleteLaunchTemplateVersionsRequest {
|
|
|
3632
3650
|
*/
|
|
3633
3651
|
DryRun?: boolean;
|
|
3634
3652
|
/**
|
|
3635
|
-
* <p>The ID of the launch template
|
|
3636
|
-
*
|
|
3653
|
+
* <p>The ID of the launch template.</p>
|
|
3654
|
+
* <p>You must specify either the <code>LaunchTemplateId</code> or the <code>LaunchTemplateName</code>, but not both.</p>
|
|
3637
3655
|
*/
|
|
3638
3656
|
LaunchTemplateId?: string;
|
|
3639
3657
|
/**
|
|
3640
|
-
* <p>The name of the launch template
|
|
3641
|
-
*
|
|
3658
|
+
* <p>The name of the launch template.</p>
|
|
3659
|
+
* <p>You must specify either the <code>LaunchTemplateName</code> or the <code>LaunchTemplateId</code>, but not both.</p>
|
|
3642
3660
|
*/
|
|
3643
3661
|
LaunchTemplateName?: string;
|
|
3644
3662
|
/**
|