@aws-sdk/client-ec2 3.926.0 → 3.927.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/dist-cjs/index.js +116 -25
  2. package/dist-es/models/models_1.js +3 -5
  3. package/dist-es/models/models_2.js +5 -0
  4. package/dist-es/models/models_3.js +0 -11
  5. package/dist-es/models/models_4.js +11 -9
  6. package/dist-es/models/models_5.js +9 -0
  7. package/dist-es/protocols/Aws_ec2.js +87 -0
  8. package/dist-types/commands/CreateIpamScopeCommand.d.ts +8 -0
  9. package/dist-types/commands/CreateVerifiedAccessEndpointCommand.d.ts +2 -1
  10. package/dist-types/commands/CreateVerifiedAccessGroupCommand.d.ts +1 -2
  11. package/dist-types/commands/CreateVpcEndpointCommand.d.ts +8 -0
  12. package/dist-types/commands/DeleteIpamScopeCommand.d.ts +4 -0
  13. package/dist-types/commands/DescribeIpamScopesCommand.d.ts +4 -0
  14. package/dist-types/commands/DescribeTrunkInterfaceAssociationsCommand.d.ts +2 -1
  15. package/dist-types/commands/DescribeVerifiedAccessEndpointsCommand.d.ts +1 -1
  16. package/dist-types/commands/DescribeVpcEndpointsCommand.d.ts +4 -0
  17. package/dist-types/commands/GetFlowLogsIntegrationTemplateCommand.d.ts +2 -1
  18. package/dist-types/commands/GetGroupsForCapacityReservationCommand.d.ts +1 -2
  19. package/dist-types/commands/ModifyIpamScopeCommand.d.ts +9 -0
  20. package/dist-types/commands/ModifyTransitGatewayVpcAttachmentCommand.d.ts +2 -1
  21. package/dist-types/commands/ModifyVpcEndpointCommand.d.ts +4 -0
  22. package/dist-types/models/models_1.d.ts +58 -188
  23. package/dist-types/models/models_2.d.ts +189 -110
  24. package/dist-types/models/models_3.d.ts +176 -61
  25. package/dist-types/models/models_4.d.ts +61 -66
  26. package/dist-types/models/models_5.d.ts +67 -77
  27. package/dist-types/models/models_6.d.ts +77 -58
  28. package/dist-types/models/models_7.d.ts +69 -41
  29. package/dist-types/models/models_8.d.ts +41 -4
  30. package/dist-types/ts3.4/commands/CreateVerifiedAccessEndpointCommand.d.ts +2 -4
  31. package/dist-types/ts3.4/commands/CreateVerifiedAccessGroupCommand.d.ts +4 -2
  32. package/dist-types/ts3.4/commands/DescribeTrunkInterfaceAssociationsCommand.d.ts +2 -4
  33. package/dist-types/ts3.4/commands/DescribeVerifiedAccessEndpointsCommand.d.ts +1 -1
  34. package/dist-types/ts3.4/commands/GetFlowLogsIntegrationTemplateCommand.d.ts +2 -4
  35. package/dist-types/ts3.4/commands/GetGroupsForCapacityReservationCommand.d.ts +4 -2
  36. package/dist-types/ts3.4/commands/ModifyTransitGatewayVpcAttachmentCommand.d.ts +2 -4
  37. package/dist-types/ts3.4/models/models_1.d.ts +17 -38
  38. package/dist-types/ts3.4/models/models_2.d.ts +40 -27
  39. package/dist-types/ts3.4/models/models_3.d.ts +29 -21
  40. package/dist-types/ts3.4/models/models_4.d.ts +22 -23
  41. package/dist-types/ts3.4/models/models_5.d.ts +22 -23
  42. package/dist-types/ts3.4/models/models_6.d.ts +22 -16
  43. package/dist-types/ts3.4/models/models_7.d.ts +17 -13
  44. package/dist-types/ts3.4/models/models_8.d.ts +13 -8
  45. package/package.json +5 -5
@@ -1,7 +1,8 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
4
- import { DescribeTrunkInterfaceAssociationsRequest, DescribeTrunkInterfaceAssociationsResult } from "../models/models_5";
4
+ import { DescribeTrunkInterfaceAssociationsRequest } from "../models/models_5";
5
+ import { DescribeTrunkInterfaceAssociationsResult } from "../models/models_6";
5
6
  /**
6
7
  * @public
7
8
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
4
- import { DescribeVerifiedAccessEndpointsRequest, DescribeVerifiedAccessEndpointsResult } from "../models/models_5";
4
+ import { DescribeVerifiedAccessEndpointsRequest, DescribeVerifiedAccessEndpointsResult } from "../models/models_6";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -81,6 +81,10 @@ declare const DescribeVpcEndpointsCommand_base: {
81
81
  * // DnsOptions: { // DnsOptions
82
82
  * // DnsRecordIpType: "ipv4" || "dualstack" || "ipv6" || "service-defined",
83
83
  * // PrivateDnsOnlyForInboundResolverEndpoint: true || false,
84
+ * // PrivateDnsPreference: "STRING_VALUE",
85
+ * // PrivateDnsSpecifiedDomains: [ // PrivateDnsSpecifiedDomainSet
86
+ * // "STRING_VALUE",
87
+ * // ],
84
88
  * // },
85
89
  * // PrivateDnsEnabled: true || false,
86
90
  * // RequesterManaged: true || false,
@@ -1,7 +1,8 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
4
- import { GetFlowLogsIntegrationTemplateRequest, GetFlowLogsIntegrationTemplateResult } from "../models/models_6";
4
+ import { GetFlowLogsIntegrationTemplateRequest } from "../models/models_6";
5
+ import { GetFlowLogsIntegrationTemplateResult } from "../models/models_7";
5
6
  /**
6
7
  * @public
7
8
  */
@@ -1,8 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
4
- import { GetGroupsForCapacityReservationRequest } from "../models/models_6";
5
- import { GetGroupsForCapacityReservationResult } from "../models/models_7";
4
+ import { GetGroupsForCapacityReservationRequest, GetGroupsForCapacityReservationResult } from "../models/models_7";
6
5
  /**
7
6
  * @public
8
7
  */
@@ -40,6 +40,11 @@ declare const ModifyIpamScopeCommand_base: {
40
40
  * DryRun: true || false,
41
41
  * IpamScopeId: "STRING_VALUE", // required
42
42
  * Description: "STRING_VALUE",
43
+ * ExternalAuthorityConfiguration: { // ExternalAuthorityConfiguration
44
+ * Type: "infoblox",
45
+ * ExternalResourceIdentifier: "STRING_VALUE",
46
+ * },
47
+ * RemoveExternalAuthorityConfiguration: true || false,
43
48
  * };
44
49
  * const command = new ModifyIpamScopeCommand(input);
45
50
  * const response = await client.send(command);
@@ -61,6 +66,10 @@ declare const ModifyIpamScopeCommand_base: {
61
66
  * // Value: "STRING_VALUE",
62
67
  * // },
63
68
  * // ],
69
+ * // ExternalAuthorityConfiguration: { // IpamScopeExternalAuthorityConfiguration
70
+ * // Type: "infoblox",
71
+ * // ExternalResourceIdentifier: "STRING_VALUE",
72
+ * // },
64
73
  * // },
65
74
  * // };
66
75
  *
@@ -1,7 +1,8 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
4
- import { ModifyTransitGatewayVpcAttachmentRequest, ModifyTransitGatewayVpcAttachmentResult } from "../models/models_7";
4
+ import { ModifyTransitGatewayVpcAttachmentRequest } from "../models/models_7";
5
+ import { ModifyTransitGatewayVpcAttachmentResult } from "../models/models_8";
5
6
  /**
6
7
  * @public
7
8
  */
@@ -66,6 +66,10 @@ declare const ModifyVpcEndpointCommand_base: {
66
66
  * DnsOptions: { // DnsOptionsSpecification
67
67
  * DnsRecordIpType: "ipv4" || "dualstack" || "ipv6" || "service-defined",
68
68
  * PrivateDnsOnlyForInboundResolverEndpoint: true || false,
69
+ * PrivateDnsPreference: "STRING_VALUE",
70
+ * PrivateDnsSpecifiedDomains: [ // PrivateDnsSpecifiedDomainSet
71
+ * "STRING_VALUE",
72
+ * ],
69
73
  * },
70
74
  * PrivateDnsEnabled: true || false,
71
75
  * SubnetConfigurations: [ // SubnetConfigurationsList
@@ -10459,6 +10459,34 @@ export interface CreateIpamResourceDiscoveryResult {
10459
10459
  */
10460
10460
  IpamResourceDiscovery?: IpamResourceDiscovery | undefined;
10461
10461
  }
10462
+ /**
10463
+ * @public
10464
+ * @enum
10465
+ */
10466
+ export declare const IpamScopeExternalAuthorityType: {
10467
+ readonly infoblox: "infoblox";
10468
+ };
10469
+ /**
10470
+ * @public
10471
+ */
10472
+ export type IpamScopeExternalAuthorityType = (typeof IpamScopeExternalAuthorityType)[keyof typeof IpamScopeExternalAuthorityType];
10473
+ /**
10474
+ * <p>The configuration that links an Amazon VPC IPAM scope to an external authority system. It specifies the type of external system and the external resource identifier that identifies your account or instance in that system.</p>
10475
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/vpc/latest/ipam/integrate-infoblox-ipam.html">Integrate VPC IPAM with Infoblox infrastructure</a> in the <i>Amazon VPC IPAM User Guide</i>..</p>
10476
+ * @public
10477
+ */
10478
+ export interface ExternalAuthorityConfiguration {
10479
+ /**
10480
+ * <p>The type of external authority.</p>
10481
+ * @public
10482
+ */
10483
+ Type?: IpamScopeExternalAuthorityType | undefined;
10484
+ /**
10485
+ * <p>The identifier for the external resource managing this scope. For Infoblox integrations, this is the Infoblox resource identifier in the format <code><version>.identity.account.<entity_realm>.<entity_id></code>.</p>
10486
+ * @public
10487
+ */
10488
+ ExternalResourceIdentifier?: string | undefined;
10489
+ }
10462
10490
  /**
10463
10491
  * @public
10464
10492
  */
@@ -10491,6 +10519,29 @@ export interface CreateIpamScopeRequest {
10491
10519
  * @public
10492
10520
  */
10493
10521
  ClientToken?: string | undefined;
10522
+ /**
10523
+ * <p>The configuration that links an Amazon VPC IPAM scope to an external authority system. It specifies the type of external system and the external resource identifier that identifies your account or instance in that system.</p>
10524
+ * <p>In IPAM, an external authority is a third-party IP address management system that provides CIDR blocks when you provision address space for top-level IPAM pools. This allows you to use your existing IP management system to control which address ranges are allocated to Amazon Web Services while using Amazon VPC IPAM to manage subnets within those ranges.</p>
10525
+ * @public
10526
+ */
10527
+ ExternalAuthorityConfiguration?: ExternalAuthorityConfiguration | undefined;
10528
+ }
10529
+ /**
10530
+ * <p>The configuration that links an Amazon VPC IPAM scope to an external authority system. It specifies the type of external system and the external resource identifier that identifies your account or instance in that system.</p>
10531
+ * <p>In IPAM, an external authority is a third-party IP address management system that provides CIDR blocks when you provision address space for top-level IPAM pools. This allows you to use your existing IP management system to control which address ranges are allocated to Amazon Web Services while using Amazon VPC IPAM to manage subnets within those ranges.</p>
10532
+ * @public
10533
+ */
10534
+ export interface IpamScopeExternalAuthorityConfiguration {
10535
+ /**
10536
+ * <p>The type of external authority managing this scope. Currently supports <code>Infoblox</code> for integration with Infoblox Universal DDI.</p>
10537
+ * @public
10538
+ */
10539
+ Type?: IpamScopeExternalAuthorityType | undefined;
10540
+ /**
10541
+ * <p>The identifier for the external resource managing this scope. For Infoblox integrations, this is the Infoblox resource identifier in the format <code><version>.identity.account.<entity_realm>.<entity_id></code>.</p>
10542
+ * @public
10543
+ */
10544
+ ExternalResourceIdentifier?: string | undefined;
10494
10545
  }
10495
10546
  /**
10496
10547
  * @public
@@ -10576,6 +10627,13 @@ export interface IpamScope {
10576
10627
  * @public
10577
10628
  */
10578
10629
  Tags?: Tag[] | undefined;
10630
+ /**
10631
+ * <p>The external authority configuration for this IPAM scope, if configured.</p>
10632
+ * <p>The configuration that links an Amazon VPC IPAM scope to an external authority system. It specifies the type of external system and the external resource identifier that identifies your account or instance in that system.</p>
10633
+ * <p>In IPAM, an external authority is a third-party IP address management system that provides CIDR blocks when you provision address space for top-level IPAM pools. This allows you to use your existing IP management system to control which address ranges are allocated to Amazon Web Services while using Amazon VPC IPAM to manage subnets within those ranges.</p>
10634
+ * @public
10635
+ */
10636
+ ExternalAuthorityConfiguration?: IpamScopeExternalAuthorityConfiguration | undefined;
10579
10637
  }
10580
10638
  /**
10581
10639
  * @public
@@ -11427,194 +11485,6 @@ export interface Ipv6PrefixSpecificationRequest {
11427
11485
  */
11428
11486
  Ipv6Prefix?: string | undefined;
11429
11487
  }
11430
- /**
11431
- * <p>Describes a secondary private IPv4 address for a network interface.</p>
11432
- * @public
11433
- */
11434
- export interface PrivateIpAddressSpecification {
11435
- /**
11436
- * <p>Indicates whether the private IPv4 address is the primary private IPv4 address. Only
11437
- * one IPv4 address can be designated as primary.</p>
11438
- * @public
11439
- */
11440
- Primary?: boolean | undefined;
11441
- /**
11442
- * <p>The private IPv4 address.</p>
11443
- * @public
11444
- */
11445
- PrivateIpAddress?: string | undefined;
11446
- }
11447
- /**
11448
- * <p>The parameters for a network interface.</p>
11449
- * @public
11450
- */
11451
- export interface LaunchTemplateInstanceNetworkInterfaceSpecificationRequest {
11452
- /**
11453
- * <p>Associates a Carrier IP address with eth0 for a new network interface.</p>
11454
- * <p>Use this option when you launch an instance in a Wavelength Zone and want to associate
11455
- * a Carrier IP address with the network interface. For more information about Carrier IP
11456
- * addresses, see <a href="https://docs.aws.amazon.com/wavelength/latest/developerguide/how-wavelengths-work.html#provider-owned-ip">Carrier IP addresses</a> in the <i>Wavelength Developer
11457
- * Guide</i>.</p>
11458
- * @public
11459
- */
11460
- AssociateCarrierIpAddress?: boolean | undefined;
11461
- /**
11462
- * <p>Associates a public IPv4 address with eth0 for a new network interface.</p>
11463
- * <p>Amazon Web Services charges for all public IPv4 addresses, including public IPv4 addresses
11464
- * associated with running instances and Elastic IP addresses. For more information, see the <i>Public IPv4 Address</i> tab on the <a href="http://aws.amazon.com/vpc/pricing/">Amazon VPC pricing page</a>.</p>
11465
- * @public
11466
- */
11467
- AssociatePublicIpAddress?: boolean | undefined;
11468
- /**
11469
- * <p>Indicates whether the network interface is deleted when the instance is
11470
- * terminated.</p>
11471
- * @public
11472
- */
11473
- DeleteOnTermination?: boolean | undefined;
11474
- /**
11475
- * <p>A description for the network interface.</p>
11476
- * @public
11477
- */
11478
- Description?: string | undefined;
11479
- /**
11480
- * <p>The device index for the network interface attachment. The primary network interface
11481
- * has a device index of 0. Each network interface is of type <code>interface</code>, you
11482
- * must specify a device index. If you create a launch template that includes secondary
11483
- * network interfaces but not a primary network interface, then you must add a primary
11484
- * network interface as a launch parameter when you launch an instance from the
11485
- * template.</p>
11486
- * @public
11487
- */
11488
- DeviceIndex?: number | undefined;
11489
- /**
11490
- * <p>The IDs of one or more security groups.</p>
11491
- * @public
11492
- */
11493
- Groups?: string[] | undefined;
11494
- /**
11495
- * <p>The type of network interface. To create an Elastic Fabric Adapter (EFA), specify
11496
- * <code>efa</code> or <code>efa</code>. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/efa.html">Elastic Fabric Adapter for AI/ML
11497
- * and HPC workloads on Amazon EC2</a> in the
11498
- * <i>Amazon EC2 User Guide</i>.</p>
11499
- * <p>If you are not creating an EFA, specify <code>interface</code> or omit this
11500
- * parameter.</p>
11501
- * <p>If you specify <code>efa-only</code>, do not assign any IP addresses to the network
11502
- * interface. EFA-only network interfaces do not support IP addresses.</p>
11503
- * <p>Valid values: <code>interface</code> | <code>efa</code> | <code>efa-only</code>
11504
- * </p>
11505
- * @public
11506
- */
11507
- InterfaceType?: string | undefined;
11508
- /**
11509
- * <p>The number of IPv6 addresses to assign to a network interface. Amazon EC2
11510
- * automatically selects the IPv6 addresses from the subnet range. You can't use this
11511
- * option if specifying specific IPv6 addresses.</p>
11512
- * @public
11513
- */
11514
- Ipv6AddressCount?: number | undefined;
11515
- /**
11516
- * <p>One or more specific IPv6 addresses from the IPv6 CIDR block range of your subnet. You
11517
- * can't use this option if you're specifying a number of IPv6 addresses.</p>
11518
- * @public
11519
- */
11520
- Ipv6Addresses?: InstanceIpv6AddressRequest[] | undefined;
11521
- /**
11522
- * <p>The ID of the network interface.</p>
11523
- * @public
11524
- */
11525
- NetworkInterfaceId?: string | undefined;
11526
- /**
11527
- * <p>The primary private IPv4 address of the network interface.</p>
11528
- * @public
11529
- */
11530
- PrivateIpAddress?: string | undefined;
11531
- /**
11532
- * <p>One or more private IPv4 addresses.</p>
11533
- * @public
11534
- */
11535
- PrivateIpAddresses?: PrivateIpAddressSpecification[] | undefined;
11536
- /**
11537
- * <p>The number of secondary private IPv4 addresses to assign to a network
11538
- * interface.</p>
11539
- * @public
11540
- */
11541
- SecondaryPrivateIpAddressCount?: number | undefined;
11542
- /**
11543
- * <p>The ID of the subnet for the network interface.</p>
11544
- * @public
11545
- */
11546
- SubnetId?: string | undefined;
11547
- /**
11548
- * <p>The index of the network card. Some instance types support multiple network cards. The
11549
- * primary network interface must be assigned to network card index 0. The default is
11550
- * network card index 0.</p>
11551
- * @public
11552
- */
11553
- NetworkCardIndex?: number | undefined;
11554
- /**
11555
- * <p>One or more IPv4 prefixes to be assigned to the network interface. You cannot use this
11556
- * option if you use the <code>Ipv4PrefixCount</code> option.</p>
11557
- * @public
11558
- */
11559
- Ipv4Prefixes?: Ipv4PrefixSpecificationRequest[] | undefined;
11560
- /**
11561
- * <p>The number of IPv4 prefixes to be automatically assigned to the network interface. You
11562
- * cannot use this option if you use the <code>Ipv4Prefix</code> option.</p>
11563
- * @public
11564
- */
11565
- Ipv4PrefixCount?: number | undefined;
11566
- /**
11567
- * <p>One or more IPv6 prefixes to be assigned to the network interface. You cannot use this
11568
- * option if you use the <code>Ipv6PrefixCount</code> option.</p>
11569
- * @public
11570
- */
11571
- Ipv6Prefixes?: Ipv6PrefixSpecificationRequest[] | undefined;
11572
- /**
11573
- * <p>The number of IPv6 prefixes to be automatically assigned to the network interface. You
11574
- * cannot use this option if you use the <code>Ipv6Prefix</code> option.</p>
11575
- * @public
11576
- */
11577
- Ipv6PrefixCount?: number | undefined;
11578
- /**
11579
- * <p>The primary IPv6 address of the network interface. When you enable an IPv6 GUA address
11580
- * to be a primary IPv6, the first IPv6 GUA will be made the primary IPv6 address until the
11581
- * instance is terminated or the network interface is detached. For more information about
11582
- * primary IPv6 addresses, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html">RunInstances</a>.</p>
11583
- * @public
11584
- */
11585
- PrimaryIpv6?: boolean | undefined;
11586
- /**
11587
- * <p>Configure ENA Express settings for your launch template.</p>
11588
- * @public
11589
- */
11590
- EnaSrdSpecification?: EnaSrdSpecificationRequest | undefined;
11591
- /**
11592
- * <p>A security group connection tracking specification that enables you to set the timeout
11593
- * for connection tracking on an Elastic network interface. For more information, see
11594
- * <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-connection-tracking.html#connection-tracking-timeouts">Idle connection tracking timeout</a> in the
11595
- * <i>Amazon EC2 User Guide</i>.</p>
11596
- * @public
11597
- */
11598
- ConnectionTrackingSpecification?: ConnectionTrackingSpecificationRequest | undefined;
11599
- /**
11600
- * <p>The number of ENA queues to be created with the instance.</p>
11601
- * @public
11602
- */
11603
- EnaQueueCount?: number | undefined;
11604
- }
11605
- /**
11606
- * @public
11607
- * @enum
11608
- */
11609
- export declare const InstanceBandwidthWeighting: {
11610
- readonly DEFAULT: "default";
11611
- readonly EBS_1: "ebs-1";
11612
- readonly VPC_1: "vpc-1";
11613
- };
11614
- /**
11615
- * @public
11616
- */
11617
- export type InstanceBandwidthWeighting = (typeof InstanceBandwidthWeighting)[keyof typeof InstanceBandwidthWeighting];
11618
11488
  /**
11619
11489
  * @internal
11620
11490
  */