@aws-sdk/client-ec2 3.977.0 → 3.979.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/dist-cjs/index.js +1234 -1017
- package/dist-es/EC2.js +411 -1
- package/dist-es/models/enums.js +6 -0
- package/dist-es/pagination/SearchTransitGatewayRoutesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +5 -4
- package/dist-types/EC2.d.ts +1384 -1
- package/dist-types/commands/CreateCapacityReservationFleetCommand.d.ts +2 -2
- package/dist-types/commands/CreateFleetCommand.d.ts +4 -4
- package/dist-types/commands/CreateLaunchTemplateCommand.d.ts +1 -1
- package/dist-types/commands/CreateLaunchTemplateVersionCommand.d.ts +2 -2
- package/dist-types/commands/DescribeCapacityReservationFleetsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFleetsCommand.d.ts +4 -4
- package/dist-types/commands/DescribeInstanceImageMetadataCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInstanceTypeOfferingsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInstanceTypesCommand.d.ts +2 -2
- package/dist-types/commands/DescribeInstancesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeLaunchTemplateVersionsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReservedInstancesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReservedInstancesModificationsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReservedInstancesOfferingsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeSpotFleetRequestsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeSpotInstanceRequestsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeSpotPriceHistoryCommand.d.ts +2 -2
- package/dist-types/commands/GetLaunchTemplateDataCommand.d.ts +1 -1
- package/dist-types/commands/ImportInstanceCommand.d.ts +1 -1
- package/dist-types/commands/ModifyFleetCommand.d.ts +1 -1
- package/dist-types/commands/ModifyReservedInstancesCommand.d.ts +1 -1
- package/dist-types/commands/ModifySpotFleetRequestCommand.d.ts +1 -1
- package/dist-types/commands/RequestSpotFleetCommand.d.ts +2 -2
- package/dist-types/commands/RequestSpotInstancesCommand.d.ts +2 -2
- package/dist-types/commands/RunInstancesCommand.d.ts +2 -2
- package/dist-types/commands/SearchTransitGatewayRoutesCommand.d.ts +2 -0
- package/dist-types/models/enums.d.ts +6 -0
- package/dist-types/models/models_7.d.ts +10 -0
- package/dist-types/pagination/SearchTransitGatewayRoutesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/EC2.d.ts +1506 -1
- package/dist-types/ts3.4/models/enums.d.ts +6 -0
- package/dist-types/ts3.4/models/models_7.d.ts +2 -0
- package/dist-types/ts3.4/pagination/SearchTransitGatewayRoutesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/package.json +11 -11
package/dist-types/EC2.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator, WaiterConfiguration } from "@smithy/types";
|
|
2
|
+
import type { WaiterResult } from "@smithy/util-waiter";
|
|
2
3
|
import { AcceptAddressTransferCommandInput, AcceptAddressTransferCommandOutput } from "./commands/AcceptAddressTransferCommand";
|
|
3
4
|
import { AcceptCapacityReservationBillingOwnershipCommandInput, AcceptCapacityReservationBillingOwnershipCommandOutput } from "./commands/AcceptCapacityReservationBillingOwnershipCommand";
|
|
4
5
|
import { AcceptReservedInstancesExchangeQuoteCommandInput, AcceptReservedInstancesExchangeQuoteCommandOutput } from "./commands/AcceptReservedInstancesExchangeQuoteCommand";
|
|
@@ -5470,6 +5471,1388 @@ export interface EC2 {
|
|
|
5470
5471
|
withdrawByoipCidr(args: WithdrawByoipCidrCommandInput, options?: __HttpHandlerOptions): Promise<WithdrawByoipCidrCommandOutput>;
|
|
5471
5472
|
withdrawByoipCidr(args: WithdrawByoipCidrCommandInput, cb: (err: any, data?: WithdrawByoipCidrCommandOutput) => void): void;
|
|
5472
5473
|
withdrawByoipCidr(args: WithdrawByoipCidrCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: WithdrawByoipCidrCommandOutput) => void): void;
|
|
5474
|
+
/**
|
|
5475
|
+
* @see {@link DescribeAddressesAttributeCommand}
|
|
5476
|
+
* @param args - command input.
|
|
5477
|
+
* @param paginationConfig - optional pagination config.
|
|
5478
|
+
* @returns AsyncIterable of {@link DescribeAddressesAttributeCommandOutput}.
|
|
5479
|
+
*/
|
|
5480
|
+
paginateDescribeAddressesAttribute(args?: DescribeAddressesAttributeCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeAddressesAttributeCommandOutput>;
|
|
5481
|
+
/**
|
|
5482
|
+
* @see {@link DescribeAddressTransfersCommand}
|
|
5483
|
+
* @param args - command input.
|
|
5484
|
+
* @param paginationConfig - optional pagination config.
|
|
5485
|
+
* @returns AsyncIterable of {@link DescribeAddressTransfersCommandOutput}.
|
|
5486
|
+
*/
|
|
5487
|
+
paginateDescribeAddressTransfers(args?: DescribeAddressTransfersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeAddressTransfersCommandOutput>;
|
|
5488
|
+
/**
|
|
5489
|
+
* @see {@link DescribeAwsNetworkPerformanceMetricSubscriptionsCommand}
|
|
5490
|
+
* @param args - command input.
|
|
5491
|
+
* @param paginationConfig - optional pagination config.
|
|
5492
|
+
* @returns AsyncIterable of {@link DescribeAwsNetworkPerformanceMetricSubscriptionsCommandOutput}.
|
|
5493
|
+
*/
|
|
5494
|
+
paginateDescribeAwsNetworkPerformanceMetricSubscriptions(args?: DescribeAwsNetworkPerformanceMetricSubscriptionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeAwsNetworkPerformanceMetricSubscriptionsCommandOutput>;
|
|
5495
|
+
/**
|
|
5496
|
+
* @see {@link DescribeByoipCidrsCommand}
|
|
5497
|
+
* @param args - command input.
|
|
5498
|
+
* @param paginationConfig - optional pagination config.
|
|
5499
|
+
* @returns AsyncIterable of {@link DescribeByoipCidrsCommandOutput}.
|
|
5500
|
+
*/
|
|
5501
|
+
paginateDescribeByoipCidrs(args: DescribeByoipCidrsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeByoipCidrsCommandOutput>;
|
|
5502
|
+
/**
|
|
5503
|
+
* @see {@link DescribeCapacityBlockExtensionHistoryCommand}
|
|
5504
|
+
* @param args - command input.
|
|
5505
|
+
* @param paginationConfig - optional pagination config.
|
|
5506
|
+
* @returns AsyncIterable of {@link DescribeCapacityBlockExtensionHistoryCommandOutput}.
|
|
5507
|
+
*/
|
|
5508
|
+
paginateDescribeCapacityBlockExtensionHistory(args?: DescribeCapacityBlockExtensionHistoryCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeCapacityBlockExtensionHistoryCommandOutput>;
|
|
5509
|
+
/**
|
|
5510
|
+
* @see {@link DescribeCapacityBlockExtensionOfferingsCommand}
|
|
5511
|
+
* @param args - command input.
|
|
5512
|
+
* @param paginationConfig - optional pagination config.
|
|
5513
|
+
* @returns AsyncIterable of {@link DescribeCapacityBlockExtensionOfferingsCommandOutput}.
|
|
5514
|
+
*/
|
|
5515
|
+
paginateDescribeCapacityBlockExtensionOfferings(args: DescribeCapacityBlockExtensionOfferingsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeCapacityBlockExtensionOfferingsCommandOutput>;
|
|
5516
|
+
/**
|
|
5517
|
+
* @see {@link DescribeCapacityBlockOfferingsCommand}
|
|
5518
|
+
* @param args - command input.
|
|
5519
|
+
* @param paginationConfig - optional pagination config.
|
|
5520
|
+
* @returns AsyncIterable of {@link DescribeCapacityBlockOfferingsCommandOutput}.
|
|
5521
|
+
*/
|
|
5522
|
+
paginateDescribeCapacityBlockOfferings(args: DescribeCapacityBlockOfferingsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeCapacityBlockOfferingsCommandOutput>;
|
|
5523
|
+
/**
|
|
5524
|
+
* @see {@link DescribeCapacityBlocksCommand}
|
|
5525
|
+
* @param args - command input.
|
|
5526
|
+
* @param paginationConfig - optional pagination config.
|
|
5527
|
+
* @returns AsyncIterable of {@link DescribeCapacityBlocksCommandOutput}.
|
|
5528
|
+
*/
|
|
5529
|
+
paginateDescribeCapacityBlocks(args?: DescribeCapacityBlocksCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeCapacityBlocksCommandOutput>;
|
|
5530
|
+
/**
|
|
5531
|
+
* @see {@link DescribeCapacityBlockStatusCommand}
|
|
5532
|
+
* @param args - command input.
|
|
5533
|
+
* @param paginationConfig - optional pagination config.
|
|
5534
|
+
* @returns AsyncIterable of {@link DescribeCapacityBlockStatusCommandOutput}.
|
|
5535
|
+
*/
|
|
5536
|
+
paginateDescribeCapacityBlockStatus(args?: DescribeCapacityBlockStatusCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeCapacityBlockStatusCommandOutput>;
|
|
5537
|
+
/**
|
|
5538
|
+
* @see {@link DescribeCapacityManagerDataExportsCommand}
|
|
5539
|
+
* @param args - command input.
|
|
5540
|
+
* @param paginationConfig - optional pagination config.
|
|
5541
|
+
* @returns AsyncIterable of {@link DescribeCapacityManagerDataExportsCommandOutput}.
|
|
5542
|
+
*/
|
|
5543
|
+
paginateDescribeCapacityManagerDataExports(args?: DescribeCapacityManagerDataExportsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeCapacityManagerDataExportsCommandOutput>;
|
|
5544
|
+
/**
|
|
5545
|
+
* @see {@link DescribeCapacityReservationBillingRequestsCommand}
|
|
5546
|
+
* @param args - command input.
|
|
5547
|
+
* @param paginationConfig - optional pagination config.
|
|
5548
|
+
* @returns AsyncIterable of {@link DescribeCapacityReservationBillingRequestsCommandOutput}.
|
|
5549
|
+
*/
|
|
5550
|
+
paginateDescribeCapacityReservationBillingRequests(args: DescribeCapacityReservationBillingRequestsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeCapacityReservationBillingRequestsCommandOutput>;
|
|
5551
|
+
/**
|
|
5552
|
+
* @see {@link DescribeCapacityReservationFleetsCommand}
|
|
5553
|
+
* @param args - command input.
|
|
5554
|
+
* @param paginationConfig - optional pagination config.
|
|
5555
|
+
* @returns AsyncIterable of {@link DescribeCapacityReservationFleetsCommandOutput}.
|
|
5556
|
+
*/
|
|
5557
|
+
paginateDescribeCapacityReservationFleets(args?: DescribeCapacityReservationFleetsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeCapacityReservationFleetsCommandOutput>;
|
|
5558
|
+
/**
|
|
5559
|
+
* @see {@link DescribeCapacityReservationsCommand}
|
|
5560
|
+
* @param args - command input.
|
|
5561
|
+
* @param paginationConfig - optional pagination config.
|
|
5562
|
+
* @returns AsyncIterable of {@link DescribeCapacityReservationsCommandOutput}.
|
|
5563
|
+
*/
|
|
5564
|
+
paginateDescribeCapacityReservations(args?: DescribeCapacityReservationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeCapacityReservationsCommandOutput>;
|
|
5565
|
+
/**
|
|
5566
|
+
* @see {@link DescribeCarrierGatewaysCommand}
|
|
5567
|
+
* @param args - command input.
|
|
5568
|
+
* @param paginationConfig - optional pagination config.
|
|
5569
|
+
* @returns AsyncIterable of {@link DescribeCarrierGatewaysCommandOutput}.
|
|
5570
|
+
*/
|
|
5571
|
+
paginateDescribeCarrierGateways(args?: DescribeCarrierGatewaysCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeCarrierGatewaysCommandOutput>;
|
|
5572
|
+
/**
|
|
5573
|
+
* @see {@link DescribeClassicLinkInstancesCommand}
|
|
5574
|
+
* @param args - command input.
|
|
5575
|
+
* @param paginationConfig - optional pagination config.
|
|
5576
|
+
* @returns AsyncIterable of {@link DescribeClassicLinkInstancesCommandOutput}.
|
|
5577
|
+
*/
|
|
5578
|
+
paginateDescribeClassicLinkInstances(args?: DescribeClassicLinkInstancesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeClassicLinkInstancesCommandOutput>;
|
|
5579
|
+
/**
|
|
5580
|
+
* @see {@link DescribeClientVpnAuthorizationRulesCommand}
|
|
5581
|
+
* @param args - command input.
|
|
5582
|
+
* @param paginationConfig - optional pagination config.
|
|
5583
|
+
* @returns AsyncIterable of {@link DescribeClientVpnAuthorizationRulesCommandOutput}.
|
|
5584
|
+
*/
|
|
5585
|
+
paginateDescribeClientVpnAuthorizationRules(args: DescribeClientVpnAuthorizationRulesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeClientVpnAuthorizationRulesCommandOutput>;
|
|
5586
|
+
/**
|
|
5587
|
+
* @see {@link DescribeClientVpnConnectionsCommand}
|
|
5588
|
+
* @param args - command input.
|
|
5589
|
+
* @param paginationConfig - optional pagination config.
|
|
5590
|
+
* @returns AsyncIterable of {@link DescribeClientVpnConnectionsCommandOutput}.
|
|
5591
|
+
*/
|
|
5592
|
+
paginateDescribeClientVpnConnections(args: DescribeClientVpnConnectionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeClientVpnConnectionsCommandOutput>;
|
|
5593
|
+
/**
|
|
5594
|
+
* @see {@link DescribeClientVpnEndpointsCommand}
|
|
5595
|
+
* @param args - command input.
|
|
5596
|
+
* @param paginationConfig - optional pagination config.
|
|
5597
|
+
* @returns AsyncIterable of {@link DescribeClientVpnEndpointsCommandOutput}.
|
|
5598
|
+
*/
|
|
5599
|
+
paginateDescribeClientVpnEndpoints(args?: DescribeClientVpnEndpointsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeClientVpnEndpointsCommandOutput>;
|
|
5600
|
+
/**
|
|
5601
|
+
* @see {@link DescribeClientVpnRoutesCommand}
|
|
5602
|
+
* @param args - command input.
|
|
5603
|
+
* @param paginationConfig - optional pagination config.
|
|
5604
|
+
* @returns AsyncIterable of {@link DescribeClientVpnRoutesCommandOutput}.
|
|
5605
|
+
*/
|
|
5606
|
+
paginateDescribeClientVpnRoutes(args: DescribeClientVpnRoutesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeClientVpnRoutesCommandOutput>;
|
|
5607
|
+
/**
|
|
5608
|
+
* @see {@link DescribeClientVpnTargetNetworksCommand}
|
|
5609
|
+
* @param args - command input.
|
|
5610
|
+
* @param paginationConfig - optional pagination config.
|
|
5611
|
+
* @returns AsyncIterable of {@link DescribeClientVpnTargetNetworksCommandOutput}.
|
|
5612
|
+
*/
|
|
5613
|
+
paginateDescribeClientVpnTargetNetworks(args: DescribeClientVpnTargetNetworksCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeClientVpnTargetNetworksCommandOutput>;
|
|
5614
|
+
/**
|
|
5615
|
+
* @see {@link DescribeCoipPoolsCommand}
|
|
5616
|
+
* @param args - command input.
|
|
5617
|
+
* @param paginationConfig - optional pagination config.
|
|
5618
|
+
* @returns AsyncIterable of {@link DescribeCoipPoolsCommandOutput}.
|
|
5619
|
+
*/
|
|
5620
|
+
paginateDescribeCoipPools(args?: DescribeCoipPoolsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeCoipPoolsCommandOutput>;
|
|
5621
|
+
/**
|
|
5622
|
+
* @see {@link DescribeDhcpOptionsCommand}
|
|
5623
|
+
* @param args - command input.
|
|
5624
|
+
* @param paginationConfig - optional pagination config.
|
|
5625
|
+
* @returns AsyncIterable of {@link DescribeDhcpOptionsCommandOutput}.
|
|
5626
|
+
*/
|
|
5627
|
+
paginateDescribeDhcpOptions(args?: DescribeDhcpOptionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeDhcpOptionsCommandOutput>;
|
|
5628
|
+
/**
|
|
5629
|
+
* @see {@link DescribeEgressOnlyInternetGatewaysCommand}
|
|
5630
|
+
* @param args - command input.
|
|
5631
|
+
* @param paginationConfig - optional pagination config.
|
|
5632
|
+
* @returns AsyncIterable of {@link DescribeEgressOnlyInternetGatewaysCommandOutput}.
|
|
5633
|
+
*/
|
|
5634
|
+
paginateDescribeEgressOnlyInternetGateways(args?: DescribeEgressOnlyInternetGatewaysCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeEgressOnlyInternetGatewaysCommandOutput>;
|
|
5635
|
+
/**
|
|
5636
|
+
* @see {@link DescribeExportImageTasksCommand}
|
|
5637
|
+
* @param args - command input.
|
|
5638
|
+
* @param paginationConfig - optional pagination config.
|
|
5639
|
+
* @returns AsyncIterable of {@link DescribeExportImageTasksCommandOutput}.
|
|
5640
|
+
*/
|
|
5641
|
+
paginateDescribeExportImageTasks(args?: DescribeExportImageTasksCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeExportImageTasksCommandOutput>;
|
|
5642
|
+
/**
|
|
5643
|
+
* @see {@link DescribeFastLaunchImagesCommand}
|
|
5644
|
+
* @param args - command input.
|
|
5645
|
+
* @param paginationConfig - optional pagination config.
|
|
5646
|
+
* @returns AsyncIterable of {@link DescribeFastLaunchImagesCommandOutput}.
|
|
5647
|
+
*/
|
|
5648
|
+
paginateDescribeFastLaunchImages(args?: DescribeFastLaunchImagesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeFastLaunchImagesCommandOutput>;
|
|
5649
|
+
/**
|
|
5650
|
+
* @see {@link DescribeFastSnapshotRestoresCommand}
|
|
5651
|
+
* @param args - command input.
|
|
5652
|
+
* @param paginationConfig - optional pagination config.
|
|
5653
|
+
* @returns AsyncIterable of {@link DescribeFastSnapshotRestoresCommandOutput}.
|
|
5654
|
+
*/
|
|
5655
|
+
paginateDescribeFastSnapshotRestores(args?: DescribeFastSnapshotRestoresCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeFastSnapshotRestoresCommandOutput>;
|
|
5656
|
+
/**
|
|
5657
|
+
* @see {@link DescribeFleetsCommand}
|
|
5658
|
+
* @param args - command input.
|
|
5659
|
+
* @param paginationConfig - optional pagination config.
|
|
5660
|
+
* @returns AsyncIterable of {@link DescribeFleetsCommandOutput}.
|
|
5661
|
+
*/
|
|
5662
|
+
paginateDescribeFleets(args?: DescribeFleetsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeFleetsCommandOutput>;
|
|
5663
|
+
/**
|
|
5664
|
+
* @see {@link DescribeFlowLogsCommand}
|
|
5665
|
+
* @param args - command input.
|
|
5666
|
+
* @param paginationConfig - optional pagination config.
|
|
5667
|
+
* @returns AsyncIterable of {@link DescribeFlowLogsCommandOutput}.
|
|
5668
|
+
*/
|
|
5669
|
+
paginateDescribeFlowLogs(args?: DescribeFlowLogsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeFlowLogsCommandOutput>;
|
|
5670
|
+
/**
|
|
5671
|
+
* @see {@link DescribeFpgaImagesCommand}
|
|
5672
|
+
* @param args - command input.
|
|
5673
|
+
* @param paginationConfig - optional pagination config.
|
|
5674
|
+
* @returns AsyncIterable of {@link DescribeFpgaImagesCommandOutput}.
|
|
5675
|
+
*/
|
|
5676
|
+
paginateDescribeFpgaImages(args?: DescribeFpgaImagesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeFpgaImagesCommandOutput>;
|
|
5677
|
+
/**
|
|
5678
|
+
* @see {@link DescribeHostReservationOfferingsCommand}
|
|
5679
|
+
* @param args - command input.
|
|
5680
|
+
* @param paginationConfig - optional pagination config.
|
|
5681
|
+
* @returns AsyncIterable of {@link DescribeHostReservationOfferingsCommandOutput}.
|
|
5682
|
+
*/
|
|
5683
|
+
paginateDescribeHostReservationOfferings(args?: DescribeHostReservationOfferingsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeHostReservationOfferingsCommandOutput>;
|
|
5684
|
+
/**
|
|
5685
|
+
* @see {@link DescribeHostReservationsCommand}
|
|
5686
|
+
* @param args - command input.
|
|
5687
|
+
* @param paginationConfig - optional pagination config.
|
|
5688
|
+
* @returns AsyncIterable of {@link DescribeHostReservationsCommandOutput}.
|
|
5689
|
+
*/
|
|
5690
|
+
paginateDescribeHostReservations(args?: DescribeHostReservationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeHostReservationsCommandOutput>;
|
|
5691
|
+
/**
|
|
5692
|
+
* @see {@link DescribeHostsCommand}
|
|
5693
|
+
* @param args - command input.
|
|
5694
|
+
* @param paginationConfig - optional pagination config.
|
|
5695
|
+
* @returns AsyncIterable of {@link DescribeHostsCommandOutput}.
|
|
5696
|
+
*/
|
|
5697
|
+
paginateDescribeHosts(args?: DescribeHostsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeHostsCommandOutput>;
|
|
5698
|
+
/**
|
|
5699
|
+
* @see {@link DescribeIamInstanceProfileAssociationsCommand}
|
|
5700
|
+
* @param args - command input.
|
|
5701
|
+
* @param paginationConfig - optional pagination config.
|
|
5702
|
+
* @returns AsyncIterable of {@link DescribeIamInstanceProfileAssociationsCommandOutput}.
|
|
5703
|
+
*/
|
|
5704
|
+
paginateDescribeIamInstanceProfileAssociations(args?: DescribeIamInstanceProfileAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeIamInstanceProfileAssociationsCommandOutput>;
|
|
5705
|
+
/**
|
|
5706
|
+
* @see {@link DescribeImageReferencesCommand}
|
|
5707
|
+
* @param args - command input.
|
|
5708
|
+
* @param paginationConfig - optional pagination config.
|
|
5709
|
+
* @returns AsyncIterable of {@link DescribeImageReferencesCommandOutput}.
|
|
5710
|
+
*/
|
|
5711
|
+
paginateDescribeImageReferences(args: DescribeImageReferencesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeImageReferencesCommandOutput>;
|
|
5712
|
+
/**
|
|
5713
|
+
* @see {@link DescribeImagesCommand}
|
|
5714
|
+
* @param args - command input.
|
|
5715
|
+
* @param paginationConfig - optional pagination config.
|
|
5716
|
+
* @returns AsyncIterable of {@link DescribeImagesCommandOutput}.
|
|
5717
|
+
*/
|
|
5718
|
+
paginateDescribeImages(args?: DescribeImagesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeImagesCommandOutput>;
|
|
5719
|
+
/**
|
|
5720
|
+
* @see {@link DescribeImageUsageReportEntriesCommand}
|
|
5721
|
+
* @param args - command input.
|
|
5722
|
+
* @param paginationConfig - optional pagination config.
|
|
5723
|
+
* @returns AsyncIterable of {@link DescribeImageUsageReportEntriesCommandOutput}.
|
|
5724
|
+
*/
|
|
5725
|
+
paginateDescribeImageUsageReportEntries(args?: DescribeImageUsageReportEntriesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeImageUsageReportEntriesCommandOutput>;
|
|
5726
|
+
/**
|
|
5727
|
+
* @see {@link DescribeImageUsageReportsCommand}
|
|
5728
|
+
* @param args - command input.
|
|
5729
|
+
* @param paginationConfig - optional pagination config.
|
|
5730
|
+
* @returns AsyncIterable of {@link DescribeImageUsageReportsCommandOutput}.
|
|
5731
|
+
*/
|
|
5732
|
+
paginateDescribeImageUsageReports(args?: DescribeImageUsageReportsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeImageUsageReportsCommandOutput>;
|
|
5733
|
+
/**
|
|
5734
|
+
* @see {@link DescribeImportImageTasksCommand}
|
|
5735
|
+
* @param args - command input.
|
|
5736
|
+
* @param paginationConfig - optional pagination config.
|
|
5737
|
+
* @returns AsyncIterable of {@link DescribeImportImageTasksCommandOutput}.
|
|
5738
|
+
*/
|
|
5739
|
+
paginateDescribeImportImageTasks(args?: DescribeImportImageTasksCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeImportImageTasksCommandOutput>;
|
|
5740
|
+
/**
|
|
5741
|
+
* @see {@link DescribeImportSnapshotTasksCommand}
|
|
5742
|
+
* @param args - command input.
|
|
5743
|
+
* @param paginationConfig - optional pagination config.
|
|
5744
|
+
* @returns AsyncIterable of {@link DescribeImportSnapshotTasksCommandOutput}.
|
|
5745
|
+
*/
|
|
5746
|
+
paginateDescribeImportSnapshotTasks(args?: DescribeImportSnapshotTasksCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeImportSnapshotTasksCommandOutput>;
|
|
5747
|
+
/**
|
|
5748
|
+
* @see {@link DescribeInstanceConnectEndpointsCommand}
|
|
5749
|
+
* @param args - command input.
|
|
5750
|
+
* @param paginationConfig - optional pagination config.
|
|
5751
|
+
* @returns AsyncIterable of {@link DescribeInstanceConnectEndpointsCommandOutput}.
|
|
5752
|
+
*/
|
|
5753
|
+
paginateDescribeInstanceConnectEndpoints(args?: DescribeInstanceConnectEndpointsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeInstanceConnectEndpointsCommandOutput>;
|
|
5754
|
+
/**
|
|
5755
|
+
* @see {@link DescribeInstanceCreditSpecificationsCommand}
|
|
5756
|
+
* @param args - command input.
|
|
5757
|
+
* @param paginationConfig - optional pagination config.
|
|
5758
|
+
* @returns AsyncIterable of {@link DescribeInstanceCreditSpecificationsCommandOutput}.
|
|
5759
|
+
*/
|
|
5760
|
+
paginateDescribeInstanceCreditSpecifications(args?: DescribeInstanceCreditSpecificationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeInstanceCreditSpecificationsCommandOutput>;
|
|
5761
|
+
/**
|
|
5762
|
+
* @see {@link DescribeInstanceEventWindowsCommand}
|
|
5763
|
+
* @param args - command input.
|
|
5764
|
+
* @param paginationConfig - optional pagination config.
|
|
5765
|
+
* @returns AsyncIterable of {@link DescribeInstanceEventWindowsCommandOutput}.
|
|
5766
|
+
*/
|
|
5767
|
+
paginateDescribeInstanceEventWindows(args?: DescribeInstanceEventWindowsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeInstanceEventWindowsCommandOutput>;
|
|
5768
|
+
/**
|
|
5769
|
+
* @see {@link DescribeInstanceImageMetadataCommand}
|
|
5770
|
+
* @param args - command input.
|
|
5771
|
+
* @param paginationConfig - optional pagination config.
|
|
5772
|
+
* @returns AsyncIterable of {@link DescribeInstanceImageMetadataCommandOutput}.
|
|
5773
|
+
*/
|
|
5774
|
+
paginateDescribeInstanceImageMetadata(args?: DescribeInstanceImageMetadataCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeInstanceImageMetadataCommandOutput>;
|
|
5775
|
+
/**
|
|
5776
|
+
* @see {@link DescribeInstancesCommand}
|
|
5777
|
+
* @param args - command input.
|
|
5778
|
+
* @param paginationConfig - optional pagination config.
|
|
5779
|
+
* @returns AsyncIterable of {@link DescribeInstancesCommandOutput}.
|
|
5780
|
+
*/
|
|
5781
|
+
paginateDescribeInstances(args?: DescribeInstancesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeInstancesCommandOutput>;
|
|
5782
|
+
/**
|
|
5783
|
+
* @see {@link DescribeInstanceStatusCommand}
|
|
5784
|
+
* @param args - command input.
|
|
5785
|
+
* @param paginationConfig - optional pagination config.
|
|
5786
|
+
* @returns AsyncIterable of {@link DescribeInstanceStatusCommandOutput}.
|
|
5787
|
+
*/
|
|
5788
|
+
paginateDescribeInstanceStatus(args?: DescribeInstanceStatusCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeInstanceStatusCommandOutput>;
|
|
5789
|
+
/**
|
|
5790
|
+
* @see {@link DescribeInstanceTopologyCommand}
|
|
5791
|
+
* @param args - command input.
|
|
5792
|
+
* @param paginationConfig - optional pagination config.
|
|
5793
|
+
* @returns AsyncIterable of {@link DescribeInstanceTopologyCommandOutput}.
|
|
5794
|
+
*/
|
|
5795
|
+
paginateDescribeInstanceTopology(args?: DescribeInstanceTopologyCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeInstanceTopologyCommandOutput>;
|
|
5796
|
+
/**
|
|
5797
|
+
* @see {@link DescribeInstanceTypeOfferingsCommand}
|
|
5798
|
+
* @param args - command input.
|
|
5799
|
+
* @param paginationConfig - optional pagination config.
|
|
5800
|
+
* @returns AsyncIterable of {@link DescribeInstanceTypeOfferingsCommandOutput}.
|
|
5801
|
+
*/
|
|
5802
|
+
paginateDescribeInstanceTypeOfferings(args?: DescribeInstanceTypeOfferingsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeInstanceTypeOfferingsCommandOutput>;
|
|
5803
|
+
/**
|
|
5804
|
+
* @see {@link DescribeInstanceTypesCommand}
|
|
5805
|
+
* @param args - command input.
|
|
5806
|
+
* @param paginationConfig - optional pagination config.
|
|
5807
|
+
* @returns AsyncIterable of {@link DescribeInstanceTypesCommandOutput}.
|
|
5808
|
+
*/
|
|
5809
|
+
paginateDescribeInstanceTypes(args?: DescribeInstanceTypesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeInstanceTypesCommandOutput>;
|
|
5810
|
+
/**
|
|
5811
|
+
* @see {@link DescribeInternetGatewaysCommand}
|
|
5812
|
+
* @param args - command input.
|
|
5813
|
+
* @param paginationConfig - optional pagination config.
|
|
5814
|
+
* @returns AsyncIterable of {@link DescribeInternetGatewaysCommandOutput}.
|
|
5815
|
+
*/
|
|
5816
|
+
paginateDescribeInternetGateways(args?: DescribeInternetGatewaysCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeInternetGatewaysCommandOutput>;
|
|
5817
|
+
/**
|
|
5818
|
+
* @see {@link DescribeIpamPoolsCommand}
|
|
5819
|
+
* @param args - command input.
|
|
5820
|
+
* @param paginationConfig - optional pagination config.
|
|
5821
|
+
* @returns AsyncIterable of {@link DescribeIpamPoolsCommandOutput}.
|
|
5822
|
+
*/
|
|
5823
|
+
paginateDescribeIpamPools(args?: DescribeIpamPoolsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeIpamPoolsCommandOutput>;
|
|
5824
|
+
/**
|
|
5825
|
+
* @see {@link DescribeIpamPrefixListResolversCommand}
|
|
5826
|
+
* @param args - command input.
|
|
5827
|
+
* @param paginationConfig - optional pagination config.
|
|
5828
|
+
* @returns AsyncIterable of {@link DescribeIpamPrefixListResolversCommandOutput}.
|
|
5829
|
+
*/
|
|
5830
|
+
paginateDescribeIpamPrefixListResolvers(args?: DescribeIpamPrefixListResolversCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeIpamPrefixListResolversCommandOutput>;
|
|
5831
|
+
/**
|
|
5832
|
+
* @see {@link DescribeIpamPrefixListResolverTargetsCommand}
|
|
5833
|
+
* @param args - command input.
|
|
5834
|
+
* @param paginationConfig - optional pagination config.
|
|
5835
|
+
* @returns AsyncIterable of {@link DescribeIpamPrefixListResolverTargetsCommandOutput}.
|
|
5836
|
+
*/
|
|
5837
|
+
paginateDescribeIpamPrefixListResolverTargets(args?: DescribeIpamPrefixListResolverTargetsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeIpamPrefixListResolverTargetsCommandOutput>;
|
|
5838
|
+
/**
|
|
5839
|
+
* @see {@link DescribeIpamResourceDiscoveriesCommand}
|
|
5840
|
+
* @param args - command input.
|
|
5841
|
+
* @param paginationConfig - optional pagination config.
|
|
5842
|
+
* @returns AsyncIterable of {@link DescribeIpamResourceDiscoveriesCommandOutput}.
|
|
5843
|
+
*/
|
|
5844
|
+
paginateDescribeIpamResourceDiscoveries(args?: DescribeIpamResourceDiscoveriesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeIpamResourceDiscoveriesCommandOutput>;
|
|
5845
|
+
/**
|
|
5846
|
+
* @see {@link DescribeIpamResourceDiscoveryAssociationsCommand}
|
|
5847
|
+
* @param args - command input.
|
|
5848
|
+
* @param paginationConfig - optional pagination config.
|
|
5849
|
+
* @returns AsyncIterable of {@link DescribeIpamResourceDiscoveryAssociationsCommandOutput}.
|
|
5850
|
+
*/
|
|
5851
|
+
paginateDescribeIpamResourceDiscoveryAssociations(args?: DescribeIpamResourceDiscoveryAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeIpamResourceDiscoveryAssociationsCommandOutput>;
|
|
5852
|
+
/**
|
|
5853
|
+
* @see {@link DescribeIpamsCommand}
|
|
5854
|
+
* @param args - command input.
|
|
5855
|
+
* @param paginationConfig - optional pagination config.
|
|
5856
|
+
* @returns AsyncIterable of {@link DescribeIpamsCommandOutput}.
|
|
5857
|
+
*/
|
|
5858
|
+
paginateDescribeIpams(args?: DescribeIpamsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeIpamsCommandOutput>;
|
|
5859
|
+
/**
|
|
5860
|
+
* @see {@link DescribeIpamScopesCommand}
|
|
5861
|
+
* @param args - command input.
|
|
5862
|
+
* @param paginationConfig - optional pagination config.
|
|
5863
|
+
* @returns AsyncIterable of {@link DescribeIpamScopesCommandOutput}.
|
|
5864
|
+
*/
|
|
5865
|
+
paginateDescribeIpamScopes(args?: DescribeIpamScopesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeIpamScopesCommandOutput>;
|
|
5866
|
+
/**
|
|
5867
|
+
* @see {@link DescribeIpv6PoolsCommand}
|
|
5868
|
+
* @param args - command input.
|
|
5869
|
+
* @param paginationConfig - optional pagination config.
|
|
5870
|
+
* @returns AsyncIterable of {@link DescribeIpv6PoolsCommandOutput}.
|
|
5871
|
+
*/
|
|
5872
|
+
paginateDescribeIpv6Pools(args?: DescribeIpv6PoolsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeIpv6PoolsCommandOutput>;
|
|
5873
|
+
/**
|
|
5874
|
+
* @see {@link DescribeLaunchTemplatesCommand}
|
|
5875
|
+
* @param args - command input.
|
|
5876
|
+
* @param paginationConfig - optional pagination config.
|
|
5877
|
+
* @returns AsyncIterable of {@link DescribeLaunchTemplatesCommandOutput}.
|
|
5878
|
+
*/
|
|
5879
|
+
paginateDescribeLaunchTemplates(args?: DescribeLaunchTemplatesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeLaunchTemplatesCommandOutput>;
|
|
5880
|
+
/**
|
|
5881
|
+
* @see {@link DescribeLaunchTemplateVersionsCommand}
|
|
5882
|
+
* @param args - command input.
|
|
5883
|
+
* @param paginationConfig - optional pagination config.
|
|
5884
|
+
* @returns AsyncIterable of {@link DescribeLaunchTemplateVersionsCommandOutput}.
|
|
5885
|
+
*/
|
|
5886
|
+
paginateDescribeLaunchTemplateVersions(args?: DescribeLaunchTemplateVersionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeLaunchTemplateVersionsCommandOutput>;
|
|
5887
|
+
/**
|
|
5888
|
+
* @see {@link DescribeLocalGatewayRouteTablesCommand}
|
|
5889
|
+
* @param args - command input.
|
|
5890
|
+
* @param paginationConfig - optional pagination config.
|
|
5891
|
+
* @returns AsyncIterable of {@link DescribeLocalGatewayRouteTablesCommandOutput}.
|
|
5892
|
+
*/
|
|
5893
|
+
paginateDescribeLocalGatewayRouteTables(args?: DescribeLocalGatewayRouteTablesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeLocalGatewayRouteTablesCommandOutput>;
|
|
5894
|
+
/**
|
|
5895
|
+
* @see {@link DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand}
|
|
5896
|
+
* @param args - command input.
|
|
5897
|
+
* @param paginationConfig - optional pagination config.
|
|
5898
|
+
* @returns AsyncIterable of {@link DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommandOutput}.
|
|
5899
|
+
*/
|
|
5900
|
+
paginateDescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociations(args?: DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommandOutput>;
|
|
5901
|
+
/**
|
|
5902
|
+
* @see {@link DescribeLocalGatewayRouteTableVpcAssociationsCommand}
|
|
5903
|
+
* @param args - command input.
|
|
5904
|
+
* @param paginationConfig - optional pagination config.
|
|
5905
|
+
* @returns AsyncIterable of {@link DescribeLocalGatewayRouteTableVpcAssociationsCommandOutput}.
|
|
5906
|
+
*/
|
|
5907
|
+
paginateDescribeLocalGatewayRouteTableVpcAssociations(args?: DescribeLocalGatewayRouteTableVpcAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeLocalGatewayRouteTableVpcAssociationsCommandOutput>;
|
|
5908
|
+
/**
|
|
5909
|
+
* @see {@link DescribeLocalGatewaysCommand}
|
|
5910
|
+
* @param args - command input.
|
|
5911
|
+
* @param paginationConfig - optional pagination config.
|
|
5912
|
+
* @returns AsyncIterable of {@link DescribeLocalGatewaysCommandOutput}.
|
|
5913
|
+
*/
|
|
5914
|
+
paginateDescribeLocalGateways(args?: DescribeLocalGatewaysCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeLocalGatewaysCommandOutput>;
|
|
5915
|
+
/**
|
|
5916
|
+
* @see {@link DescribeLocalGatewayVirtualInterfaceGroupsCommand}
|
|
5917
|
+
* @param args - command input.
|
|
5918
|
+
* @param paginationConfig - optional pagination config.
|
|
5919
|
+
* @returns AsyncIterable of {@link DescribeLocalGatewayVirtualInterfaceGroupsCommandOutput}.
|
|
5920
|
+
*/
|
|
5921
|
+
paginateDescribeLocalGatewayVirtualInterfaceGroups(args?: DescribeLocalGatewayVirtualInterfaceGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeLocalGatewayVirtualInterfaceGroupsCommandOutput>;
|
|
5922
|
+
/**
|
|
5923
|
+
* @see {@link DescribeLocalGatewayVirtualInterfacesCommand}
|
|
5924
|
+
* @param args - command input.
|
|
5925
|
+
* @param paginationConfig - optional pagination config.
|
|
5926
|
+
* @returns AsyncIterable of {@link DescribeLocalGatewayVirtualInterfacesCommandOutput}.
|
|
5927
|
+
*/
|
|
5928
|
+
paginateDescribeLocalGatewayVirtualInterfaces(args?: DescribeLocalGatewayVirtualInterfacesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeLocalGatewayVirtualInterfacesCommandOutput>;
|
|
5929
|
+
/**
|
|
5930
|
+
* @see {@link DescribeMacHostsCommand}
|
|
5931
|
+
* @param args - command input.
|
|
5932
|
+
* @param paginationConfig - optional pagination config.
|
|
5933
|
+
* @returns AsyncIterable of {@link DescribeMacHostsCommandOutput}.
|
|
5934
|
+
*/
|
|
5935
|
+
paginateDescribeMacHosts(args?: DescribeMacHostsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeMacHostsCommandOutput>;
|
|
5936
|
+
/**
|
|
5937
|
+
* @see {@link DescribeMacModificationTasksCommand}
|
|
5938
|
+
* @param args - command input.
|
|
5939
|
+
* @param paginationConfig - optional pagination config.
|
|
5940
|
+
* @returns AsyncIterable of {@link DescribeMacModificationTasksCommandOutput}.
|
|
5941
|
+
*/
|
|
5942
|
+
paginateDescribeMacModificationTasks(args?: DescribeMacModificationTasksCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeMacModificationTasksCommandOutput>;
|
|
5943
|
+
/**
|
|
5944
|
+
* @see {@link DescribeManagedPrefixListsCommand}
|
|
5945
|
+
* @param args - command input.
|
|
5946
|
+
* @param paginationConfig - optional pagination config.
|
|
5947
|
+
* @returns AsyncIterable of {@link DescribeManagedPrefixListsCommandOutput}.
|
|
5948
|
+
*/
|
|
5949
|
+
paginateDescribeManagedPrefixLists(args?: DescribeManagedPrefixListsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeManagedPrefixListsCommandOutput>;
|
|
5950
|
+
/**
|
|
5951
|
+
* @see {@link DescribeMovingAddressesCommand}
|
|
5952
|
+
* @param args - command input.
|
|
5953
|
+
* @param paginationConfig - optional pagination config.
|
|
5954
|
+
* @returns AsyncIterable of {@link DescribeMovingAddressesCommandOutput}.
|
|
5955
|
+
*/
|
|
5956
|
+
paginateDescribeMovingAddresses(args?: DescribeMovingAddressesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeMovingAddressesCommandOutput>;
|
|
5957
|
+
/**
|
|
5958
|
+
* @see {@link DescribeNatGatewaysCommand}
|
|
5959
|
+
* @param args - command input.
|
|
5960
|
+
* @param paginationConfig - optional pagination config.
|
|
5961
|
+
* @returns AsyncIterable of {@link DescribeNatGatewaysCommandOutput}.
|
|
5962
|
+
*/
|
|
5963
|
+
paginateDescribeNatGateways(args?: DescribeNatGatewaysCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeNatGatewaysCommandOutput>;
|
|
5964
|
+
/**
|
|
5965
|
+
* @see {@link DescribeNetworkAclsCommand}
|
|
5966
|
+
* @param args - command input.
|
|
5967
|
+
* @param paginationConfig - optional pagination config.
|
|
5968
|
+
* @returns AsyncIterable of {@link DescribeNetworkAclsCommandOutput}.
|
|
5969
|
+
*/
|
|
5970
|
+
paginateDescribeNetworkAcls(args?: DescribeNetworkAclsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeNetworkAclsCommandOutput>;
|
|
5971
|
+
/**
|
|
5972
|
+
* @see {@link DescribeNetworkInsightsAccessScopeAnalysesCommand}
|
|
5973
|
+
* @param args - command input.
|
|
5974
|
+
* @param paginationConfig - optional pagination config.
|
|
5975
|
+
* @returns AsyncIterable of {@link DescribeNetworkInsightsAccessScopeAnalysesCommandOutput}.
|
|
5976
|
+
*/
|
|
5977
|
+
paginateDescribeNetworkInsightsAccessScopeAnalyses(args?: DescribeNetworkInsightsAccessScopeAnalysesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeNetworkInsightsAccessScopeAnalysesCommandOutput>;
|
|
5978
|
+
/**
|
|
5979
|
+
* @see {@link DescribeNetworkInsightsAccessScopesCommand}
|
|
5980
|
+
* @param args - command input.
|
|
5981
|
+
* @param paginationConfig - optional pagination config.
|
|
5982
|
+
* @returns AsyncIterable of {@link DescribeNetworkInsightsAccessScopesCommandOutput}.
|
|
5983
|
+
*/
|
|
5984
|
+
paginateDescribeNetworkInsightsAccessScopes(args?: DescribeNetworkInsightsAccessScopesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeNetworkInsightsAccessScopesCommandOutput>;
|
|
5985
|
+
/**
|
|
5986
|
+
* @see {@link DescribeNetworkInsightsAnalysesCommand}
|
|
5987
|
+
* @param args - command input.
|
|
5988
|
+
* @param paginationConfig - optional pagination config.
|
|
5989
|
+
* @returns AsyncIterable of {@link DescribeNetworkInsightsAnalysesCommandOutput}.
|
|
5990
|
+
*/
|
|
5991
|
+
paginateDescribeNetworkInsightsAnalyses(args?: DescribeNetworkInsightsAnalysesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeNetworkInsightsAnalysesCommandOutput>;
|
|
5992
|
+
/**
|
|
5993
|
+
* @see {@link DescribeNetworkInsightsPathsCommand}
|
|
5994
|
+
* @param args - command input.
|
|
5995
|
+
* @param paginationConfig - optional pagination config.
|
|
5996
|
+
* @returns AsyncIterable of {@link DescribeNetworkInsightsPathsCommandOutput}.
|
|
5997
|
+
*/
|
|
5998
|
+
paginateDescribeNetworkInsightsPaths(args?: DescribeNetworkInsightsPathsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeNetworkInsightsPathsCommandOutput>;
|
|
5999
|
+
/**
|
|
6000
|
+
* @see {@link DescribeNetworkInterfacePermissionsCommand}
|
|
6001
|
+
* @param args - command input.
|
|
6002
|
+
* @param paginationConfig - optional pagination config.
|
|
6003
|
+
* @returns AsyncIterable of {@link DescribeNetworkInterfacePermissionsCommandOutput}.
|
|
6004
|
+
*/
|
|
6005
|
+
paginateDescribeNetworkInterfacePermissions(args?: DescribeNetworkInterfacePermissionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeNetworkInterfacePermissionsCommandOutput>;
|
|
6006
|
+
/**
|
|
6007
|
+
* @see {@link DescribeNetworkInterfacesCommand}
|
|
6008
|
+
* @param args - command input.
|
|
6009
|
+
* @param paginationConfig - optional pagination config.
|
|
6010
|
+
* @returns AsyncIterable of {@link DescribeNetworkInterfacesCommandOutput}.
|
|
6011
|
+
*/
|
|
6012
|
+
paginateDescribeNetworkInterfaces(args?: DescribeNetworkInterfacesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeNetworkInterfacesCommandOutput>;
|
|
6013
|
+
/**
|
|
6014
|
+
* @see {@link DescribePrefixListsCommand}
|
|
6015
|
+
* @param args - command input.
|
|
6016
|
+
* @param paginationConfig - optional pagination config.
|
|
6017
|
+
* @returns AsyncIterable of {@link DescribePrefixListsCommandOutput}.
|
|
6018
|
+
*/
|
|
6019
|
+
paginateDescribePrefixLists(args?: DescribePrefixListsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribePrefixListsCommandOutput>;
|
|
6020
|
+
/**
|
|
6021
|
+
* @see {@link DescribePrincipalIdFormatCommand}
|
|
6022
|
+
* @param args - command input.
|
|
6023
|
+
* @param paginationConfig - optional pagination config.
|
|
6024
|
+
* @returns AsyncIterable of {@link DescribePrincipalIdFormatCommandOutput}.
|
|
6025
|
+
*/
|
|
6026
|
+
paginateDescribePrincipalIdFormat(args?: DescribePrincipalIdFormatCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribePrincipalIdFormatCommandOutput>;
|
|
6027
|
+
/**
|
|
6028
|
+
* @see {@link DescribePublicIpv4PoolsCommand}
|
|
6029
|
+
* @param args - command input.
|
|
6030
|
+
* @param paginationConfig - optional pagination config.
|
|
6031
|
+
* @returns AsyncIterable of {@link DescribePublicIpv4PoolsCommandOutput}.
|
|
6032
|
+
*/
|
|
6033
|
+
paginateDescribePublicIpv4Pools(args?: DescribePublicIpv4PoolsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribePublicIpv4PoolsCommandOutput>;
|
|
6034
|
+
/**
|
|
6035
|
+
* @see {@link DescribeReplaceRootVolumeTasksCommand}
|
|
6036
|
+
* @param args - command input.
|
|
6037
|
+
* @param paginationConfig - optional pagination config.
|
|
6038
|
+
* @returns AsyncIterable of {@link DescribeReplaceRootVolumeTasksCommandOutput}.
|
|
6039
|
+
*/
|
|
6040
|
+
paginateDescribeReplaceRootVolumeTasks(args?: DescribeReplaceRootVolumeTasksCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeReplaceRootVolumeTasksCommandOutput>;
|
|
6041
|
+
/**
|
|
6042
|
+
* @see {@link DescribeReservedInstancesModificationsCommand}
|
|
6043
|
+
* @param args - command input.
|
|
6044
|
+
* @param paginationConfig - optional pagination config.
|
|
6045
|
+
* @returns AsyncIterable of {@link DescribeReservedInstancesModificationsCommandOutput}.
|
|
6046
|
+
*/
|
|
6047
|
+
paginateDescribeReservedInstancesModifications(args?: DescribeReservedInstancesModificationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeReservedInstancesModificationsCommandOutput>;
|
|
6048
|
+
/**
|
|
6049
|
+
* @see {@link DescribeReservedInstancesOfferingsCommand}
|
|
6050
|
+
* @param args - command input.
|
|
6051
|
+
* @param paginationConfig - optional pagination config.
|
|
6052
|
+
* @returns AsyncIterable of {@link DescribeReservedInstancesOfferingsCommandOutput}.
|
|
6053
|
+
*/
|
|
6054
|
+
paginateDescribeReservedInstancesOfferings(args?: DescribeReservedInstancesOfferingsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeReservedInstancesOfferingsCommandOutput>;
|
|
6055
|
+
/**
|
|
6056
|
+
* @see {@link DescribeRouteServerEndpointsCommand}
|
|
6057
|
+
* @param args - command input.
|
|
6058
|
+
* @param paginationConfig - optional pagination config.
|
|
6059
|
+
* @returns AsyncIterable of {@link DescribeRouteServerEndpointsCommandOutput}.
|
|
6060
|
+
*/
|
|
6061
|
+
paginateDescribeRouteServerEndpoints(args?: DescribeRouteServerEndpointsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeRouteServerEndpointsCommandOutput>;
|
|
6062
|
+
/**
|
|
6063
|
+
* @see {@link DescribeRouteServerPeersCommand}
|
|
6064
|
+
* @param args - command input.
|
|
6065
|
+
* @param paginationConfig - optional pagination config.
|
|
6066
|
+
* @returns AsyncIterable of {@link DescribeRouteServerPeersCommandOutput}.
|
|
6067
|
+
*/
|
|
6068
|
+
paginateDescribeRouteServerPeers(args?: DescribeRouteServerPeersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeRouteServerPeersCommandOutput>;
|
|
6069
|
+
/**
|
|
6070
|
+
* @see {@link DescribeRouteServersCommand}
|
|
6071
|
+
* @param args - command input.
|
|
6072
|
+
* @param paginationConfig - optional pagination config.
|
|
6073
|
+
* @returns AsyncIterable of {@link DescribeRouteServersCommandOutput}.
|
|
6074
|
+
*/
|
|
6075
|
+
paginateDescribeRouteServers(args?: DescribeRouteServersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeRouteServersCommandOutput>;
|
|
6076
|
+
/**
|
|
6077
|
+
* @see {@link DescribeRouteTablesCommand}
|
|
6078
|
+
* @param args - command input.
|
|
6079
|
+
* @param paginationConfig - optional pagination config.
|
|
6080
|
+
* @returns AsyncIterable of {@link DescribeRouteTablesCommandOutput}.
|
|
6081
|
+
*/
|
|
6082
|
+
paginateDescribeRouteTables(args?: DescribeRouteTablesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeRouteTablesCommandOutput>;
|
|
6083
|
+
/**
|
|
6084
|
+
* @see {@link DescribeScheduledInstanceAvailabilityCommand}
|
|
6085
|
+
* @param args - command input.
|
|
6086
|
+
* @param paginationConfig - optional pagination config.
|
|
6087
|
+
* @returns AsyncIterable of {@link DescribeScheduledInstanceAvailabilityCommandOutput}.
|
|
6088
|
+
*/
|
|
6089
|
+
paginateDescribeScheduledInstanceAvailability(args: DescribeScheduledInstanceAvailabilityCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeScheduledInstanceAvailabilityCommandOutput>;
|
|
6090
|
+
/**
|
|
6091
|
+
* @see {@link DescribeScheduledInstancesCommand}
|
|
6092
|
+
* @param args - command input.
|
|
6093
|
+
* @param paginationConfig - optional pagination config.
|
|
6094
|
+
* @returns AsyncIterable of {@link DescribeScheduledInstancesCommandOutput}.
|
|
6095
|
+
*/
|
|
6096
|
+
paginateDescribeScheduledInstances(args?: DescribeScheduledInstancesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeScheduledInstancesCommandOutput>;
|
|
6097
|
+
/**
|
|
6098
|
+
* @see {@link DescribeSecurityGroupRulesCommand}
|
|
6099
|
+
* @param args - command input.
|
|
6100
|
+
* @param paginationConfig - optional pagination config.
|
|
6101
|
+
* @returns AsyncIterable of {@link DescribeSecurityGroupRulesCommandOutput}.
|
|
6102
|
+
*/
|
|
6103
|
+
paginateDescribeSecurityGroupRules(args?: DescribeSecurityGroupRulesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeSecurityGroupRulesCommandOutput>;
|
|
6104
|
+
/**
|
|
6105
|
+
* @see {@link DescribeSecurityGroupsCommand}
|
|
6106
|
+
* @param args - command input.
|
|
6107
|
+
* @param paginationConfig - optional pagination config.
|
|
6108
|
+
* @returns AsyncIterable of {@link DescribeSecurityGroupsCommandOutput}.
|
|
6109
|
+
*/
|
|
6110
|
+
paginateDescribeSecurityGroups(args?: DescribeSecurityGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeSecurityGroupsCommandOutput>;
|
|
6111
|
+
/**
|
|
6112
|
+
* @see {@link DescribeSecurityGroupVpcAssociationsCommand}
|
|
6113
|
+
* @param args - command input.
|
|
6114
|
+
* @param paginationConfig - optional pagination config.
|
|
6115
|
+
* @returns AsyncIterable of {@link DescribeSecurityGroupVpcAssociationsCommandOutput}.
|
|
6116
|
+
*/
|
|
6117
|
+
paginateDescribeSecurityGroupVpcAssociations(args?: DescribeSecurityGroupVpcAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeSecurityGroupVpcAssociationsCommandOutput>;
|
|
6118
|
+
/**
|
|
6119
|
+
* @see {@link DescribeSnapshotsCommand}
|
|
6120
|
+
* @param args - command input.
|
|
6121
|
+
* @param paginationConfig - optional pagination config.
|
|
6122
|
+
* @returns AsyncIterable of {@link DescribeSnapshotsCommandOutput}.
|
|
6123
|
+
*/
|
|
6124
|
+
paginateDescribeSnapshots(args?: DescribeSnapshotsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeSnapshotsCommandOutput>;
|
|
6125
|
+
/**
|
|
6126
|
+
* @see {@link DescribeSnapshotTierStatusCommand}
|
|
6127
|
+
* @param args - command input.
|
|
6128
|
+
* @param paginationConfig - optional pagination config.
|
|
6129
|
+
* @returns AsyncIterable of {@link DescribeSnapshotTierStatusCommandOutput}.
|
|
6130
|
+
*/
|
|
6131
|
+
paginateDescribeSnapshotTierStatus(args?: DescribeSnapshotTierStatusCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeSnapshotTierStatusCommandOutput>;
|
|
6132
|
+
/**
|
|
6133
|
+
* @see {@link DescribeSpotFleetRequestsCommand}
|
|
6134
|
+
* @param args - command input.
|
|
6135
|
+
* @param paginationConfig - optional pagination config.
|
|
6136
|
+
* @returns AsyncIterable of {@link DescribeSpotFleetRequestsCommandOutput}.
|
|
6137
|
+
*/
|
|
6138
|
+
paginateDescribeSpotFleetRequests(args?: DescribeSpotFleetRequestsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeSpotFleetRequestsCommandOutput>;
|
|
6139
|
+
/**
|
|
6140
|
+
* @see {@link DescribeSpotInstanceRequestsCommand}
|
|
6141
|
+
* @param args - command input.
|
|
6142
|
+
* @param paginationConfig - optional pagination config.
|
|
6143
|
+
* @returns AsyncIterable of {@link DescribeSpotInstanceRequestsCommandOutput}.
|
|
6144
|
+
*/
|
|
6145
|
+
paginateDescribeSpotInstanceRequests(args?: DescribeSpotInstanceRequestsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeSpotInstanceRequestsCommandOutput>;
|
|
6146
|
+
/**
|
|
6147
|
+
* @see {@link DescribeSpotPriceHistoryCommand}
|
|
6148
|
+
* @param args - command input.
|
|
6149
|
+
* @param paginationConfig - optional pagination config.
|
|
6150
|
+
* @returns AsyncIterable of {@link DescribeSpotPriceHistoryCommandOutput}.
|
|
6151
|
+
*/
|
|
6152
|
+
paginateDescribeSpotPriceHistory(args?: DescribeSpotPriceHistoryCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeSpotPriceHistoryCommandOutput>;
|
|
6153
|
+
/**
|
|
6154
|
+
* @see {@link DescribeStaleSecurityGroupsCommand}
|
|
6155
|
+
* @param args - command input.
|
|
6156
|
+
* @param paginationConfig - optional pagination config.
|
|
6157
|
+
* @returns AsyncIterable of {@link DescribeStaleSecurityGroupsCommandOutput}.
|
|
6158
|
+
*/
|
|
6159
|
+
paginateDescribeStaleSecurityGroups(args: DescribeStaleSecurityGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeStaleSecurityGroupsCommandOutput>;
|
|
6160
|
+
/**
|
|
6161
|
+
* @see {@link DescribeStoreImageTasksCommand}
|
|
6162
|
+
* @param args - command input.
|
|
6163
|
+
* @param paginationConfig - optional pagination config.
|
|
6164
|
+
* @returns AsyncIterable of {@link DescribeStoreImageTasksCommandOutput}.
|
|
6165
|
+
*/
|
|
6166
|
+
paginateDescribeStoreImageTasks(args?: DescribeStoreImageTasksCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeStoreImageTasksCommandOutput>;
|
|
6167
|
+
/**
|
|
6168
|
+
* @see {@link DescribeSubnetsCommand}
|
|
6169
|
+
* @param args - command input.
|
|
6170
|
+
* @param paginationConfig - optional pagination config.
|
|
6171
|
+
* @returns AsyncIterable of {@link DescribeSubnetsCommandOutput}.
|
|
6172
|
+
*/
|
|
6173
|
+
paginateDescribeSubnets(args?: DescribeSubnetsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeSubnetsCommandOutput>;
|
|
6174
|
+
/**
|
|
6175
|
+
* @see {@link DescribeTagsCommand}
|
|
6176
|
+
* @param args - command input.
|
|
6177
|
+
* @param paginationConfig - optional pagination config.
|
|
6178
|
+
* @returns AsyncIterable of {@link DescribeTagsCommandOutput}.
|
|
6179
|
+
*/
|
|
6180
|
+
paginateDescribeTags(args?: DescribeTagsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeTagsCommandOutput>;
|
|
6181
|
+
/**
|
|
6182
|
+
* @see {@link DescribeTrafficMirrorFiltersCommand}
|
|
6183
|
+
* @param args - command input.
|
|
6184
|
+
* @param paginationConfig - optional pagination config.
|
|
6185
|
+
* @returns AsyncIterable of {@link DescribeTrafficMirrorFiltersCommandOutput}.
|
|
6186
|
+
*/
|
|
6187
|
+
paginateDescribeTrafficMirrorFilters(args?: DescribeTrafficMirrorFiltersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeTrafficMirrorFiltersCommandOutput>;
|
|
6188
|
+
/**
|
|
6189
|
+
* @see {@link DescribeTrafficMirrorSessionsCommand}
|
|
6190
|
+
* @param args - command input.
|
|
6191
|
+
* @param paginationConfig - optional pagination config.
|
|
6192
|
+
* @returns AsyncIterable of {@link DescribeTrafficMirrorSessionsCommandOutput}.
|
|
6193
|
+
*/
|
|
6194
|
+
paginateDescribeTrafficMirrorSessions(args?: DescribeTrafficMirrorSessionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeTrafficMirrorSessionsCommandOutput>;
|
|
6195
|
+
/**
|
|
6196
|
+
* @see {@link DescribeTrafficMirrorTargetsCommand}
|
|
6197
|
+
* @param args - command input.
|
|
6198
|
+
* @param paginationConfig - optional pagination config.
|
|
6199
|
+
* @returns AsyncIterable of {@link DescribeTrafficMirrorTargetsCommandOutput}.
|
|
6200
|
+
*/
|
|
6201
|
+
paginateDescribeTrafficMirrorTargets(args?: DescribeTrafficMirrorTargetsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeTrafficMirrorTargetsCommandOutput>;
|
|
6202
|
+
/**
|
|
6203
|
+
* @see {@link DescribeTransitGatewayAttachmentsCommand}
|
|
6204
|
+
* @param args - command input.
|
|
6205
|
+
* @param paginationConfig - optional pagination config.
|
|
6206
|
+
* @returns AsyncIterable of {@link DescribeTransitGatewayAttachmentsCommandOutput}.
|
|
6207
|
+
*/
|
|
6208
|
+
paginateDescribeTransitGatewayAttachments(args?: DescribeTransitGatewayAttachmentsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeTransitGatewayAttachmentsCommandOutput>;
|
|
6209
|
+
/**
|
|
6210
|
+
* @see {@link DescribeTransitGatewayConnectPeersCommand}
|
|
6211
|
+
* @param args - command input.
|
|
6212
|
+
* @param paginationConfig - optional pagination config.
|
|
6213
|
+
* @returns AsyncIterable of {@link DescribeTransitGatewayConnectPeersCommandOutput}.
|
|
6214
|
+
*/
|
|
6215
|
+
paginateDescribeTransitGatewayConnectPeers(args?: DescribeTransitGatewayConnectPeersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeTransitGatewayConnectPeersCommandOutput>;
|
|
6216
|
+
/**
|
|
6217
|
+
* @see {@link DescribeTransitGatewayConnectsCommand}
|
|
6218
|
+
* @param args - command input.
|
|
6219
|
+
* @param paginationConfig - optional pagination config.
|
|
6220
|
+
* @returns AsyncIterable of {@link DescribeTransitGatewayConnectsCommandOutput}.
|
|
6221
|
+
*/
|
|
6222
|
+
paginateDescribeTransitGatewayConnects(args?: DescribeTransitGatewayConnectsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeTransitGatewayConnectsCommandOutput>;
|
|
6223
|
+
/**
|
|
6224
|
+
* @see {@link DescribeTransitGatewayMulticastDomainsCommand}
|
|
6225
|
+
* @param args - command input.
|
|
6226
|
+
* @param paginationConfig - optional pagination config.
|
|
6227
|
+
* @returns AsyncIterable of {@link DescribeTransitGatewayMulticastDomainsCommandOutput}.
|
|
6228
|
+
*/
|
|
6229
|
+
paginateDescribeTransitGatewayMulticastDomains(args?: DescribeTransitGatewayMulticastDomainsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeTransitGatewayMulticastDomainsCommandOutput>;
|
|
6230
|
+
/**
|
|
6231
|
+
* @see {@link DescribeTransitGatewayPeeringAttachmentsCommand}
|
|
6232
|
+
* @param args - command input.
|
|
6233
|
+
* @param paginationConfig - optional pagination config.
|
|
6234
|
+
* @returns AsyncIterable of {@link DescribeTransitGatewayPeeringAttachmentsCommandOutput}.
|
|
6235
|
+
*/
|
|
6236
|
+
paginateDescribeTransitGatewayPeeringAttachments(args?: DescribeTransitGatewayPeeringAttachmentsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeTransitGatewayPeeringAttachmentsCommandOutput>;
|
|
6237
|
+
/**
|
|
6238
|
+
* @see {@link DescribeTransitGatewayPolicyTablesCommand}
|
|
6239
|
+
* @param args - command input.
|
|
6240
|
+
* @param paginationConfig - optional pagination config.
|
|
6241
|
+
* @returns AsyncIterable of {@link DescribeTransitGatewayPolicyTablesCommandOutput}.
|
|
6242
|
+
*/
|
|
6243
|
+
paginateDescribeTransitGatewayPolicyTables(args?: DescribeTransitGatewayPolicyTablesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeTransitGatewayPolicyTablesCommandOutput>;
|
|
6244
|
+
/**
|
|
6245
|
+
* @see {@link DescribeTransitGatewayRouteTableAnnouncementsCommand}
|
|
6246
|
+
* @param args - command input.
|
|
6247
|
+
* @param paginationConfig - optional pagination config.
|
|
6248
|
+
* @returns AsyncIterable of {@link DescribeTransitGatewayRouteTableAnnouncementsCommandOutput}.
|
|
6249
|
+
*/
|
|
6250
|
+
paginateDescribeTransitGatewayRouteTableAnnouncements(args?: DescribeTransitGatewayRouteTableAnnouncementsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeTransitGatewayRouteTableAnnouncementsCommandOutput>;
|
|
6251
|
+
/**
|
|
6252
|
+
* @see {@link DescribeTransitGatewayRouteTablesCommand}
|
|
6253
|
+
* @param args - command input.
|
|
6254
|
+
* @param paginationConfig - optional pagination config.
|
|
6255
|
+
* @returns AsyncIterable of {@link DescribeTransitGatewayRouteTablesCommandOutput}.
|
|
6256
|
+
*/
|
|
6257
|
+
paginateDescribeTransitGatewayRouteTables(args?: DescribeTransitGatewayRouteTablesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeTransitGatewayRouteTablesCommandOutput>;
|
|
6258
|
+
/**
|
|
6259
|
+
* @see {@link DescribeTransitGatewaysCommand}
|
|
6260
|
+
* @param args - command input.
|
|
6261
|
+
* @param paginationConfig - optional pagination config.
|
|
6262
|
+
* @returns AsyncIterable of {@link DescribeTransitGatewaysCommandOutput}.
|
|
6263
|
+
*/
|
|
6264
|
+
paginateDescribeTransitGateways(args?: DescribeTransitGatewaysCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeTransitGatewaysCommandOutput>;
|
|
6265
|
+
/**
|
|
6266
|
+
* @see {@link DescribeTransitGatewayVpcAttachmentsCommand}
|
|
6267
|
+
* @param args - command input.
|
|
6268
|
+
* @param paginationConfig - optional pagination config.
|
|
6269
|
+
* @returns AsyncIterable of {@link DescribeTransitGatewayVpcAttachmentsCommandOutput}.
|
|
6270
|
+
*/
|
|
6271
|
+
paginateDescribeTransitGatewayVpcAttachments(args?: DescribeTransitGatewayVpcAttachmentsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeTransitGatewayVpcAttachmentsCommandOutput>;
|
|
6272
|
+
/**
|
|
6273
|
+
* @see {@link DescribeTrunkInterfaceAssociationsCommand}
|
|
6274
|
+
* @param args - command input.
|
|
6275
|
+
* @param paginationConfig - optional pagination config.
|
|
6276
|
+
* @returns AsyncIterable of {@link DescribeTrunkInterfaceAssociationsCommandOutput}.
|
|
6277
|
+
*/
|
|
6278
|
+
paginateDescribeTrunkInterfaceAssociations(args?: DescribeTrunkInterfaceAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeTrunkInterfaceAssociationsCommandOutput>;
|
|
6279
|
+
/**
|
|
6280
|
+
* @see {@link DescribeVerifiedAccessEndpointsCommand}
|
|
6281
|
+
* @param args - command input.
|
|
6282
|
+
* @param paginationConfig - optional pagination config.
|
|
6283
|
+
* @returns AsyncIterable of {@link DescribeVerifiedAccessEndpointsCommandOutput}.
|
|
6284
|
+
*/
|
|
6285
|
+
paginateDescribeVerifiedAccessEndpoints(args?: DescribeVerifiedAccessEndpointsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeVerifiedAccessEndpointsCommandOutput>;
|
|
6286
|
+
/**
|
|
6287
|
+
* @see {@link DescribeVerifiedAccessGroupsCommand}
|
|
6288
|
+
* @param args - command input.
|
|
6289
|
+
* @param paginationConfig - optional pagination config.
|
|
6290
|
+
* @returns AsyncIterable of {@link DescribeVerifiedAccessGroupsCommandOutput}.
|
|
6291
|
+
*/
|
|
6292
|
+
paginateDescribeVerifiedAccessGroups(args?: DescribeVerifiedAccessGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeVerifiedAccessGroupsCommandOutput>;
|
|
6293
|
+
/**
|
|
6294
|
+
* @see {@link DescribeVerifiedAccessInstanceLoggingConfigurationsCommand}
|
|
6295
|
+
* @param args - command input.
|
|
6296
|
+
* @param paginationConfig - optional pagination config.
|
|
6297
|
+
* @returns AsyncIterable of {@link DescribeVerifiedAccessInstanceLoggingConfigurationsCommandOutput}.
|
|
6298
|
+
*/
|
|
6299
|
+
paginateDescribeVerifiedAccessInstanceLoggingConfigurations(args?: DescribeVerifiedAccessInstanceLoggingConfigurationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeVerifiedAccessInstanceLoggingConfigurationsCommandOutput>;
|
|
6300
|
+
/**
|
|
6301
|
+
* @see {@link DescribeVerifiedAccessInstancesCommand}
|
|
6302
|
+
* @param args - command input.
|
|
6303
|
+
* @param paginationConfig - optional pagination config.
|
|
6304
|
+
* @returns AsyncIterable of {@link DescribeVerifiedAccessInstancesCommandOutput}.
|
|
6305
|
+
*/
|
|
6306
|
+
paginateDescribeVerifiedAccessInstances(args?: DescribeVerifiedAccessInstancesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeVerifiedAccessInstancesCommandOutput>;
|
|
6307
|
+
/**
|
|
6308
|
+
* @see {@link DescribeVerifiedAccessTrustProvidersCommand}
|
|
6309
|
+
* @param args - command input.
|
|
6310
|
+
* @param paginationConfig - optional pagination config.
|
|
6311
|
+
* @returns AsyncIterable of {@link DescribeVerifiedAccessTrustProvidersCommandOutput}.
|
|
6312
|
+
*/
|
|
6313
|
+
paginateDescribeVerifiedAccessTrustProviders(args?: DescribeVerifiedAccessTrustProvidersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeVerifiedAccessTrustProvidersCommandOutput>;
|
|
6314
|
+
/**
|
|
6315
|
+
* @see {@link DescribeVolumesCommand}
|
|
6316
|
+
* @param args - command input.
|
|
6317
|
+
* @param paginationConfig - optional pagination config.
|
|
6318
|
+
* @returns AsyncIterable of {@link DescribeVolumesCommandOutput}.
|
|
6319
|
+
*/
|
|
6320
|
+
paginateDescribeVolumes(args?: DescribeVolumesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeVolumesCommandOutput>;
|
|
6321
|
+
/**
|
|
6322
|
+
* @see {@link DescribeVolumesModificationsCommand}
|
|
6323
|
+
* @param args - command input.
|
|
6324
|
+
* @param paginationConfig - optional pagination config.
|
|
6325
|
+
* @returns AsyncIterable of {@link DescribeVolumesModificationsCommandOutput}.
|
|
6326
|
+
*/
|
|
6327
|
+
paginateDescribeVolumesModifications(args?: DescribeVolumesModificationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeVolumesModificationsCommandOutput>;
|
|
6328
|
+
/**
|
|
6329
|
+
* @see {@link DescribeVolumeStatusCommand}
|
|
6330
|
+
* @param args - command input.
|
|
6331
|
+
* @param paginationConfig - optional pagination config.
|
|
6332
|
+
* @returns AsyncIterable of {@link DescribeVolumeStatusCommandOutput}.
|
|
6333
|
+
*/
|
|
6334
|
+
paginateDescribeVolumeStatus(args?: DescribeVolumeStatusCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeVolumeStatusCommandOutput>;
|
|
6335
|
+
/**
|
|
6336
|
+
* @see {@link DescribeVpcClassicLinkDnsSupportCommand}
|
|
6337
|
+
* @param args - command input.
|
|
6338
|
+
* @param paginationConfig - optional pagination config.
|
|
6339
|
+
* @returns AsyncIterable of {@link DescribeVpcClassicLinkDnsSupportCommandOutput}.
|
|
6340
|
+
*/
|
|
6341
|
+
paginateDescribeVpcClassicLinkDnsSupport(args?: DescribeVpcClassicLinkDnsSupportCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeVpcClassicLinkDnsSupportCommandOutput>;
|
|
6342
|
+
/**
|
|
6343
|
+
* @see {@link DescribeVpcEndpointConnectionNotificationsCommand}
|
|
6344
|
+
* @param args - command input.
|
|
6345
|
+
* @param paginationConfig - optional pagination config.
|
|
6346
|
+
* @returns AsyncIterable of {@link DescribeVpcEndpointConnectionNotificationsCommandOutput}.
|
|
6347
|
+
*/
|
|
6348
|
+
paginateDescribeVpcEndpointConnectionNotifications(args?: DescribeVpcEndpointConnectionNotificationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeVpcEndpointConnectionNotificationsCommandOutput>;
|
|
6349
|
+
/**
|
|
6350
|
+
* @see {@link DescribeVpcEndpointConnectionsCommand}
|
|
6351
|
+
* @param args - command input.
|
|
6352
|
+
* @param paginationConfig - optional pagination config.
|
|
6353
|
+
* @returns AsyncIterable of {@link DescribeVpcEndpointConnectionsCommandOutput}.
|
|
6354
|
+
*/
|
|
6355
|
+
paginateDescribeVpcEndpointConnections(args?: DescribeVpcEndpointConnectionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeVpcEndpointConnectionsCommandOutput>;
|
|
6356
|
+
/**
|
|
6357
|
+
* @see {@link DescribeVpcEndpointsCommand}
|
|
6358
|
+
* @param args - command input.
|
|
6359
|
+
* @param paginationConfig - optional pagination config.
|
|
6360
|
+
* @returns AsyncIterable of {@link DescribeVpcEndpointsCommandOutput}.
|
|
6361
|
+
*/
|
|
6362
|
+
paginateDescribeVpcEndpoints(args?: DescribeVpcEndpointsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeVpcEndpointsCommandOutput>;
|
|
6363
|
+
/**
|
|
6364
|
+
* @see {@link DescribeVpcEndpointServiceConfigurationsCommand}
|
|
6365
|
+
* @param args - command input.
|
|
6366
|
+
* @param paginationConfig - optional pagination config.
|
|
6367
|
+
* @returns AsyncIterable of {@link DescribeVpcEndpointServiceConfigurationsCommandOutput}.
|
|
6368
|
+
*/
|
|
6369
|
+
paginateDescribeVpcEndpointServiceConfigurations(args?: DescribeVpcEndpointServiceConfigurationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeVpcEndpointServiceConfigurationsCommandOutput>;
|
|
6370
|
+
/**
|
|
6371
|
+
* @see {@link DescribeVpcEndpointServicePermissionsCommand}
|
|
6372
|
+
* @param args - command input.
|
|
6373
|
+
* @param paginationConfig - optional pagination config.
|
|
6374
|
+
* @returns AsyncIterable of {@link DescribeVpcEndpointServicePermissionsCommandOutput}.
|
|
6375
|
+
*/
|
|
6376
|
+
paginateDescribeVpcEndpointServicePermissions(args: DescribeVpcEndpointServicePermissionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeVpcEndpointServicePermissionsCommandOutput>;
|
|
6377
|
+
/**
|
|
6378
|
+
* @see {@link DescribeVpcPeeringConnectionsCommand}
|
|
6379
|
+
* @param args - command input.
|
|
6380
|
+
* @param paginationConfig - optional pagination config.
|
|
6381
|
+
* @returns AsyncIterable of {@link DescribeVpcPeeringConnectionsCommandOutput}.
|
|
6382
|
+
*/
|
|
6383
|
+
paginateDescribeVpcPeeringConnections(args?: DescribeVpcPeeringConnectionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeVpcPeeringConnectionsCommandOutput>;
|
|
6384
|
+
/**
|
|
6385
|
+
* @see {@link DescribeVpcsCommand}
|
|
6386
|
+
* @param args - command input.
|
|
6387
|
+
* @param paginationConfig - optional pagination config.
|
|
6388
|
+
* @returns AsyncIterable of {@link DescribeVpcsCommandOutput}.
|
|
6389
|
+
*/
|
|
6390
|
+
paginateDescribeVpcs(args?: DescribeVpcsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeVpcsCommandOutput>;
|
|
6391
|
+
/**
|
|
6392
|
+
* @see {@link DescribeVpnConcentratorsCommand}
|
|
6393
|
+
* @param args - command input.
|
|
6394
|
+
* @param paginationConfig - optional pagination config.
|
|
6395
|
+
* @returns AsyncIterable of {@link DescribeVpnConcentratorsCommandOutput}.
|
|
6396
|
+
*/
|
|
6397
|
+
paginateDescribeVpnConcentrators(args?: DescribeVpnConcentratorsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeVpnConcentratorsCommandOutput>;
|
|
6398
|
+
/**
|
|
6399
|
+
* @see {@link GetAssociatedIpv6PoolCidrsCommand}
|
|
6400
|
+
* @param args - command input.
|
|
6401
|
+
* @param paginationConfig - optional pagination config.
|
|
6402
|
+
* @returns AsyncIterable of {@link GetAssociatedIpv6PoolCidrsCommandOutput}.
|
|
6403
|
+
*/
|
|
6404
|
+
paginateGetAssociatedIpv6PoolCidrs(args: GetAssociatedIpv6PoolCidrsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetAssociatedIpv6PoolCidrsCommandOutput>;
|
|
6405
|
+
/**
|
|
6406
|
+
* @see {@link GetAwsNetworkPerformanceDataCommand}
|
|
6407
|
+
* @param args - command input.
|
|
6408
|
+
* @param paginationConfig - optional pagination config.
|
|
6409
|
+
* @returns AsyncIterable of {@link GetAwsNetworkPerformanceDataCommandOutput}.
|
|
6410
|
+
*/
|
|
6411
|
+
paginateGetAwsNetworkPerformanceData(args?: GetAwsNetworkPerformanceDataCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetAwsNetworkPerformanceDataCommandOutput>;
|
|
6412
|
+
/**
|
|
6413
|
+
* @see {@link GetCapacityManagerMetricDataCommand}
|
|
6414
|
+
* @param args - command input.
|
|
6415
|
+
* @param paginationConfig - optional pagination config.
|
|
6416
|
+
* @returns AsyncIterable of {@link GetCapacityManagerMetricDataCommandOutput}.
|
|
6417
|
+
*/
|
|
6418
|
+
paginateGetCapacityManagerMetricData(args: GetCapacityManagerMetricDataCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetCapacityManagerMetricDataCommandOutput>;
|
|
6419
|
+
/**
|
|
6420
|
+
* @see {@link GetCapacityManagerMetricDimensionsCommand}
|
|
6421
|
+
* @param args - command input.
|
|
6422
|
+
* @param paginationConfig - optional pagination config.
|
|
6423
|
+
* @returns AsyncIterable of {@link GetCapacityManagerMetricDimensionsCommandOutput}.
|
|
6424
|
+
*/
|
|
6425
|
+
paginateGetCapacityManagerMetricDimensions(args: GetCapacityManagerMetricDimensionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetCapacityManagerMetricDimensionsCommandOutput>;
|
|
6426
|
+
/**
|
|
6427
|
+
* @see {@link GetGroupsForCapacityReservationCommand}
|
|
6428
|
+
* @param args - command input.
|
|
6429
|
+
* @param paginationConfig - optional pagination config.
|
|
6430
|
+
* @returns AsyncIterable of {@link GetGroupsForCapacityReservationCommandOutput}.
|
|
6431
|
+
*/
|
|
6432
|
+
paginateGetGroupsForCapacityReservation(args: GetGroupsForCapacityReservationCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetGroupsForCapacityReservationCommandOutput>;
|
|
6433
|
+
/**
|
|
6434
|
+
* @see {@link GetInstanceTypesFromInstanceRequirementsCommand}
|
|
6435
|
+
* @param args - command input.
|
|
6436
|
+
* @param paginationConfig - optional pagination config.
|
|
6437
|
+
* @returns AsyncIterable of {@link GetInstanceTypesFromInstanceRequirementsCommandOutput}.
|
|
6438
|
+
*/
|
|
6439
|
+
paginateGetInstanceTypesFromInstanceRequirements(args: GetInstanceTypesFromInstanceRequirementsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetInstanceTypesFromInstanceRequirementsCommandOutput>;
|
|
6440
|
+
/**
|
|
6441
|
+
* @see {@link GetIpamAddressHistoryCommand}
|
|
6442
|
+
* @param args - command input.
|
|
6443
|
+
* @param paginationConfig - optional pagination config.
|
|
6444
|
+
* @returns AsyncIterable of {@link GetIpamAddressHistoryCommandOutput}.
|
|
6445
|
+
*/
|
|
6446
|
+
paginateGetIpamAddressHistory(args: GetIpamAddressHistoryCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetIpamAddressHistoryCommandOutput>;
|
|
6447
|
+
/**
|
|
6448
|
+
* @see {@link GetIpamDiscoveredAccountsCommand}
|
|
6449
|
+
* @param args - command input.
|
|
6450
|
+
* @param paginationConfig - optional pagination config.
|
|
6451
|
+
* @returns AsyncIterable of {@link GetIpamDiscoveredAccountsCommandOutput}.
|
|
6452
|
+
*/
|
|
6453
|
+
paginateGetIpamDiscoveredAccounts(args: GetIpamDiscoveredAccountsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetIpamDiscoveredAccountsCommandOutput>;
|
|
6454
|
+
/**
|
|
6455
|
+
* @see {@link GetIpamDiscoveredResourceCidrsCommand}
|
|
6456
|
+
* @param args - command input.
|
|
6457
|
+
* @param paginationConfig - optional pagination config.
|
|
6458
|
+
* @returns AsyncIterable of {@link GetIpamDiscoveredResourceCidrsCommandOutput}.
|
|
6459
|
+
*/
|
|
6460
|
+
paginateGetIpamDiscoveredResourceCidrs(args: GetIpamDiscoveredResourceCidrsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetIpamDiscoveredResourceCidrsCommandOutput>;
|
|
6461
|
+
/**
|
|
6462
|
+
* @see {@link GetIpamPoolAllocationsCommand}
|
|
6463
|
+
* @param args - command input.
|
|
6464
|
+
* @param paginationConfig - optional pagination config.
|
|
6465
|
+
* @returns AsyncIterable of {@link GetIpamPoolAllocationsCommandOutput}.
|
|
6466
|
+
*/
|
|
6467
|
+
paginateGetIpamPoolAllocations(args: GetIpamPoolAllocationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetIpamPoolAllocationsCommandOutput>;
|
|
6468
|
+
/**
|
|
6469
|
+
* @see {@link GetIpamPoolCidrsCommand}
|
|
6470
|
+
* @param args - command input.
|
|
6471
|
+
* @param paginationConfig - optional pagination config.
|
|
6472
|
+
* @returns AsyncIterable of {@link GetIpamPoolCidrsCommandOutput}.
|
|
6473
|
+
*/
|
|
6474
|
+
paginateGetIpamPoolCidrs(args: GetIpamPoolCidrsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetIpamPoolCidrsCommandOutput>;
|
|
6475
|
+
/**
|
|
6476
|
+
* @see {@link GetIpamPrefixListResolverRulesCommand}
|
|
6477
|
+
* @param args - command input.
|
|
6478
|
+
* @param paginationConfig - optional pagination config.
|
|
6479
|
+
* @returns AsyncIterable of {@link GetIpamPrefixListResolverRulesCommandOutput}.
|
|
6480
|
+
*/
|
|
6481
|
+
paginateGetIpamPrefixListResolverRules(args: GetIpamPrefixListResolverRulesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetIpamPrefixListResolverRulesCommandOutput>;
|
|
6482
|
+
/**
|
|
6483
|
+
* @see {@link GetIpamPrefixListResolverVersionEntriesCommand}
|
|
6484
|
+
* @param args - command input.
|
|
6485
|
+
* @param paginationConfig - optional pagination config.
|
|
6486
|
+
* @returns AsyncIterable of {@link GetIpamPrefixListResolverVersionEntriesCommandOutput}.
|
|
6487
|
+
*/
|
|
6488
|
+
paginateGetIpamPrefixListResolverVersionEntries(args: GetIpamPrefixListResolverVersionEntriesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetIpamPrefixListResolverVersionEntriesCommandOutput>;
|
|
6489
|
+
/**
|
|
6490
|
+
* @see {@link GetIpamPrefixListResolverVersionsCommand}
|
|
6491
|
+
* @param args - command input.
|
|
6492
|
+
* @param paginationConfig - optional pagination config.
|
|
6493
|
+
* @returns AsyncIterable of {@link GetIpamPrefixListResolverVersionsCommandOutput}.
|
|
6494
|
+
*/
|
|
6495
|
+
paginateGetIpamPrefixListResolverVersions(args: GetIpamPrefixListResolverVersionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetIpamPrefixListResolverVersionsCommandOutput>;
|
|
6496
|
+
/**
|
|
6497
|
+
* @see {@link GetIpamResourceCidrsCommand}
|
|
6498
|
+
* @param args - command input.
|
|
6499
|
+
* @param paginationConfig - optional pagination config.
|
|
6500
|
+
* @returns AsyncIterable of {@link GetIpamResourceCidrsCommandOutput}.
|
|
6501
|
+
*/
|
|
6502
|
+
paginateGetIpamResourceCidrs(args: GetIpamResourceCidrsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetIpamResourceCidrsCommandOutput>;
|
|
6503
|
+
/**
|
|
6504
|
+
* @see {@link GetManagedPrefixListAssociationsCommand}
|
|
6505
|
+
* @param args - command input.
|
|
6506
|
+
* @param paginationConfig - optional pagination config.
|
|
6507
|
+
* @returns AsyncIterable of {@link GetManagedPrefixListAssociationsCommandOutput}.
|
|
6508
|
+
*/
|
|
6509
|
+
paginateGetManagedPrefixListAssociations(args: GetManagedPrefixListAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetManagedPrefixListAssociationsCommandOutput>;
|
|
6510
|
+
/**
|
|
6511
|
+
* @see {@link GetManagedPrefixListEntriesCommand}
|
|
6512
|
+
* @param args - command input.
|
|
6513
|
+
* @param paginationConfig - optional pagination config.
|
|
6514
|
+
* @returns AsyncIterable of {@link GetManagedPrefixListEntriesCommandOutput}.
|
|
6515
|
+
*/
|
|
6516
|
+
paginateGetManagedPrefixListEntries(args: GetManagedPrefixListEntriesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetManagedPrefixListEntriesCommandOutput>;
|
|
6517
|
+
/**
|
|
6518
|
+
* @see {@link GetNetworkInsightsAccessScopeAnalysisFindingsCommand}
|
|
6519
|
+
* @param args - command input.
|
|
6520
|
+
* @param paginationConfig - optional pagination config.
|
|
6521
|
+
* @returns AsyncIterable of {@link GetNetworkInsightsAccessScopeAnalysisFindingsCommandOutput}.
|
|
6522
|
+
*/
|
|
6523
|
+
paginateGetNetworkInsightsAccessScopeAnalysisFindings(args: GetNetworkInsightsAccessScopeAnalysisFindingsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetNetworkInsightsAccessScopeAnalysisFindingsCommandOutput>;
|
|
6524
|
+
/**
|
|
6525
|
+
* @see {@link GetSecurityGroupsForVpcCommand}
|
|
6526
|
+
* @param args - command input.
|
|
6527
|
+
* @param paginationConfig - optional pagination config.
|
|
6528
|
+
* @returns AsyncIterable of {@link GetSecurityGroupsForVpcCommandOutput}.
|
|
6529
|
+
*/
|
|
6530
|
+
paginateGetSecurityGroupsForVpc(args: GetSecurityGroupsForVpcCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetSecurityGroupsForVpcCommandOutput>;
|
|
6531
|
+
/**
|
|
6532
|
+
* @see {@link GetSpotPlacementScoresCommand}
|
|
6533
|
+
* @param args - command input.
|
|
6534
|
+
* @param paginationConfig - optional pagination config.
|
|
6535
|
+
* @returns AsyncIterable of {@link GetSpotPlacementScoresCommandOutput}.
|
|
6536
|
+
*/
|
|
6537
|
+
paginateGetSpotPlacementScores(args: GetSpotPlacementScoresCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetSpotPlacementScoresCommandOutput>;
|
|
6538
|
+
/**
|
|
6539
|
+
* @see {@link GetTransitGatewayAttachmentPropagationsCommand}
|
|
6540
|
+
* @param args - command input.
|
|
6541
|
+
* @param paginationConfig - optional pagination config.
|
|
6542
|
+
* @returns AsyncIterable of {@link GetTransitGatewayAttachmentPropagationsCommandOutput}.
|
|
6543
|
+
*/
|
|
6544
|
+
paginateGetTransitGatewayAttachmentPropagations(args: GetTransitGatewayAttachmentPropagationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetTransitGatewayAttachmentPropagationsCommandOutput>;
|
|
6545
|
+
/**
|
|
6546
|
+
* @see {@link GetTransitGatewayMulticastDomainAssociationsCommand}
|
|
6547
|
+
* @param args - command input.
|
|
6548
|
+
* @param paginationConfig - optional pagination config.
|
|
6549
|
+
* @returns AsyncIterable of {@link GetTransitGatewayMulticastDomainAssociationsCommandOutput}.
|
|
6550
|
+
*/
|
|
6551
|
+
paginateGetTransitGatewayMulticastDomainAssociations(args: GetTransitGatewayMulticastDomainAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetTransitGatewayMulticastDomainAssociationsCommandOutput>;
|
|
6552
|
+
/**
|
|
6553
|
+
* @see {@link GetTransitGatewayPolicyTableAssociationsCommand}
|
|
6554
|
+
* @param args - command input.
|
|
6555
|
+
* @param paginationConfig - optional pagination config.
|
|
6556
|
+
* @returns AsyncIterable of {@link GetTransitGatewayPolicyTableAssociationsCommandOutput}.
|
|
6557
|
+
*/
|
|
6558
|
+
paginateGetTransitGatewayPolicyTableAssociations(args: GetTransitGatewayPolicyTableAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetTransitGatewayPolicyTableAssociationsCommandOutput>;
|
|
6559
|
+
/**
|
|
6560
|
+
* @see {@link GetTransitGatewayPrefixListReferencesCommand}
|
|
6561
|
+
* @param args - command input.
|
|
6562
|
+
* @param paginationConfig - optional pagination config.
|
|
6563
|
+
* @returns AsyncIterable of {@link GetTransitGatewayPrefixListReferencesCommandOutput}.
|
|
6564
|
+
*/
|
|
6565
|
+
paginateGetTransitGatewayPrefixListReferences(args: GetTransitGatewayPrefixListReferencesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetTransitGatewayPrefixListReferencesCommandOutput>;
|
|
6566
|
+
/**
|
|
6567
|
+
* @see {@link GetTransitGatewayRouteTableAssociationsCommand}
|
|
6568
|
+
* @param args - command input.
|
|
6569
|
+
* @param paginationConfig - optional pagination config.
|
|
6570
|
+
* @returns AsyncIterable of {@link GetTransitGatewayRouteTableAssociationsCommandOutput}.
|
|
6571
|
+
*/
|
|
6572
|
+
paginateGetTransitGatewayRouteTableAssociations(args: GetTransitGatewayRouteTableAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetTransitGatewayRouteTableAssociationsCommandOutput>;
|
|
6573
|
+
/**
|
|
6574
|
+
* @see {@link GetTransitGatewayRouteTablePropagationsCommand}
|
|
6575
|
+
* @param args - command input.
|
|
6576
|
+
* @param paginationConfig - optional pagination config.
|
|
6577
|
+
* @returns AsyncIterable of {@link GetTransitGatewayRouteTablePropagationsCommandOutput}.
|
|
6578
|
+
*/
|
|
6579
|
+
paginateGetTransitGatewayRouteTablePropagations(args: GetTransitGatewayRouteTablePropagationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetTransitGatewayRouteTablePropagationsCommandOutput>;
|
|
6580
|
+
/**
|
|
6581
|
+
* @see {@link GetVpnConnectionDeviceTypesCommand}
|
|
6582
|
+
* @param args - command input.
|
|
6583
|
+
* @param paginationConfig - optional pagination config.
|
|
6584
|
+
* @returns AsyncIterable of {@link GetVpnConnectionDeviceTypesCommandOutput}.
|
|
6585
|
+
*/
|
|
6586
|
+
paginateGetVpnConnectionDeviceTypes(args?: GetVpnConnectionDeviceTypesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetVpnConnectionDeviceTypesCommandOutput>;
|
|
6587
|
+
/**
|
|
6588
|
+
* @see {@link ListImagesInRecycleBinCommand}
|
|
6589
|
+
* @param args - command input.
|
|
6590
|
+
* @param paginationConfig - optional pagination config.
|
|
6591
|
+
* @returns AsyncIterable of {@link ListImagesInRecycleBinCommandOutput}.
|
|
6592
|
+
*/
|
|
6593
|
+
paginateListImagesInRecycleBin(args?: ListImagesInRecycleBinCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListImagesInRecycleBinCommandOutput>;
|
|
6594
|
+
/**
|
|
6595
|
+
* @see {@link ListSnapshotsInRecycleBinCommand}
|
|
6596
|
+
* @param args - command input.
|
|
6597
|
+
* @param paginationConfig - optional pagination config.
|
|
6598
|
+
* @returns AsyncIterable of {@link ListSnapshotsInRecycleBinCommandOutput}.
|
|
6599
|
+
*/
|
|
6600
|
+
paginateListSnapshotsInRecycleBin(args?: ListSnapshotsInRecycleBinCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListSnapshotsInRecycleBinCommandOutput>;
|
|
6601
|
+
/**
|
|
6602
|
+
* @see {@link SearchLocalGatewayRoutesCommand}
|
|
6603
|
+
* @param args - command input.
|
|
6604
|
+
* @param paginationConfig - optional pagination config.
|
|
6605
|
+
* @returns AsyncIterable of {@link SearchLocalGatewayRoutesCommandOutput}.
|
|
6606
|
+
*/
|
|
6607
|
+
paginateSearchLocalGatewayRoutes(args: SearchLocalGatewayRoutesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchLocalGatewayRoutesCommandOutput>;
|
|
6608
|
+
/**
|
|
6609
|
+
* @see {@link SearchTransitGatewayMulticastGroupsCommand}
|
|
6610
|
+
* @param args - command input.
|
|
6611
|
+
* @param paginationConfig - optional pagination config.
|
|
6612
|
+
* @returns AsyncIterable of {@link SearchTransitGatewayMulticastGroupsCommandOutput}.
|
|
6613
|
+
*/
|
|
6614
|
+
paginateSearchTransitGatewayMulticastGroups(args: SearchTransitGatewayMulticastGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchTransitGatewayMulticastGroupsCommandOutput>;
|
|
6615
|
+
/**
|
|
6616
|
+
* @see {@link SearchTransitGatewayRoutesCommand}
|
|
6617
|
+
* @param args - command input.
|
|
6618
|
+
* @param paginationConfig - optional pagination config.
|
|
6619
|
+
* @returns AsyncIterable of {@link SearchTransitGatewayRoutesCommandOutput}.
|
|
6620
|
+
*/
|
|
6621
|
+
paginateSearchTransitGatewayRoutes(args: SearchTransitGatewayRoutesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchTransitGatewayRoutesCommandOutput>;
|
|
6622
|
+
/**
|
|
6623
|
+
* @see {@link DescribeBundleTasksCommand}
|
|
6624
|
+
* @param args - command input.
|
|
6625
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6626
|
+
*/
|
|
6627
|
+
waitUntilBundleTaskComplete(args: DescribeBundleTasksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6628
|
+
/**
|
|
6629
|
+
* @see {@link DescribeConversionTasksCommand}
|
|
6630
|
+
* @param args - command input.
|
|
6631
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6632
|
+
*/
|
|
6633
|
+
waitUntilConversionTaskCancelled(args: DescribeConversionTasksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6634
|
+
/**
|
|
6635
|
+
* @see {@link DescribeConversionTasksCommand}
|
|
6636
|
+
* @param args - command input.
|
|
6637
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6638
|
+
*/
|
|
6639
|
+
waitUntilConversionTaskCompleted(args: DescribeConversionTasksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6640
|
+
/**
|
|
6641
|
+
* @see {@link DescribeConversionTasksCommand}
|
|
6642
|
+
* @param args - command input.
|
|
6643
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6644
|
+
*/
|
|
6645
|
+
waitUntilConversionTaskDeleted(args: DescribeConversionTasksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6646
|
+
/**
|
|
6647
|
+
* @see {@link DescribeCustomerGatewaysCommand}
|
|
6648
|
+
* @param args - command input.
|
|
6649
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6650
|
+
*/
|
|
6651
|
+
waitUntilCustomerGatewayAvailable(args: DescribeCustomerGatewaysCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6652
|
+
/**
|
|
6653
|
+
* @see {@link DescribeExportTasksCommand}
|
|
6654
|
+
* @param args - command input.
|
|
6655
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6656
|
+
*/
|
|
6657
|
+
waitUntilExportTaskCancelled(args: DescribeExportTasksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6658
|
+
/**
|
|
6659
|
+
* @see {@link DescribeExportTasksCommand}
|
|
6660
|
+
* @param args - command input.
|
|
6661
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6662
|
+
*/
|
|
6663
|
+
waitUntilExportTaskCompleted(args: DescribeExportTasksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6664
|
+
/**
|
|
6665
|
+
* @see {@link DescribeImagesCommand}
|
|
6666
|
+
* @param args - command input.
|
|
6667
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6668
|
+
*/
|
|
6669
|
+
waitUntilImageAvailable(args: DescribeImagesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6670
|
+
/**
|
|
6671
|
+
* @see {@link DescribeImagesCommand}
|
|
6672
|
+
* @param args - command input.
|
|
6673
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6674
|
+
*/
|
|
6675
|
+
waitUntilImageExists(args: DescribeImagesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6676
|
+
/**
|
|
6677
|
+
* @see {@link DescribeImageUsageReportsCommand}
|
|
6678
|
+
* @param args - command input.
|
|
6679
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6680
|
+
*/
|
|
6681
|
+
waitUntilImageUsageReportAvailable(args: DescribeImageUsageReportsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6682
|
+
/**
|
|
6683
|
+
* @see {@link DescribeImportSnapshotTasksCommand}
|
|
6684
|
+
* @param args - command input.
|
|
6685
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6686
|
+
*/
|
|
6687
|
+
waitUntilSnapshotImported(args: DescribeImportSnapshotTasksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6688
|
+
/**
|
|
6689
|
+
* @see {@link DescribeInstancesCommand}
|
|
6690
|
+
* @param args - command input.
|
|
6691
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6692
|
+
*/
|
|
6693
|
+
waitUntilInstanceExists(args: DescribeInstancesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6694
|
+
/**
|
|
6695
|
+
* @see {@link DescribeInstancesCommand}
|
|
6696
|
+
* @param args - command input.
|
|
6697
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6698
|
+
*/
|
|
6699
|
+
waitUntilInstanceRunning(args: DescribeInstancesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6700
|
+
/**
|
|
6701
|
+
* @see {@link DescribeInstancesCommand}
|
|
6702
|
+
* @param args - command input.
|
|
6703
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6704
|
+
*/
|
|
6705
|
+
waitUntilInstanceStopped(args: DescribeInstancesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6706
|
+
/**
|
|
6707
|
+
* @see {@link DescribeInstancesCommand}
|
|
6708
|
+
* @param args - command input.
|
|
6709
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6710
|
+
*/
|
|
6711
|
+
waitUntilInstanceTerminated(args: DescribeInstancesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6712
|
+
/**
|
|
6713
|
+
* @see {@link DescribeInstanceStatusCommand}
|
|
6714
|
+
* @param args - command input.
|
|
6715
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6716
|
+
*/
|
|
6717
|
+
waitUntilInstanceStatusOk(args: DescribeInstanceStatusCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6718
|
+
/**
|
|
6719
|
+
* @see {@link DescribeInstanceStatusCommand}
|
|
6720
|
+
* @param args - command input.
|
|
6721
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6722
|
+
*/
|
|
6723
|
+
waitUntilSystemStatusOk(args: DescribeInstanceStatusCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6724
|
+
/**
|
|
6725
|
+
* @see {@link DescribeInternetGatewaysCommand}
|
|
6726
|
+
* @param args - command input.
|
|
6727
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6728
|
+
*/
|
|
6729
|
+
waitUntilInternetGatewayExists(args: DescribeInternetGatewaysCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6730
|
+
/**
|
|
6731
|
+
* @see {@link DescribeKeyPairsCommand}
|
|
6732
|
+
* @param args - command input.
|
|
6733
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6734
|
+
*/
|
|
6735
|
+
waitUntilKeyPairExists(args: DescribeKeyPairsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6736
|
+
/**
|
|
6737
|
+
* @see {@link DescribeNatGatewaysCommand}
|
|
6738
|
+
* @param args - command input.
|
|
6739
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6740
|
+
*/
|
|
6741
|
+
waitUntilNatGatewayAvailable(args: DescribeNatGatewaysCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6742
|
+
/**
|
|
6743
|
+
* @see {@link DescribeNatGatewaysCommand}
|
|
6744
|
+
* @param args - command input.
|
|
6745
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6746
|
+
*/
|
|
6747
|
+
waitUntilNatGatewayDeleted(args: DescribeNatGatewaysCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6748
|
+
/**
|
|
6749
|
+
* @see {@link DescribeNetworkInterfacesCommand}
|
|
6750
|
+
* @param args - command input.
|
|
6751
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6752
|
+
*/
|
|
6753
|
+
waitUntilNetworkInterfaceAvailable(args: DescribeNetworkInterfacesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6754
|
+
/**
|
|
6755
|
+
* @see {@link DescribeSecurityGroupsCommand}
|
|
6756
|
+
* @param args - command input.
|
|
6757
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6758
|
+
*/
|
|
6759
|
+
waitUntilSecurityGroupExists(args: DescribeSecurityGroupsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6760
|
+
/**
|
|
6761
|
+
* @see {@link DescribeSecurityGroupVpcAssociationsCommand}
|
|
6762
|
+
* @param args - command input.
|
|
6763
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6764
|
+
*/
|
|
6765
|
+
waitUntilSecurityGroupVpcAssociationAssociated(args: DescribeSecurityGroupVpcAssociationsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6766
|
+
/**
|
|
6767
|
+
* @see {@link DescribeSecurityGroupVpcAssociationsCommand}
|
|
6768
|
+
* @param args - command input.
|
|
6769
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6770
|
+
*/
|
|
6771
|
+
waitUntilSecurityGroupVpcAssociationDisassociated(args: DescribeSecurityGroupVpcAssociationsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6772
|
+
/**
|
|
6773
|
+
* @see {@link DescribeSnapshotsCommand}
|
|
6774
|
+
* @param args - command input.
|
|
6775
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6776
|
+
*/
|
|
6777
|
+
waitUntilSnapshotCompleted(args: DescribeSnapshotsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6778
|
+
/**
|
|
6779
|
+
* @see {@link DescribeSpotInstanceRequestsCommand}
|
|
6780
|
+
* @param args - command input.
|
|
6781
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6782
|
+
*/
|
|
6783
|
+
waitUntilSpotInstanceRequestFulfilled(args: DescribeSpotInstanceRequestsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6784
|
+
/**
|
|
6785
|
+
* @see {@link DescribeStoreImageTasksCommand}
|
|
6786
|
+
* @param args - command input.
|
|
6787
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6788
|
+
*/
|
|
6789
|
+
waitUntilStoreImageTaskComplete(args: DescribeStoreImageTasksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6790
|
+
/**
|
|
6791
|
+
* @see {@link DescribeSubnetsCommand}
|
|
6792
|
+
* @param args - command input.
|
|
6793
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6794
|
+
*/
|
|
6795
|
+
waitUntilSubnetAvailable(args: DescribeSubnetsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6796
|
+
/**
|
|
6797
|
+
* @see {@link DescribeVolumesCommand}
|
|
6798
|
+
* @param args - command input.
|
|
6799
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6800
|
+
*/
|
|
6801
|
+
waitUntilVolumeAvailable(args: DescribeVolumesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6802
|
+
/**
|
|
6803
|
+
* @see {@link DescribeVolumesCommand}
|
|
6804
|
+
* @param args - command input.
|
|
6805
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6806
|
+
*/
|
|
6807
|
+
waitUntilVolumeDeleted(args: DescribeVolumesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6808
|
+
/**
|
|
6809
|
+
* @see {@link DescribeVolumesCommand}
|
|
6810
|
+
* @param args - command input.
|
|
6811
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6812
|
+
*/
|
|
6813
|
+
waitUntilVolumeInUse(args: DescribeVolumesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6814
|
+
/**
|
|
6815
|
+
* @see {@link DescribeVpcPeeringConnectionsCommand}
|
|
6816
|
+
* @param args - command input.
|
|
6817
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6818
|
+
*/
|
|
6819
|
+
waitUntilVpcPeeringConnectionDeleted(args: DescribeVpcPeeringConnectionsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6820
|
+
/**
|
|
6821
|
+
* @see {@link DescribeVpcPeeringConnectionsCommand}
|
|
6822
|
+
* @param args - command input.
|
|
6823
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6824
|
+
*/
|
|
6825
|
+
waitUntilVpcPeeringConnectionExists(args: DescribeVpcPeeringConnectionsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6826
|
+
/**
|
|
6827
|
+
* @see {@link DescribeVpcsCommand}
|
|
6828
|
+
* @param args - command input.
|
|
6829
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6830
|
+
*/
|
|
6831
|
+
waitUntilVpcAvailable(args: DescribeVpcsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6832
|
+
/**
|
|
6833
|
+
* @see {@link DescribeVpcsCommand}
|
|
6834
|
+
* @param args - command input.
|
|
6835
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6836
|
+
*/
|
|
6837
|
+
waitUntilVpcExists(args: DescribeVpcsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6838
|
+
/**
|
|
6839
|
+
* @see {@link DescribeVpnConnectionsCommand}
|
|
6840
|
+
* @param args - command input.
|
|
6841
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6842
|
+
*/
|
|
6843
|
+
waitUntilVpnConnectionAvailable(args: DescribeVpnConnectionsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6844
|
+
/**
|
|
6845
|
+
* @see {@link DescribeVpnConnectionsCommand}
|
|
6846
|
+
* @param args - command input.
|
|
6847
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6848
|
+
*/
|
|
6849
|
+
waitUntilVpnConnectionDeleted(args: DescribeVpnConnectionsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
6850
|
+
/**
|
|
6851
|
+
* @see {@link GetPasswordDataCommand}
|
|
6852
|
+
* @param args - command input.
|
|
6853
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6854
|
+
*/
|
|
6855
|
+
waitUntilPasswordDataAvailable(args: GetPasswordDataCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult>;
|
|
5473
6856
|
}
|
|
5474
6857
|
/**
|
|
5475
6858
|
* <fullname>Amazon Elastic Compute Cloud</fullname>
|