@@ -451,6 +451,16 @@ import {
451
451
CreateLocalGatewayRouteTableVpcAssociationCommandInput,
452
452
CreateLocalGatewayRouteTableVpcAssociationCommandOutput,
453
453
} from "./commands/CreateLocalGatewayRouteTableVpcAssociationCommand";
454
+ import {
455
+ CreateLocalGatewayVirtualInterfaceCommand,
456
+ CreateLocalGatewayVirtualInterfaceCommandInput,
457
+ CreateLocalGatewayVirtualInterfaceCommandOutput,
458
+ } from "./commands/CreateLocalGatewayVirtualInterfaceCommand";
459
+ import {
460
+ CreateLocalGatewayVirtualInterfaceGroupCommand,
461
+ CreateLocalGatewayVirtualInterfaceGroupCommandInput,
462
+ CreateLocalGatewayVirtualInterfaceGroupCommandOutput,
463
+ } from "./commands/CreateLocalGatewayVirtualInterfaceGroupCommand";
454
464
import {
455
465
CreateManagedPrefixListCommand,
456
466
CreateManagedPrefixListCommandInput,
@@ -840,6 +850,16 @@ import {
840
850
DeleteLocalGatewayRouteTableVpcAssociationCommandInput,
841
851
DeleteLocalGatewayRouteTableVpcAssociationCommandOutput,
842
852
} from "./commands/DeleteLocalGatewayRouteTableVpcAssociationCommand";
853
+ import {
854
+ DeleteLocalGatewayVirtualInterfaceCommand,
855
+ DeleteLocalGatewayVirtualInterfaceCommandInput,
856
+ DeleteLocalGatewayVirtualInterfaceCommandOutput,
857
+ } from "./commands/DeleteLocalGatewayVirtualInterfaceCommand";
858
+ import {
859
+ DeleteLocalGatewayVirtualInterfaceGroupCommand,
860
+ DeleteLocalGatewayVirtualInterfaceGroupCommandInput,
861
+ DeleteLocalGatewayVirtualInterfaceGroupCommandOutput,
862
+ } from "./commands/DeleteLocalGatewayVirtualInterfaceGroupCommand";
843
863
import {
844
864
DeleteManagedPrefixListCommand,
845
865
DeleteManagedPrefixListCommandInput,
@@ -1588,6 +1608,11 @@ import {
1588
1608
DescribeNetworkInterfacesCommandInput,
1589
1609
DescribeNetworkInterfacesCommandOutput,
1590
1610
} from "./commands/DescribeNetworkInterfacesCommand";
1611
+ import {
1612
+ DescribeOutpostLagsCommand,
1613
+ DescribeOutpostLagsCommandInput,
1614
+ DescribeOutpostLagsCommandOutput,
1615
+ } from "./commands/DescribeOutpostLagsCommand";
1591
1616
import {
1592
1617
DescribePlacementGroupsCommand,
1593
1618
DescribePlacementGroupsCommandInput,
@@ -1688,6 +1713,11 @@ import {
1688
1713
DescribeSecurityGroupVpcAssociationsCommandInput,
1689
1714
DescribeSecurityGroupVpcAssociationsCommandOutput,
1690
1715
} from "./commands/DescribeSecurityGroupVpcAssociationsCommand";
1716
+ import {
1717
+ DescribeServiceLinkVirtualInterfacesCommand,
1718
+ DescribeServiceLinkVirtualInterfacesCommandInput,
1719
+ DescribeServiceLinkVirtualInterfacesCommandOutput,
1720
+ } from "./commands/DescribeServiceLinkVirtualInterfacesCommand";
1691
1721
import {
1692
1722
DescribeSnapshotAttributeCommand,
1693
1723
DescribeSnapshotAttributeCommandInput,
@@ -3405,6 +3435,8 @@ const commands = {
3405
3435
CreateLocalGatewayRouteTableCommand,
3406
3436
CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand,
3407
3437
CreateLocalGatewayRouteTableVpcAssociationCommand,
3438
+ CreateLocalGatewayVirtualInterfaceCommand,
3439
+ CreateLocalGatewayVirtualInterfaceGroupCommand,
3408
3440
CreateManagedPrefixListCommand,
3409
3441
CreateNatGatewayCommand,
3410
3442
CreateNetworkAclCommand,
@@ -3486,6 +3518,8 @@ const commands = {
3486
3518
DeleteLocalGatewayRouteTableCommand,
3487
3519
DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand,
3488
3520
DeleteLocalGatewayRouteTableVpcAssociationCommand,
3521
+ DeleteLocalGatewayVirtualInterfaceCommand,
3522
+ DeleteLocalGatewayVirtualInterfaceGroupCommand,
3489
3523
DeleteManagedPrefixListCommand,
3490
3524
DeleteNatGatewayCommand,
3491
3525
DeleteNetworkAclCommand,
@@ -3638,6 +3672,7 @@ const commands = {
3638
3672
DescribeNetworkInterfaceAttributeCommand,
3639
3673
DescribeNetworkInterfacePermissionsCommand,
3640
3674
DescribeNetworkInterfacesCommand,
3675
+ DescribeOutpostLagsCommand,
3641
3676
DescribePlacementGroupsCommand,
3642
3677
DescribePrefixListsCommand,
3643
3678
DescribePrincipalIdFormatCommand,
@@ -3658,6 +3693,7 @@ const commands = {
3658
3693
DescribeSecurityGroupRulesCommand,
3659
3694
DescribeSecurityGroupsCommand,
3660
3695
DescribeSecurityGroupVpcAssociationsCommand,
3696
+ DescribeServiceLinkVirtualInterfacesCommand,
3661
3697
DescribeSnapshotAttributeCommand,
3662
3698
DescribeSnapshotsCommand,
3663
3699
DescribeSnapshotTierStatusCommand,
@@ -5503,6 +5539,40 @@ export interface EC2 {
5503
5539
cb: (err: any, data?: CreateLocalGatewayRouteTableVpcAssociationCommandOutput) => void
5504
5540
): void;
5505
5541
5542
+ /**
5543
+ * @see {@link CreateLocalGatewayVirtualInterfaceCommand}
5544
+ */
5545
+ createLocalGatewayVirtualInterface(
5546
+ args: CreateLocalGatewayVirtualInterfaceCommandInput,
5547
+ options?: __HttpHandlerOptions
5548
+ ): Promise<CreateLocalGatewayVirtualInterfaceCommandOutput>;
5549
+ createLocalGatewayVirtualInterface(
5550
+ args: CreateLocalGatewayVirtualInterfaceCommandInput,
5551
+ cb: (err: any, data?: CreateLocalGatewayVirtualInterfaceCommandOutput) => void
5552
+ ): void;
5553
+ createLocalGatewayVirtualInterface(
5554
+ args: CreateLocalGatewayVirtualInterfaceCommandInput,
5555
+ options: __HttpHandlerOptions,
5556
+ cb: (err: any, data?: CreateLocalGatewayVirtualInterfaceCommandOutput) => void
5557
+ ): void;
5558
+
5559
+ /**
5560
+ * @see {@link CreateLocalGatewayVirtualInterfaceGroupCommand}
5561
+ */
5562
+ createLocalGatewayVirtualInterfaceGroup(
5563
+ args: CreateLocalGatewayVirtualInterfaceGroupCommandInput,
5564
+ options?: __HttpHandlerOptions
5565
+ ): Promise<CreateLocalGatewayVirtualInterfaceGroupCommandOutput>;
5566
+ createLocalGatewayVirtualInterfaceGroup(
5567
+ args: CreateLocalGatewayVirtualInterfaceGroupCommandInput,
5568
+ cb: (err: any, data?: CreateLocalGatewayVirtualInterfaceGroupCommandOutput) => void
5569
+ ): void;
5570
+ createLocalGatewayVirtualInterfaceGroup(
5571
+ args: CreateLocalGatewayVirtualInterfaceGroupCommandInput,
5572
+ options: __HttpHandlerOptions,
5573
+ cb: (err: any, data?: CreateLocalGatewayVirtualInterfaceGroupCommandOutput) => void
5574
+ ): void;
5575
+
5506
5576
/**
5507
5577
* @see {@link CreateManagedPrefixListCommand}
5508
5578
*/
@@ -6818,6 +6888,40 @@ export interface EC2 {
6818
6888
cb: (err: any, data?: DeleteLocalGatewayRouteTableVpcAssociationCommandOutput) => void
6819
6889
): void;
6820
6890
6891
+ /**
6892
+ * @see {@link DeleteLocalGatewayVirtualInterfaceCommand}
6893
+ */
6894
+ deleteLocalGatewayVirtualInterface(
6895
+ args: DeleteLocalGatewayVirtualInterfaceCommandInput,
6896
+ options?: __HttpHandlerOptions
6897
+ ): Promise<DeleteLocalGatewayVirtualInterfaceCommandOutput>;
6898
+ deleteLocalGatewayVirtualInterface(
6899
+ args: DeleteLocalGatewayVirtualInterfaceCommandInput,
6900
+ cb: (err: any, data?: DeleteLocalGatewayVirtualInterfaceCommandOutput) => void
6901
+ ): void;
6902
+ deleteLocalGatewayVirtualInterface(
6903
+ args: DeleteLocalGatewayVirtualInterfaceCommandInput,
6904
+ options: __HttpHandlerOptions,
6905
+ cb: (err: any, data?: DeleteLocalGatewayVirtualInterfaceCommandOutput) => void
6906
+ ): void;
6907
+
6908
+ /**
6909
+ * @see {@link DeleteLocalGatewayVirtualInterfaceGroupCommand}
6910
+ */
6911
+ deleteLocalGatewayVirtualInterfaceGroup(
6912
+ args: DeleteLocalGatewayVirtualInterfaceGroupCommandInput,
6913
+ options?: __HttpHandlerOptions
6914
+ ): Promise<DeleteLocalGatewayVirtualInterfaceGroupCommandOutput>;
6915
+ deleteLocalGatewayVirtualInterfaceGroup(
6916
+ args: DeleteLocalGatewayVirtualInterfaceGroupCommandInput,
6917
+ cb: (err: any, data?: DeleteLocalGatewayVirtualInterfaceGroupCommandOutput) => void
6918
+ ): void;
6919
+ deleteLocalGatewayVirtualInterfaceGroup(
6920
+ args: DeleteLocalGatewayVirtualInterfaceGroupCommandInput,
6921
+ options: __HttpHandlerOptions,
6922
+ cb: (err: any, data?: DeleteLocalGatewayVirtualInterfaceGroupCommandOutput) => void
6923
+ ): void;
6924
+
6821
6925
/**
6822
6926
* @see {@link DeleteManagedPrefixListCommand}
6823
6927
*/
@@ -9428,6 +9532,24 @@ export interface EC2 {
9428
9532
cb: (err: any, data?: DescribeNetworkInterfacesCommandOutput) => void
9429
9533
): void;
9430
9534
9535
+ /**
9536
+ * @see {@link DescribeOutpostLagsCommand}
9537
+ */
9538
+ describeOutpostLags(): Promise<DescribeOutpostLagsCommandOutput>;
9539
+ describeOutpostLags(
9540
+ args: DescribeOutpostLagsCommandInput,
9541
+ options?: __HttpHandlerOptions
9542
+ ): Promise<DescribeOutpostLagsCommandOutput>;
9543
+ describeOutpostLags(
9544
+ args: DescribeOutpostLagsCommandInput,
9545
+ cb: (err: any, data?: DescribeOutpostLagsCommandOutput) => void
9546
+ ): void;
9547
+ describeOutpostLags(
9548
+ args: DescribeOutpostLagsCommandInput,
9549
+ options: __HttpHandlerOptions,
9550
+ cb: (err: any, data?: DescribeOutpostLagsCommandOutput) => void
9551
+ ): void;
9552
+
9431
9553
/**
9432
9554
* @see {@link DescribePlacementGroupsCommand}
9433
9555
*/
@@ -9783,6 +9905,24 @@ export interface EC2 {
9783
9905
cb: (err: any, data?: DescribeSecurityGroupVpcAssociationsCommandOutput) => void
9784
9906
): void;
9785
9907
9908
+ /**
9909
+ * @see {@link DescribeServiceLinkVirtualInterfacesCommand}
9910
+ */
9911
+ describeServiceLinkVirtualInterfaces(): Promise<DescribeServiceLinkVirtualInterfacesCommandOutput>;
9912
+ describeServiceLinkVirtualInterfaces(
9913
+ args: DescribeServiceLinkVirtualInterfacesCommandInput,
9914
+ options?: __HttpHandlerOptions
9915
+ ): Promise<DescribeServiceLinkVirtualInterfacesCommandOutput>;
9916
+ describeServiceLinkVirtualInterfaces(
9917
+ args: DescribeServiceLinkVirtualInterfacesCommandInput,
9918
+ cb: (err: any, data?: DescribeServiceLinkVirtualInterfacesCommandOutput) => void
9919
+ ): void;
9920
+ describeServiceLinkVirtualInterfaces(
9921
+ args: DescribeServiceLinkVirtualInterfacesCommandInput,
9922
+ options: __HttpHandlerOptions,
9923
+ cb: (err: any, data?: DescribeServiceLinkVirtualInterfacesCommandOutput) => void
9924
+ ): void;
9925
+
9786
9926
/**
9787
9927
* @see {@link DescribeSnapshotAttributeCommand}
9788
9928
*/
0 commit comments