@aws-sdk/client-ec2 3.976.0 → 3.978.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 +1296 -1017
- package/dist-es/EC2.js +411 -1
- package/dist-es/models/enums.js +68 -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 +68 -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 +68 -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 +10 -10
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
WaiterConfiguration,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
import { WaiterResult } from "@smithy/util-waiter";
|
|
2
8
|
import {
|
|
3
9
|
AcceptAddressTransferCommandInput,
|
|
4
10
|
AcceptAddressTransferCommandOutput,
|
|
@@ -14046,5 +14052,1504 @@ export interface EC2 {
|
|
|
14046
14052
|
options: __HttpHandlerOptions,
|
|
14047
14053
|
cb: (err: any, data?: WithdrawByoipCidrCommandOutput) => void
|
|
14048
14054
|
): void;
|
|
14055
|
+
paginateDescribeAddressesAttribute(
|
|
14056
|
+
args?: DescribeAddressesAttributeCommandInput,
|
|
14057
|
+
paginationConfig?: Pick<
|
|
14058
|
+
PaginationConfiguration,
|
|
14059
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14060
|
+
>
|
|
14061
|
+
): Paginator<DescribeAddressesAttributeCommandOutput>;
|
|
14062
|
+
paginateDescribeAddressTransfers(
|
|
14063
|
+
args?: DescribeAddressTransfersCommandInput,
|
|
14064
|
+
paginationConfig?: Pick<
|
|
14065
|
+
PaginationConfiguration,
|
|
14066
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14067
|
+
>
|
|
14068
|
+
): Paginator<DescribeAddressTransfersCommandOutput>;
|
|
14069
|
+
paginateDescribeAwsNetworkPerformanceMetricSubscriptions(
|
|
14070
|
+
args?: DescribeAwsNetworkPerformanceMetricSubscriptionsCommandInput,
|
|
14071
|
+
paginationConfig?: Pick<
|
|
14072
|
+
PaginationConfiguration,
|
|
14073
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14074
|
+
>
|
|
14075
|
+
): Paginator<DescribeAwsNetworkPerformanceMetricSubscriptionsCommandOutput>;
|
|
14076
|
+
paginateDescribeByoipCidrs(
|
|
14077
|
+
args: DescribeByoipCidrsCommandInput,
|
|
14078
|
+
paginationConfig?: Pick<
|
|
14079
|
+
PaginationConfiguration,
|
|
14080
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14081
|
+
>
|
|
14082
|
+
): Paginator<DescribeByoipCidrsCommandOutput>;
|
|
14083
|
+
paginateDescribeCapacityBlockExtensionHistory(
|
|
14084
|
+
args?: DescribeCapacityBlockExtensionHistoryCommandInput,
|
|
14085
|
+
paginationConfig?: Pick<
|
|
14086
|
+
PaginationConfiguration,
|
|
14087
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14088
|
+
>
|
|
14089
|
+
): Paginator<DescribeCapacityBlockExtensionHistoryCommandOutput>;
|
|
14090
|
+
paginateDescribeCapacityBlockExtensionOfferings(
|
|
14091
|
+
args: DescribeCapacityBlockExtensionOfferingsCommandInput,
|
|
14092
|
+
paginationConfig?: Pick<
|
|
14093
|
+
PaginationConfiguration,
|
|
14094
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14095
|
+
>
|
|
14096
|
+
): Paginator<DescribeCapacityBlockExtensionOfferingsCommandOutput>;
|
|
14097
|
+
paginateDescribeCapacityBlockOfferings(
|
|
14098
|
+
args: DescribeCapacityBlockOfferingsCommandInput,
|
|
14099
|
+
paginationConfig?: Pick<
|
|
14100
|
+
PaginationConfiguration,
|
|
14101
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14102
|
+
>
|
|
14103
|
+
): Paginator<DescribeCapacityBlockOfferingsCommandOutput>;
|
|
14104
|
+
paginateDescribeCapacityBlocks(
|
|
14105
|
+
args?: DescribeCapacityBlocksCommandInput,
|
|
14106
|
+
paginationConfig?: Pick<
|
|
14107
|
+
PaginationConfiguration,
|
|
14108
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14109
|
+
>
|
|
14110
|
+
): Paginator<DescribeCapacityBlocksCommandOutput>;
|
|
14111
|
+
paginateDescribeCapacityBlockStatus(
|
|
14112
|
+
args?: DescribeCapacityBlockStatusCommandInput,
|
|
14113
|
+
paginationConfig?: Pick<
|
|
14114
|
+
PaginationConfiguration,
|
|
14115
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14116
|
+
>
|
|
14117
|
+
): Paginator<DescribeCapacityBlockStatusCommandOutput>;
|
|
14118
|
+
paginateDescribeCapacityManagerDataExports(
|
|
14119
|
+
args?: DescribeCapacityManagerDataExportsCommandInput,
|
|
14120
|
+
paginationConfig?: Pick<
|
|
14121
|
+
PaginationConfiguration,
|
|
14122
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14123
|
+
>
|
|
14124
|
+
): Paginator<DescribeCapacityManagerDataExportsCommandOutput>;
|
|
14125
|
+
paginateDescribeCapacityReservationBillingRequests(
|
|
14126
|
+
args: DescribeCapacityReservationBillingRequestsCommandInput,
|
|
14127
|
+
paginationConfig?: Pick<
|
|
14128
|
+
PaginationConfiguration,
|
|
14129
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14130
|
+
>
|
|
14131
|
+
): Paginator<DescribeCapacityReservationBillingRequestsCommandOutput>;
|
|
14132
|
+
paginateDescribeCapacityReservationFleets(
|
|
14133
|
+
args?: DescribeCapacityReservationFleetsCommandInput,
|
|
14134
|
+
paginationConfig?: Pick<
|
|
14135
|
+
PaginationConfiguration,
|
|
14136
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14137
|
+
>
|
|
14138
|
+
): Paginator<DescribeCapacityReservationFleetsCommandOutput>;
|
|
14139
|
+
paginateDescribeCapacityReservations(
|
|
14140
|
+
args?: DescribeCapacityReservationsCommandInput,
|
|
14141
|
+
paginationConfig?: Pick<
|
|
14142
|
+
PaginationConfiguration,
|
|
14143
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14144
|
+
>
|
|
14145
|
+
): Paginator<DescribeCapacityReservationsCommandOutput>;
|
|
14146
|
+
paginateDescribeCarrierGateways(
|
|
14147
|
+
args?: DescribeCarrierGatewaysCommandInput,
|
|
14148
|
+
paginationConfig?: Pick<
|
|
14149
|
+
PaginationConfiguration,
|
|
14150
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14151
|
+
>
|
|
14152
|
+
): Paginator<DescribeCarrierGatewaysCommandOutput>;
|
|
14153
|
+
paginateDescribeClassicLinkInstances(
|
|
14154
|
+
args?: DescribeClassicLinkInstancesCommandInput,
|
|
14155
|
+
paginationConfig?: Pick<
|
|
14156
|
+
PaginationConfiguration,
|
|
14157
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14158
|
+
>
|
|
14159
|
+
): Paginator<DescribeClassicLinkInstancesCommandOutput>;
|
|
14160
|
+
paginateDescribeClientVpnAuthorizationRules(
|
|
14161
|
+
args: DescribeClientVpnAuthorizationRulesCommandInput,
|
|
14162
|
+
paginationConfig?: Pick<
|
|
14163
|
+
PaginationConfiguration,
|
|
14164
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14165
|
+
>
|
|
14166
|
+
): Paginator<DescribeClientVpnAuthorizationRulesCommandOutput>;
|
|
14167
|
+
paginateDescribeClientVpnConnections(
|
|
14168
|
+
args: DescribeClientVpnConnectionsCommandInput,
|
|
14169
|
+
paginationConfig?: Pick<
|
|
14170
|
+
PaginationConfiguration,
|
|
14171
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14172
|
+
>
|
|
14173
|
+
): Paginator<DescribeClientVpnConnectionsCommandOutput>;
|
|
14174
|
+
paginateDescribeClientVpnEndpoints(
|
|
14175
|
+
args?: DescribeClientVpnEndpointsCommandInput,
|
|
14176
|
+
paginationConfig?: Pick<
|
|
14177
|
+
PaginationConfiguration,
|
|
14178
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14179
|
+
>
|
|
14180
|
+
): Paginator<DescribeClientVpnEndpointsCommandOutput>;
|
|
14181
|
+
paginateDescribeClientVpnRoutes(
|
|
14182
|
+
args: DescribeClientVpnRoutesCommandInput,
|
|
14183
|
+
paginationConfig?: Pick<
|
|
14184
|
+
PaginationConfiguration,
|
|
14185
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14186
|
+
>
|
|
14187
|
+
): Paginator<DescribeClientVpnRoutesCommandOutput>;
|
|
14188
|
+
paginateDescribeClientVpnTargetNetworks(
|
|
14189
|
+
args: DescribeClientVpnTargetNetworksCommandInput,
|
|
14190
|
+
paginationConfig?: Pick<
|
|
14191
|
+
PaginationConfiguration,
|
|
14192
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14193
|
+
>
|
|
14194
|
+
): Paginator<DescribeClientVpnTargetNetworksCommandOutput>;
|
|
14195
|
+
paginateDescribeCoipPools(
|
|
14196
|
+
args?: DescribeCoipPoolsCommandInput,
|
|
14197
|
+
paginationConfig?: Pick<
|
|
14198
|
+
PaginationConfiguration,
|
|
14199
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14200
|
+
>
|
|
14201
|
+
): Paginator<DescribeCoipPoolsCommandOutput>;
|
|
14202
|
+
paginateDescribeDhcpOptions(
|
|
14203
|
+
args?: DescribeDhcpOptionsCommandInput,
|
|
14204
|
+
paginationConfig?: Pick<
|
|
14205
|
+
PaginationConfiguration,
|
|
14206
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14207
|
+
>
|
|
14208
|
+
): Paginator<DescribeDhcpOptionsCommandOutput>;
|
|
14209
|
+
paginateDescribeEgressOnlyInternetGateways(
|
|
14210
|
+
args?: DescribeEgressOnlyInternetGatewaysCommandInput,
|
|
14211
|
+
paginationConfig?: Pick<
|
|
14212
|
+
PaginationConfiguration,
|
|
14213
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14214
|
+
>
|
|
14215
|
+
): Paginator<DescribeEgressOnlyInternetGatewaysCommandOutput>;
|
|
14216
|
+
paginateDescribeExportImageTasks(
|
|
14217
|
+
args?: DescribeExportImageTasksCommandInput,
|
|
14218
|
+
paginationConfig?: Pick<
|
|
14219
|
+
PaginationConfiguration,
|
|
14220
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14221
|
+
>
|
|
14222
|
+
): Paginator<DescribeExportImageTasksCommandOutput>;
|
|
14223
|
+
paginateDescribeFastLaunchImages(
|
|
14224
|
+
args?: DescribeFastLaunchImagesCommandInput,
|
|
14225
|
+
paginationConfig?: Pick<
|
|
14226
|
+
PaginationConfiguration,
|
|
14227
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14228
|
+
>
|
|
14229
|
+
): Paginator<DescribeFastLaunchImagesCommandOutput>;
|
|
14230
|
+
paginateDescribeFastSnapshotRestores(
|
|
14231
|
+
args?: DescribeFastSnapshotRestoresCommandInput,
|
|
14232
|
+
paginationConfig?: Pick<
|
|
14233
|
+
PaginationConfiguration,
|
|
14234
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14235
|
+
>
|
|
14236
|
+
): Paginator<DescribeFastSnapshotRestoresCommandOutput>;
|
|
14237
|
+
paginateDescribeFleets(
|
|
14238
|
+
args?: DescribeFleetsCommandInput,
|
|
14239
|
+
paginationConfig?: Pick<
|
|
14240
|
+
PaginationConfiguration,
|
|
14241
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14242
|
+
>
|
|
14243
|
+
): Paginator<DescribeFleetsCommandOutput>;
|
|
14244
|
+
paginateDescribeFlowLogs(
|
|
14245
|
+
args?: DescribeFlowLogsCommandInput,
|
|
14246
|
+
paginationConfig?: Pick<
|
|
14247
|
+
PaginationConfiguration,
|
|
14248
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14249
|
+
>
|
|
14250
|
+
): Paginator<DescribeFlowLogsCommandOutput>;
|
|
14251
|
+
paginateDescribeFpgaImages(
|
|
14252
|
+
args?: DescribeFpgaImagesCommandInput,
|
|
14253
|
+
paginationConfig?: Pick<
|
|
14254
|
+
PaginationConfiguration,
|
|
14255
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14256
|
+
>
|
|
14257
|
+
): Paginator<DescribeFpgaImagesCommandOutput>;
|
|
14258
|
+
paginateDescribeHostReservationOfferings(
|
|
14259
|
+
args?: DescribeHostReservationOfferingsCommandInput,
|
|
14260
|
+
paginationConfig?: Pick<
|
|
14261
|
+
PaginationConfiguration,
|
|
14262
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14263
|
+
>
|
|
14264
|
+
): Paginator<DescribeHostReservationOfferingsCommandOutput>;
|
|
14265
|
+
paginateDescribeHostReservations(
|
|
14266
|
+
args?: DescribeHostReservationsCommandInput,
|
|
14267
|
+
paginationConfig?: Pick<
|
|
14268
|
+
PaginationConfiguration,
|
|
14269
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14270
|
+
>
|
|
14271
|
+
): Paginator<DescribeHostReservationsCommandOutput>;
|
|
14272
|
+
paginateDescribeHosts(
|
|
14273
|
+
args?: DescribeHostsCommandInput,
|
|
14274
|
+
paginationConfig?: Pick<
|
|
14275
|
+
PaginationConfiguration,
|
|
14276
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14277
|
+
>
|
|
14278
|
+
): Paginator<DescribeHostsCommandOutput>;
|
|
14279
|
+
paginateDescribeIamInstanceProfileAssociations(
|
|
14280
|
+
args?: DescribeIamInstanceProfileAssociationsCommandInput,
|
|
14281
|
+
paginationConfig?: Pick<
|
|
14282
|
+
PaginationConfiguration,
|
|
14283
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14284
|
+
>
|
|
14285
|
+
): Paginator<DescribeIamInstanceProfileAssociationsCommandOutput>;
|
|
14286
|
+
paginateDescribeImageReferences(
|
|
14287
|
+
args: DescribeImageReferencesCommandInput,
|
|
14288
|
+
paginationConfig?: Pick<
|
|
14289
|
+
PaginationConfiguration,
|
|
14290
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14291
|
+
>
|
|
14292
|
+
): Paginator<DescribeImageReferencesCommandOutput>;
|
|
14293
|
+
paginateDescribeImages(
|
|
14294
|
+
args?: DescribeImagesCommandInput,
|
|
14295
|
+
paginationConfig?: Pick<
|
|
14296
|
+
PaginationConfiguration,
|
|
14297
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14298
|
+
>
|
|
14299
|
+
): Paginator<DescribeImagesCommandOutput>;
|
|
14300
|
+
paginateDescribeImageUsageReportEntries(
|
|
14301
|
+
args?: DescribeImageUsageReportEntriesCommandInput,
|
|
14302
|
+
paginationConfig?: Pick<
|
|
14303
|
+
PaginationConfiguration,
|
|
14304
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14305
|
+
>
|
|
14306
|
+
): Paginator<DescribeImageUsageReportEntriesCommandOutput>;
|
|
14307
|
+
paginateDescribeImageUsageReports(
|
|
14308
|
+
args?: DescribeImageUsageReportsCommandInput,
|
|
14309
|
+
paginationConfig?: Pick<
|
|
14310
|
+
PaginationConfiguration,
|
|
14311
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14312
|
+
>
|
|
14313
|
+
): Paginator<DescribeImageUsageReportsCommandOutput>;
|
|
14314
|
+
paginateDescribeImportImageTasks(
|
|
14315
|
+
args?: DescribeImportImageTasksCommandInput,
|
|
14316
|
+
paginationConfig?: Pick<
|
|
14317
|
+
PaginationConfiguration,
|
|
14318
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14319
|
+
>
|
|
14320
|
+
): Paginator<DescribeImportImageTasksCommandOutput>;
|
|
14321
|
+
paginateDescribeImportSnapshotTasks(
|
|
14322
|
+
args?: DescribeImportSnapshotTasksCommandInput,
|
|
14323
|
+
paginationConfig?: Pick<
|
|
14324
|
+
PaginationConfiguration,
|
|
14325
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14326
|
+
>
|
|
14327
|
+
): Paginator<DescribeImportSnapshotTasksCommandOutput>;
|
|
14328
|
+
paginateDescribeInstanceConnectEndpoints(
|
|
14329
|
+
args?: DescribeInstanceConnectEndpointsCommandInput,
|
|
14330
|
+
paginationConfig?: Pick<
|
|
14331
|
+
PaginationConfiguration,
|
|
14332
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14333
|
+
>
|
|
14334
|
+
): Paginator<DescribeInstanceConnectEndpointsCommandOutput>;
|
|
14335
|
+
paginateDescribeInstanceCreditSpecifications(
|
|
14336
|
+
args?: DescribeInstanceCreditSpecificationsCommandInput,
|
|
14337
|
+
paginationConfig?: Pick<
|
|
14338
|
+
PaginationConfiguration,
|
|
14339
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14340
|
+
>
|
|
14341
|
+
): Paginator<DescribeInstanceCreditSpecificationsCommandOutput>;
|
|
14342
|
+
paginateDescribeInstanceEventWindows(
|
|
14343
|
+
args?: DescribeInstanceEventWindowsCommandInput,
|
|
14344
|
+
paginationConfig?: Pick<
|
|
14345
|
+
PaginationConfiguration,
|
|
14346
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14347
|
+
>
|
|
14348
|
+
): Paginator<DescribeInstanceEventWindowsCommandOutput>;
|
|
14349
|
+
paginateDescribeInstanceImageMetadata(
|
|
14350
|
+
args?: DescribeInstanceImageMetadataCommandInput,
|
|
14351
|
+
paginationConfig?: Pick<
|
|
14352
|
+
PaginationConfiguration,
|
|
14353
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14354
|
+
>
|
|
14355
|
+
): Paginator<DescribeInstanceImageMetadataCommandOutput>;
|
|
14356
|
+
paginateDescribeInstances(
|
|
14357
|
+
args?: DescribeInstancesCommandInput,
|
|
14358
|
+
paginationConfig?: Pick<
|
|
14359
|
+
PaginationConfiguration,
|
|
14360
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14361
|
+
>
|
|
14362
|
+
): Paginator<DescribeInstancesCommandOutput>;
|
|
14363
|
+
paginateDescribeInstanceStatus(
|
|
14364
|
+
args?: DescribeInstanceStatusCommandInput,
|
|
14365
|
+
paginationConfig?: Pick<
|
|
14366
|
+
PaginationConfiguration,
|
|
14367
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14368
|
+
>
|
|
14369
|
+
): Paginator<DescribeInstanceStatusCommandOutput>;
|
|
14370
|
+
paginateDescribeInstanceTopology(
|
|
14371
|
+
args?: DescribeInstanceTopologyCommandInput,
|
|
14372
|
+
paginationConfig?: Pick<
|
|
14373
|
+
PaginationConfiguration,
|
|
14374
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14375
|
+
>
|
|
14376
|
+
): Paginator<DescribeInstanceTopologyCommandOutput>;
|
|
14377
|
+
paginateDescribeInstanceTypeOfferings(
|
|
14378
|
+
args?: DescribeInstanceTypeOfferingsCommandInput,
|
|
14379
|
+
paginationConfig?: Pick<
|
|
14380
|
+
PaginationConfiguration,
|
|
14381
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14382
|
+
>
|
|
14383
|
+
): Paginator<DescribeInstanceTypeOfferingsCommandOutput>;
|
|
14384
|
+
paginateDescribeInstanceTypes(
|
|
14385
|
+
args?: DescribeInstanceTypesCommandInput,
|
|
14386
|
+
paginationConfig?: Pick<
|
|
14387
|
+
PaginationConfiguration,
|
|
14388
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14389
|
+
>
|
|
14390
|
+
): Paginator<DescribeInstanceTypesCommandOutput>;
|
|
14391
|
+
paginateDescribeInternetGateways(
|
|
14392
|
+
args?: DescribeInternetGatewaysCommandInput,
|
|
14393
|
+
paginationConfig?: Pick<
|
|
14394
|
+
PaginationConfiguration,
|
|
14395
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14396
|
+
>
|
|
14397
|
+
): Paginator<DescribeInternetGatewaysCommandOutput>;
|
|
14398
|
+
paginateDescribeIpamPools(
|
|
14399
|
+
args?: DescribeIpamPoolsCommandInput,
|
|
14400
|
+
paginationConfig?: Pick<
|
|
14401
|
+
PaginationConfiguration,
|
|
14402
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14403
|
+
>
|
|
14404
|
+
): Paginator<DescribeIpamPoolsCommandOutput>;
|
|
14405
|
+
paginateDescribeIpamPrefixListResolvers(
|
|
14406
|
+
args?: DescribeIpamPrefixListResolversCommandInput,
|
|
14407
|
+
paginationConfig?: Pick<
|
|
14408
|
+
PaginationConfiguration,
|
|
14409
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14410
|
+
>
|
|
14411
|
+
): Paginator<DescribeIpamPrefixListResolversCommandOutput>;
|
|
14412
|
+
paginateDescribeIpamPrefixListResolverTargets(
|
|
14413
|
+
args?: DescribeIpamPrefixListResolverTargetsCommandInput,
|
|
14414
|
+
paginationConfig?: Pick<
|
|
14415
|
+
PaginationConfiguration,
|
|
14416
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14417
|
+
>
|
|
14418
|
+
): Paginator<DescribeIpamPrefixListResolverTargetsCommandOutput>;
|
|
14419
|
+
paginateDescribeIpamResourceDiscoveries(
|
|
14420
|
+
args?: DescribeIpamResourceDiscoveriesCommandInput,
|
|
14421
|
+
paginationConfig?: Pick<
|
|
14422
|
+
PaginationConfiguration,
|
|
14423
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14424
|
+
>
|
|
14425
|
+
): Paginator<DescribeIpamResourceDiscoveriesCommandOutput>;
|
|
14426
|
+
paginateDescribeIpamResourceDiscoveryAssociations(
|
|
14427
|
+
args?: DescribeIpamResourceDiscoveryAssociationsCommandInput,
|
|
14428
|
+
paginationConfig?: Pick<
|
|
14429
|
+
PaginationConfiguration,
|
|
14430
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14431
|
+
>
|
|
14432
|
+
): Paginator<DescribeIpamResourceDiscoveryAssociationsCommandOutput>;
|
|
14433
|
+
paginateDescribeIpams(
|
|
14434
|
+
args?: DescribeIpamsCommandInput,
|
|
14435
|
+
paginationConfig?: Pick<
|
|
14436
|
+
PaginationConfiguration,
|
|
14437
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14438
|
+
>
|
|
14439
|
+
): Paginator<DescribeIpamsCommandOutput>;
|
|
14440
|
+
paginateDescribeIpamScopes(
|
|
14441
|
+
args?: DescribeIpamScopesCommandInput,
|
|
14442
|
+
paginationConfig?: Pick<
|
|
14443
|
+
PaginationConfiguration,
|
|
14444
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14445
|
+
>
|
|
14446
|
+
): Paginator<DescribeIpamScopesCommandOutput>;
|
|
14447
|
+
paginateDescribeIpv6Pools(
|
|
14448
|
+
args?: DescribeIpv6PoolsCommandInput,
|
|
14449
|
+
paginationConfig?: Pick<
|
|
14450
|
+
PaginationConfiguration,
|
|
14451
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14452
|
+
>
|
|
14453
|
+
): Paginator<DescribeIpv6PoolsCommandOutput>;
|
|
14454
|
+
paginateDescribeLaunchTemplates(
|
|
14455
|
+
args?: DescribeLaunchTemplatesCommandInput,
|
|
14456
|
+
paginationConfig?: Pick<
|
|
14457
|
+
PaginationConfiguration,
|
|
14458
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14459
|
+
>
|
|
14460
|
+
): Paginator<DescribeLaunchTemplatesCommandOutput>;
|
|
14461
|
+
paginateDescribeLaunchTemplateVersions(
|
|
14462
|
+
args?: DescribeLaunchTemplateVersionsCommandInput,
|
|
14463
|
+
paginationConfig?: Pick<
|
|
14464
|
+
PaginationConfiguration,
|
|
14465
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14466
|
+
>
|
|
14467
|
+
): Paginator<DescribeLaunchTemplateVersionsCommandOutput>;
|
|
14468
|
+
paginateDescribeLocalGatewayRouteTables(
|
|
14469
|
+
args?: DescribeLocalGatewayRouteTablesCommandInput,
|
|
14470
|
+
paginationConfig?: Pick<
|
|
14471
|
+
PaginationConfiguration,
|
|
14472
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14473
|
+
>
|
|
14474
|
+
): Paginator<DescribeLocalGatewayRouteTablesCommandOutput>;
|
|
14475
|
+
paginateDescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociations(
|
|
14476
|
+
args?: DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommandInput,
|
|
14477
|
+
paginationConfig?: Pick<
|
|
14478
|
+
PaginationConfiguration,
|
|
14479
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14480
|
+
>
|
|
14481
|
+
): Paginator<DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommandOutput>;
|
|
14482
|
+
paginateDescribeLocalGatewayRouteTableVpcAssociations(
|
|
14483
|
+
args?: DescribeLocalGatewayRouteTableVpcAssociationsCommandInput,
|
|
14484
|
+
paginationConfig?: Pick<
|
|
14485
|
+
PaginationConfiguration,
|
|
14486
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14487
|
+
>
|
|
14488
|
+
): Paginator<DescribeLocalGatewayRouteTableVpcAssociationsCommandOutput>;
|
|
14489
|
+
paginateDescribeLocalGateways(
|
|
14490
|
+
args?: DescribeLocalGatewaysCommandInput,
|
|
14491
|
+
paginationConfig?: Pick<
|
|
14492
|
+
PaginationConfiguration,
|
|
14493
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14494
|
+
>
|
|
14495
|
+
): Paginator<DescribeLocalGatewaysCommandOutput>;
|
|
14496
|
+
paginateDescribeLocalGatewayVirtualInterfaceGroups(
|
|
14497
|
+
args?: DescribeLocalGatewayVirtualInterfaceGroupsCommandInput,
|
|
14498
|
+
paginationConfig?: Pick<
|
|
14499
|
+
PaginationConfiguration,
|
|
14500
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14501
|
+
>
|
|
14502
|
+
): Paginator<DescribeLocalGatewayVirtualInterfaceGroupsCommandOutput>;
|
|
14503
|
+
paginateDescribeLocalGatewayVirtualInterfaces(
|
|
14504
|
+
args?: DescribeLocalGatewayVirtualInterfacesCommandInput,
|
|
14505
|
+
paginationConfig?: Pick<
|
|
14506
|
+
PaginationConfiguration,
|
|
14507
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14508
|
+
>
|
|
14509
|
+
): Paginator<DescribeLocalGatewayVirtualInterfacesCommandOutput>;
|
|
14510
|
+
paginateDescribeMacHosts(
|
|
14511
|
+
args?: DescribeMacHostsCommandInput,
|
|
14512
|
+
paginationConfig?: Pick<
|
|
14513
|
+
PaginationConfiguration,
|
|
14514
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14515
|
+
>
|
|
14516
|
+
): Paginator<DescribeMacHostsCommandOutput>;
|
|
14517
|
+
paginateDescribeMacModificationTasks(
|
|
14518
|
+
args?: DescribeMacModificationTasksCommandInput,
|
|
14519
|
+
paginationConfig?: Pick<
|
|
14520
|
+
PaginationConfiguration,
|
|
14521
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14522
|
+
>
|
|
14523
|
+
): Paginator<DescribeMacModificationTasksCommandOutput>;
|
|
14524
|
+
paginateDescribeManagedPrefixLists(
|
|
14525
|
+
args?: DescribeManagedPrefixListsCommandInput,
|
|
14526
|
+
paginationConfig?: Pick<
|
|
14527
|
+
PaginationConfiguration,
|
|
14528
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14529
|
+
>
|
|
14530
|
+
): Paginator<DescribeManagedPrefixListsCommandOutput>;
|
|
14531
|
+
paginateDescribeMovingAddresses(
|
|
14532
|
+
args?: DescribeMovingAddressesCommandInput,
|
|
14533
|
+
paginationConfig?: Pick<
|
|
14534
|
+
PaginationConfiguration,
|
|
14535
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14536
|
+
>
|
|
14537
|
+
): Paginator<DescribeMovingAddressesCommandOutput>;
|
|
14538
|
+
paginateDescribeNatGateways(
|
|
14539
|
+
args?: DescribeNatGatewaysCommandInput,
|
|
14540
|
+
paginationConfig?: Pick<
|
|
14541
|
+
PaginationConfiguration,
|
|
14542
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14543
|
+
>
|
|
14544
|
+
): Paginator<DescribeNatGatewaysCommandOutput>;
|
|
14545
|
+
paginateDescribeNetworkAcls(
|
|
14546
|
+
args?: DescribeNetworkAclsCommandInput,
|
|
14547
|
+
paginationConfig?: Pick<
|
|
14548
|
+
PaginationConfiguration,
|
|
14549
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14550
|
+
>
|
|
14551
|
+
): Paginator<DescribeNetworkAclsCommandOutput>;
|
|
14552
|
+
paginateDescribeNetworkInsightsAccessScopeAnalyses(
|
|
14553
|
+
args?: DescribeNetworkInsightsAccessScopeAnalysesCommandInput,
|
|
14554
|
+
paginationConfig?: Pick<
|
|
14555
|
+
PaginationConfiguration,
|
|
14556
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14557
|
+
>
|
|
14558
|
+
): Paginator<DescribeNetworkInsightsAccessScopeAnalysesCommandOutput>;
|
|
14559
|
+
paginateDescribeNetworkInsightsAccessScopes(
|
|
14560
|
+
args?: DescribeNetworkInsightsAccessScopesCommandInput,
|
|
14561
|
+
paginationConfig?: Pick<
|
|
14562
|
+
PaginationConfiguration,
|
|
14563
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14564
|
+
>
|
|
14565
|
+
): Paginator<DescribeNetworkInsightsAccessScopesCommandOutput>;
|
|
14566
|
+
paginateDescribeNetworkInsightsAnalyses(
|
|
14567
|
+
args?: DescribeNetworkInsightsAnalysesCommandInput,
|
|
14568
|
+
paginationConfig?: Pick<
|
|
14569
|
+
PaginationConfiguration,
|
|
14570
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14571
|
+
>
|
|
14572
|
+
): Paginator<DescribeNetworkInsightsAnalysesCommandOutput>;
|
|
14573
|
+
paginateDescribeNetworkInsightsPaths(
|
|
14574
|
+
args?: DescribeNetworkInsightsPathsCommandInput,
|
|
14575
|
+
paginationConfig?: Pick<
|
|
14576
|
+
PaginationConfiguration,
|
|
14577
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14578
|
+
>
|
|
14579
|
+
): Paginator<DescribeNetworkInsightsPathsCommandOutput>;
|
|
14580
|
+
paginateDescribeNetworkInterfacePermissions(
|
|
14581
|
+
args?: DescribeNetworkInterfacePermissionsCommandInput,
|
|
14582
|
+
paginationConfig?: Pick<
|
|
14583
|
+
PaginationConfiguration,
|
|
14584
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14585
|
+
>
|
|
14586
|
+
): Paginator<DescribeNetworkInterfacePermissionsCommandOutput>;
|
|
14587
|
+
paginateDescribeNetworkInterfaces(
|
|
14588
|
+
args?: DescribeNetworkInterfacesCommandInput,
|
|
14589
|
+
paginationConfig?: Pick<
|
|
14590
|
+
PaginationConfiguration,
|
|
14591
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14592
|
+
>
|
|
14593
|
+
): Paginator<DescribeNetworkInterfacesCommandOutput>;
|
|
14594
|
+
paginateDescribePrefixLists(
|
|
14595
|
+
args?: DescribePrefixListsCommandInput,
|
|
14596
|
+
paginationConfig?: Pick<
|
|
14597
|
+
PaginationConfiguration,
|
|
14598
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14599
|
+
>
|
|
14600
|
+
): Paginator<DescribePrefixListsCommandOutput>;
|
|
14601
|
+
paginateDescribePrincipalIdFormat(
|
|
14602
|
+
args?: DescribePrincipalIdFormatCommandInput,
|
|
14603
|
+
paginationConfig?: Pick<
|
|
14604
|
+
PaginationConfiguration,
|
|
14605
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14606
|
+
>
|
|
14607
|
+
): Paginator<DescribePrincipalIdFormatCommandOutput>;
|
|
14608
|
+
paginateDescribePublicIpv4Pools(
|
|
14609
|
+
args?: DescribePublicIpv4PoolsCommandInput,
|
|
14610
|
+
paginationConfig?: Pick<
|
|
14611
|
+
PaginationConfiguration,
|
|
14612
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14613
|
+
>
|
|
14614
|
+
): Paginator<DescribePublicIpv4PoolsCommandOutput>;
|
|
14615
|
+
paginateDescribeReplaceRootVolumeTasks(
|
|
14616
|
+
args?: DescribeReplaceRootVolumeTasksCommandInput,
|
|
14617
|
+
paginationConfig?: Pick<
|
|
14618
|
+
PaginationConfiguration,
|
|
14619
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14620
|
+
>
|
|
14621
|
+
): Paginator<DescribeReplaceRootVolumeTasksCommandOutput>;
|
|
14622
|
+
paginateDescribeReservedInstancesModifications(
|
|
14623
|
+
args?: DescribeReservedInstancesModificationsCommandInput,
|
|
14624
|
+
paginationConfig?: Pick<
|
|
14625
|
+
PaginationConfiguration,
|
|
14626
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14627
|
+
>
|
|
14628
|
+
): Paginator<DescribeReservedInstancesModificationsCommandOutput>;
|
|
14629
|
+
paginateDescribeReservedInstancesOfferings(
|
|
14630
|
+
args?: DescribeReservedInstancesOfferingsCommandInput,
|
|
14631
|
+
paginationConfig?: Pick<
|
|
14632
|
+
PaginationConfiguration,
|
|
14633
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14634
|
+
>
|
|
14635
|
+
): Paginator<DescribeReservedInstancesOfferingsCommandOutput>;
|
|
14636
|
+
paginateDescribeRouteServerEndpoints(
|
|
14637
|
+
args?: DescribeRouteServerEndpointsCommandInput,
|
|
14638
|
+
paginationConfig?: Pick<
|
|
14639
|
+
PaginationConfiguration,
|
|
14640
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14641
|
+
>
|
|
14642
|
+
): Paginator<DescribeRouteServerEndpointsCommandOutput>;
|
|
14643
|
+
paginateDescribeRouteServerPeers(
|
|
14644
|
+
args?: DescribeRouteServerPeersCommandInput,
|
|
14645
|
+
paginationConfig?: Pick<
|
|
14646
|
+
PaginationConfiguration,
|
|
14647
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14648
|
+
>
|
|
14649
|
+
): Paginator<DescribeRouteServerPeersCommandOutput>;
|
|
14650
|
+
paginateDescribeRouteServers(
|
|
14651
|
+
args?: DescribeRouteServersCommandInput,
|
|
14652
|
+
paginationConfig?: Pick<
|
|
14653
|
+
PaginationConfiguration,
|
|
14654
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14655
|
+
>
|
|
14656
|
+
): Paginator<DescribeRouteServersCommandOutput>;
|
|
14657
|
+
paginateDescribeRouteTables(
|
|
14658
|
+
args?: DescribeRouteTablesCommandInput,
|
|
14659
|
+
paginationConfig?: Pick<
|
|
14660
|
+
PaginationConfiguration,
|
|
14661
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14662
|
+
>
|
|
14663
|
+
): Paginator<DescribeRouteTablesCommandOutput>;
|
|
14664
|
+
paginateDescribeScheduledInstanceAvailability(
|
|
14665
|
+
args: DescribeScheduledInstanceAvailabilityCommandInput,
|
|
14666
|
+
paginationConfig?: Pick<
|
|
14667
|
+
PaginationConfiguration,
|
|
14668
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14669
|
+
>
|
|
14670
|
+
): Paginator<DescribeScheduledInstanceAvailabilityCommandOutput>;
|
|
14671
|
+
paginateDescribeScheduledInstances(
|
|
14672
|
+
args?: DescribeScheduledInstancesCommandInput,
|
|
14673
|
+
paginationConfig?: Pick<
|
|
14674
|
+
PaginationConfiguration,
|
|
14675
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14676
|
+
>
|
|
14677
|
+
): Paginator<DescribeScheduledInstancesCommandOutput>;
|
|
14678
|
+
paginateDescribeSecurityGroupRules(
|
|
14679
|
+
args?: DescribeSecurityGroupRulesCommandInput,
|
|
14680
|
+
paginationConfig?: Pick<
|
|
14681
|
+
PaginationConfiguration,
|
|
14682
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14683
|
+
>
|
|
14684
|
+
): Paginator<DescribeSecurityGroupRulesCommandOutput>;
|
|
14685
|
+
paginateDescribeSecurityGroups(
|
|
14686
|
+
args?: DescribeSecurityGroupsCommandInput,
|
|
14687
|
+
paginationConfig?: Pick<
|
|
14688
|
+
PaginationConfiguration,
|
|
14689
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14690
|
+
>
|
|
14691
|
+
): Paginator<DescribeSecurityGroupsCommandOutput>;
|
|
14692
|
+
paginateDescribeSecurityGroupVpcAssociations(
|
|
14693
|
+
args?: DescribeSecurityGroupVpcAssociationsCommandInput,
|
|
14694
|
+
paginationConfig?: Pick<
|
|
14695
|
+
PaginationConfiguration,
|
|
14696
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14697
|
+
>
|
|
14698
|
+
): Paginator<DescribeSecurityGroupVpcAssociationsCommandOutput>;
|
|
14699
|
+
paginateDescribeSnapshots(
|
|
14700
|
+
args?: DescribeSnapshotsCommandInput,
|
|
14701
|
+
paginationConfig?: Pick<
|
|
14702
|
+
PaginationConfiguration,
|
|
14703
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14704
|
+
>
|
|
14705
|
+
): Paginator<DescribeSnapshotsCommandOutput>;
|
|
14706
|
+
paginateDescribeSnapshotTierStatus(
|
|
14707
|
+
args?: DescribeSnapshotTierStatusCommandInput,
|
|
14708
|
+
paginationConfig?: Pick<
|
|
14709
|
+
PaginationConfiguration,
|
|
14710
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14711
|
+
>
|
|
14712
|
+
): Paginator<DescribeSnapshotTierStatusCommandOutput>;
|
|
14713
|
+
paginateDescribeSpotFleetRequests(
|
|
14714
|
+
args?: DescribeSpotFleetRequestsCommandInput,
|
|
14715
|
+
paginationConfig?: Pick<
|
|
14716
|
+
PaginationConfiguration,
|
|
14717
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14718
|
+
>
|
|
14719
|
+
): Paginator<DescribeSpotFleetRequestsCommandOutput>;
|
|
14720
|
+
paginateDescribeSpotInstanceRequests(
|
|
14721
|
+
args?: DescribeSpotInstanceRequestsCommandInput,
|
|
14722
|
+
paginationConfig?: Pick<
|
|
14723
|
+
PaginationConfiguration,
|
|
14724
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14725
|
+
>
|
|
14726
|
+
): Paginator<DescribeSpotInstanceRequestsCommandOutput>;
|
|
14727
|
+
paginateDescribeSpotPriceHistory(
|
|
14728
|
+
args?: DescribeSpotPriceHistoryCommandInput,
|
|
14729
|
+
paginationConfig?: Pick<
|
|
14730
|
+
PaginationConfiguration,
|
|
14731
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14732
|
+
>
|
|
14733
|
+
): Paginator<DescribeSpotPriceHistoryCommandOutput>;
|
|
14734
|
+
paginateDescribeStaleSecurityGroups(
|
|
14735
|
+
args: DescribeStaleSecurityGroupsCommandInput,
|
|
14736
|
+
paginationConfig?: Pick<
|
|
14737
|
+
PaginationConfiguration,
|
|
14738
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14739
|
+
>
|
|
14740
|
+
): Paginator<DescribeStaleSecurityGroupsCommandOutput>;
|
|
14741
|
+
paginateDescribeStoreImageTasks(
|
|
14742
|
+
args?: DescribeStoreImageTasksCommandInput,
|
|
14743
|
+
paginationConfig?: Pick<
|
|
14744
|
+
PaginationConfiguration,
|
|
14745
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14746
|
+
>
|
|
14747
|
+
): Paginator<DescribeStoreImageTasksCommandOutput>;
|
|
14748
|
+
paginateDescribeSubnets(
|
|
14749
|
+
args?: DescribeSubnetsCommandInput,
|
|
14750
|
+
paginationConfig?: Pick<
|
|
14751
|
+
PaginationConfiguration,
|
|
14752
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14753
|
+
>
|
|
14754
|
+
): Paginator<DescribeSubnetsCommandOutput>;
|
|
14755
|
+
paginateDescribeTags(
|
|
14756
|
+
args?: DescribeTagsCommandInput,
|
|
14757
|
+
paginationConfig?: Pick<
|
|
14758
|
+
PaginationConfiguration,
|
|
14759
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14760
|
+
>
|
|
14761
|
+
): Paginator<DescribeTagsCommandOutput>;
|
|
14762
|
+
paginateDescribeTrafficMirrorFilters(
|
|
14763
|
+
args?: DescribeTrafficMirrorFiltersCommandInput,
|
|
14764
|
+
paginationConfig?: Pick<
|
|
14765
|
+
PaginationConfiguration,
|
|
14766
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14767
|
+
>
|
|
14768
|
+
): Paginator<DescribeTrafficMirrorFiltersCommandOutput>;
|
|
14769
|
+
paginateDescribeTrafficMirrorSessions(
|
|
14770
|
+
args?: DescribeTrafficMirrorSessionsCommandInput,
|
|
14771
|
+
paginationConfig?: Pick<
|
|
14772
|
+
PaginationConfiguration,
|
|
14773
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14774
|
+
>
|
|
14775
|
+
): Paginator<DescribeTrafficMirrorSessionsCommandOutput>;
|
|
14776
|
+
paginateDescribeTrafficMirrorTargets(
|
|
14777
|
+
args?: DescribeTrafficMirrorTargetsCommandInput,
|
|
14778
|
+
paginationConfig?: Pick<
|
|
14779
|
+
PaginationConfiguration,
|
|
14780
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14781
|
+
>
|
|
14782
|
+
): Paginator<DescribeTrafficMirrorTargetsCommandOutput>;
|
|
14783
|
+
paginateDescribeTransitGatewayAttachments(
|
|
14784
|
+
args?: DescribeTransitGatewayAttachmentsCommandInput,
|
|
14785
|
+
paginationConfig?: Pick<
|
|
14786
|
+
PaginationConfiguration,
|
|
14787
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14788
|
+
>
|
|
14789
|
+
): Paginator<DescribeTransitGatewayAttachmentsCommandOutput>;
|
|
14790
|
+
paginateDescribeTransitGatewayConnectPeers(
|
|
14791
|
+
args?: DescribeTransitGatewayConnectPeersCommandInput,
|
|
14792
|
+
paginationConfig?: Pick<
|
|
14793
|
+
PaginationConfiguration,
|
|
14794
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14795
|
+
>
|
|
14796
|
+
): Paginator<DescribeTransitGatewayConnectPeersCommandOutput>;
|
|
14797
|
+
paginateDescribeTransitGatewayConnects(
|
|
14798
|
+
args?: DescribeTransitGatewayConnectsCommandInput,
|
|
14799
|
+
paginationConfig?: Pick<
|
|
14800
|
+
PaginationConfiguration,
|
|
14801
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14802
|
+
>
|
|
14803
|
+
): Paginator<DescribeTransitGatewayConnectsCommandOutput>;
|
|
14804
|
+
paginateDescribeTransitGatewayMulticastDomains(
|
|
14805
|
+
args?: DescribeTransitGatewayMulticastDomainsCommandInput,
|
|
14806
|
+
paginationConfig?: Pick<
|
|
14807
|
+
PaginationConfiguration,
|
|
14808
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14809
|
+
>
|
|
14810
|
+
): Paginator<DescribeTransitGatewayMulticastDomainsCommandOutput>;
|
|
14811
|
+
paginateDescribeTransitGatewayPeeringAttachments(
|
|
14812
|
+
args?: DescribeTransitGatewayPeeringAttachmentsCommandInput,
|
|
14813
|
+
paginationConfig?: Pick<
|
|
14814
|
+
PaginationConfiguration,
|
|
14815
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14816
|
+
>
|
|
14817
|
+
): Paginator<DescribeTransitGatewayPeeringAttachmentsCommandOutput>;
|
|
14818
|
+
paginateDescribeTransitGatewayPolicyTables(
|
|
14819
|
+
args?: DescribeTransitGatewayPolicyTablesCommandInput,
|
|
14820
|
+
paginationConfig?: Pick<
|
|
14821
|
+
PaginationConfiguration,
|
|
14822
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14823
|
+
>
|
|
14824
|
+
): Paginator<DescribeTransitGatewayPolicyTablesCommandOutput>;
|
|
14825
|
+
paginateDescribeTransitGatewayRouteTableAnnouncements(
|
|
14826
|
+
args?: DescribeTransitGatewayRouteTableAnnouncementsCommandInput,
|
|
14827
|
+
paginationConfig?: Pick<
|
|
14828
|
+
PaginationConfiguration,
|
|
14829
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14830
|
+
>
|
|
14831
|
+
): Paginator<DescribeTransitGatewayRouteTableAnnouncementsCommandOutput>;
|
|
14832
|
+
paginateDescribeTransitGatewayRouteTables(
|
|
14833
|
+
args?: DescribeTransitGatewayRouteTablesCommandInput,
|
|
14834
|
+
paginationConfig?: Pick<
|
|
14835
|
+
PaginationConfiguration,
|
|
14836
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14837
|
+
>
|
|
14838
|
+
): Paginator<DescribeTransitGatewayRouteTablesCommandOutput>;
|
|
14839
|
+
paginateDescribeTransitGateways(
|
|
14840
|
+
args?: DescribeTransitGatewaysCommandInput,
|
|
14841
|
+
paginationConfig?: Pick<
|
|
14842
|
+
PaginationConfiguration,
|
|
14843
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14844
|
+
>
|
|
14845
|
+
): Paginator<DescribeTransitGatewaysCommandOutput>;
|
|
14846
|
+
paginateDescribeTransitGatewayVpcAttachments(
|
|
14847
|
+
args?: DescribeTransitGatewayVpcAttachmentsCommandInput,
|
|
14848
|
+
paginationConfig?: Pick<
|
|
14849
|
+
PaginationConfiguration,
|
|
14850
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14851
|
+
>
|
|
14852
|
+
): Paginator<DescribeTransitGatewayVpcAttachmentsCommandOutput>;
|
|
14853
|
+
paginateDescribeTrunkInterfaceAssociations(
|
|
14854
|
+
args?: DescribeTrunkInterfaceAssociationsCommandInput,
|
|
14855
|
+
paginationConfig?: Pick<
|
|
14856
|
+
PaginationConfiguration,
|
|
14857
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14858
|
+
>
|
|
14859
|
+
): Paginator<DescribeTrunkInterfaceAssociationsCommandOutput>;
|
|
14860
|
+
paginateDescribeVerifiedAccessEndpoints(
|
|
14861
|
+
args?: DescribeVerifiedAccessEndpointsCommandInput,
|
|
14862
|
+
paginationConfig?: Pick<
|
|
14863
|
+
PaginationConfiguration,
|
|
14864
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14865
|
+
>
|
|
14866
|
+
): Paginator<DescribeVerifiedAccessEndpointsCommandOutput>;
|
|
14867
|
+
paginateDescribeVerifiedAccessGroups(
|
|
14868
|
+
args?: DescribeVerifiedAccessGroupsCommandInput,
|
|
14869
|
+
paginationConfig?: Pick<
|
|
14870
|
+
PaginationConfiguration,
|
|
14871
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14872
|
+
>
|
|
14873
|
+
): Paginator<DescribeVerifiedAccessGroupsCommandOutput>;
|
|
14874
|
+
paginateDescribeVerifiedAccessInstanceLoggingConfigurations(
|
|
14875
|
+
args?: DescribeVerifiedAccessInstanceLoggingConfigurationsCommandInput,
|
|
14876
|
+
paginationConfig?: Pick<
|
|
14877
|
+
PaginationConfiguration,
|
|
14878
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14879
|
+
>
|
|
14880
|
+
): Paginator<DescribeVerifiedAccessInstanceLoggingConfigurationsCommandOutput>;
|
|
14881
|
+
paginateDescribeVerifiedAccessInstances(
|
|
14882
|
+
args?: DescribeVerifiedAccessInstancesCommandInput,
|
|
14883
|
+
paginationConfig?: Pick<
|
|
14884
|
+
PaginationConfiguration,
|
|
14885
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14886
|
+
>
|
|
14887
|
+
): Paginator<DescribeVerifiedAccessInstancesCommandOutput>;
|
|
14888
|
+
paginateDescribeVerifiedAccessTrustProviders(
|
|
14889
|
+
args?: DescribeVerifiedAccessTrustProvidersCommandInput,
|
|
14890
|
+
paginationConfig?: Pick<
|
|
14891
|
+
PaginationConfiguration,
|
|
14892
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14893
|
+
>
|
|
14894
|
+
): Paginator<DescribeVerifiedAccessTrustProvidersCommandOutput>;
|
|
14895
|
+
paginateDescribeVolumes(
|
|
14896
|
+
args?: DescribeVolumesCommandInput,
|
|
14897
|
+
paginationConfig?: Pick<
|
|
14898
|
+
PaginationConfiguration,
|
|
14899
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14900
|
+
>
|
|
14901
|
+
): Paginator<DescribeVolumesCommandOutput>;
|
|
14902
|
+
paginateDescribeVolumesModifications(
|
|
14903
|
+
args?: DescribeVolumesModificationsCommandInput,
|
|
14904
|
+
paginationConfig?: Pick<
|
|
14905
|
+
PaginationConfiguration,
|
|
14906
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14907
|
+
>
|
|
14908
|
+
): Paginator<DescribeVolumesModificationsCommandOutput>;
|
|
14909
|
+
paginateDescribeVolumeStatus(
|
|
14910
|
+
args?: DescribeVolumeStatusCommandInput,
|
|
14911
|
+
paginationConfig?: Pick<
|
|
14912
|
+
PaginationConfiguration,
|
|
14913
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14914
|
+
>
|
|
14915
|
+
): Paginator<DescribeVolumeStatusCommandOutput>;
|
|
14916
|
+
paginateDescribeVpcClassicLinkDnsSupport(
|
|
14917
|
+
args?: DescribeVpcClassicLinkDnsSupportCommandInput,
|
|
14918
|
+
paginationConfig?: Pick<
|
|
14919
|
+
PaginationConfiguration,
|
|
14920
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14921
|
+
>
|
|
14922
|
+
): Paginator<DescribeVpcClassicLinkDnsSupportCommandOutput>;
|
|
14923
|
+
paginateDescribeVpcEndpointConnectionNotifications(
|
|
14924
|
+
args?: DescribeVpcEndpointConnectionNotificationsCommandInput,
|
|
14925
|
+
paginationConfig?: Pick<
|
|
14926
|
+
PaginationConfiguration,
|
|
14927
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14928
|
+
>
|
|
14929
|
+
): Paginator<DescribeVpcEndpointConnectionNotificationsCommandOutput>;
|
|
14930
|
+
paginateDescribeVpcEndpointConnections(
|
|
14931
|
+
args?: DescribeVpcEndpointConnectionsCommandInput,
|
|
14932
|
+
paginationConfig?: Pick<
|
|
14933
|
+
PaginationConfiguration,
|
|
14934
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14935
|
+
>
|
|
14936
|
+
): Paginator<DescribeVpcEndpointConnectionsCommandOutput>;
|
|
14937
|
+
paginateDescribeVpcEndpoints(
|
|
14938
|
+
args?: DescribeVpcEndpointsCommandInput,
|
|
14939
|
+
paginationConfig?: Pick<
|
|
14940
|
+
PaginationConfiguration,
|
|
14941
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14942
|
+
>
|
|
14943
|
+
): Paginator<DescribeVpcEndpointsCommandOutput>;
|
|
14944
|
+
paginateDescribeVpcEndpointServiceConfigurations(
|
|
14945
|
+
args?: DescribeVpcEndpointServiceConfigurationsCommandInput,
|
|
14946
|
+
paginationConfig?: Pick<
|
|
14947
|
+
PaginationConfiguration,
|
|
14948
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14949
|
+
>
|
|
14950
|
+
): Paginator<DescribeVpcEndpointServiceConfigurationsCommandOutput>;
|
|
14951
|
+
paginateDescribeVpcEndpointServicePermissions(
|
|
14952
|
+
args: DescribeVpcEndpointServicePermissionsCommandInput,
|
|
14953
|
+
paginationConfig?: Pick<
|
|
14954
|
+
PaginationConfiguration,
|
|
14955
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14956
|
+
>
|
|
14957
|
+
): Paginator<DescribeVpcEndpointServicePermissionsCommandOutput>;
|
|
14958
|
+
paginateDescribeVpcPeeringConnections(
|
|
14959
|
+
args?: DescribeVpcPeeringConnectionsCommandInput,
|
|
14960
|
+
paginationConfig?: Pick<
|
|
14961
|
+
PaginationConfiguration,
|
|
14962
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14963
|
+
>
|
|
14964
|
+
): Paginator<DescribeVpcPeeringConnectionsCommandOutput>;
|
|
14965
|
+
paginateDescribeVpcs(
|
|
14966
|
+
args?: DescribeVpcsCommandInput,
|
|
14967
|
+
paginationConfig?: Pick<
|
|
14968
|
+
PaginationConfiguration,
|
|
14969
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14970
|
+
>
|
|
14971
|
+
): Paginator<DescribeVpcsCommandOutput>;
|
|
14972
|
+
paginateDescribeVpnConcentrators(
|
|
14973
|
+
args?: DescribeVpnConcentratorsCommandInput,
|
|
14974
|
+
paginationConfig?: Pick<
|
|
14975
|
+
PaginationConfiguration,
|
|
14976
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14977
|
+
>
|
|
14978
|
+
): Paginator<DescribeVpnConcentratorsCommandOutput>;
|
|
14979
|
+
paginateGetAssociatedIpv6PoolCidrs(
|
|
14980
|
+
args: GetAssociatedIpv6PoolCidrsCommandInput,
|
|
14981
|
+
paginationConfig?: Pick<
|
|
14982
|
+
PaginationConfiguration,
|
|
14983
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14984
|
+
>
|
|
14985
|
+
): Paginator<GetAssociatedIpv6PoolCidrsCommandOutput>;
|
|
14986
|
+
paginateGetAwsNetworkPerformanceData(
|
|
14987
|
+
args?: GetAwsNetworkPerformanceDataCommandInput,
|
|
14988
|
+
paginationConfig?: Pick<
|
|
14989
|
+
PaginationConfiguration,
|
|
14990
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14991
|
+
>
|
|
14992
|
+
): Paginator<GetAwsNetworkPerformanceDataCommandOutput>;
|
|
14993
|
+
paginateGetCapacityManagerMetricData(
|
|
14994
|
+
args: GetCapacityManagerMetricDataCommandInput,
|
|
14995
|
+
paginationConfig?: Pick<
|
|
14996
|
+
PaginationConfiguration,
|
|
14997
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
14998
|
+
>
|
|
14999
|
+
): Paginator<GetCapacityManagerMetricDataCommandOutput>;
|
|
15000
|
+
paginateGetCapacityManagerMetricDimensions(
|
|
15001
|
+
args: GetCapacityManagerMetricDimensionsCommandInput,
|
|
15002
|
+
paginationConfig?: Pick<
|
|
15003
|
+
PaginationConfiguration,
|
|
15004
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
15005
|
+
>
|
|
15006
|
+
): Paginator<GetCapacityManagerMetricDimensionsCommandOutput>;
|
|
15007
|
+
paginateGetGroupsForCapacityReservation(
|
|
15008
|
+
args: GetGroupsForCapacityReservationCommandInput,
|
|
15009
|
+
paginationConfig?: Pick<
|
|
15010
|
+
PaginationConfiguration,
|
|
15011
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
15012
|
+
>
|
|
15013
|
+
): Paginator<GetGroupsForCapacityReservationCommandOutput>;
|
|
15014
|
+
paginateGetInstanceTypesFromInstanceRequirements(
|
|
15015
|
+
args: GetInstanceTypesFromInstanceRequirementsCommandInput,
|
|
15016
|
+
paginationConfig?: Pick<
|
|
15017
|
+
PaginationConfiguration,
|
|
15018
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
15019
|
+
>
|
|
15020
|
+
): Paginator<GetInstanceTypesFromInstanceRequirementsCommandOutput>;
|
|
15021
|
+
paginateGetIpamAddressHistory(
|
|
15022
|
+
args: GetIpamAddressHistoryCommandInput,
|
|
15023
|
+
paginationConfig?: Pick<
|
|
15024
|
+
PaginationConfiguration,
|
|
15025
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
15026
|
+
>
|
|
15027
|
+
): Paginator<GetIpamAddressHistoryCommandOutput>;
|
|
15028
|
+
paginateGetIpamDiscoveredAccounts(
|
|
15029
|
+
args: GetIpamDiscoveredAccountsCommandInput,
|
|
15030
|
+
paginationConfig?: Pick<
|
|
15031
|
+
PaginationConfiguration,
|
|
15032
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
15033
|
+
>
|
|
15034
|
+
): Paginator<GetIpamDiscoveredAccountsCommandOutput>;
|
|
15035
|
+
paginateGetIpamDiscoveredResourceCidrs(
|
|
15036
|
+
args: GetIpamDiscoveredResourceCidrsCommandInput,
|
|
15037
|
+
paginationConfig?: Pick<
|
|
15038
|
+
PaginationConfiguration,
|
|
15039
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
15040
|
+
>
|
|
15041
|
+
): Paginator<GetIpamDiscoveredResourceCidrsCommandOutput>;
|
|
15042
|
+
paginateGetIpamPoolAllocations(
|
|
15043
|
+
args: GetIpamPoolAllocationsCommandInput,
|
|
15044
|
+
paginationConfig?: Pick<
|
|
15045
|
+
PaginationConfiguration,
|
|
15046
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
15047
|
+
>
|
|
15048
|
+
): Paginator<GetIpamPoolAllocationsCommandOutput>;
|
|
15049
|
+
paginateGetIpamPoolCidrs(
|
|
15050
|
+
args: GetIpamPoolCidrsCommandInput,
|
|
15051
|
+
paginationConfig?: Pick<
|
|
15052
|
+
PaginationConfiguration,
|
|
15053
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
15054
|
+
>
|
|
15055
|
+
): Paginator<GetIpamPoolCidrsCommandOutput>;
|
|
15056
|
+
paginateGetIpamPrefixListResolverRules(
|
|
15057
|
+
args: GetIpamPrefixListResolverRulesCommandInput,
|
|
15058
|
+
paginationConfig?: Pick<
|
|
15059
|
+
PaginationConfiguration,
|
|
15060
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
15061
|
+
>
|
|
15062
|
+
): Paginator<GetIpamPrefixListResolverRulesCommandOutput>;
|
|
15063
|
+
paginateGetIpamPrefixListResolverVersionEntries(
|
|
15064
|
+
args: GetIpamPrefixListResolverVersionEntriesCommandInput,
|
|
15065
|
+
paginationConfig?: Pick<
|
|
15066
|
+
PaginationConfiguration,
|
|
15067
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
15068
|
+
>
|
|
15069
|
+
): Paginator<GetIpamPrefixListResolverVersionEntriesCommandOutput>;
|
|
15070
|
+
paginateGetIpamPrefixListResolverVersions(
|
|
15071
|
+
args: GetIpamPrefixListResolverVersionsCommandInput,
|
|
15072
|
+
paginationConfig?: Pick<
|
|
15073
|
+
PaginationConfiguration,
|
|
15074
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
15075
|
+
>
|
|
15076
|
+
): Paginator<GetIpamPrefixListResolverVersionsCommandOutput>;
|
|
15077
|
+
paginateGetIpamResourceCidrs(
|
|
15078
|
+
args: GetIpamResourceCidrsCommandInput,
|
|
15079
|
+
paginationConfig?: Pick<
|
|
15080
|
+
PaginationConfiguration,
|
|
15081
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
15082
|
+
>
|
|
15083
|
+
): Paginator<GetIpamResourceCidrsCommandOutput>;
|
|
15084
|
+
paginateGetManagedPrefixListAssociations(
|
|
15085
|
+
args: GetManagedPrefixListAssociationsCommandInput,
|
|
15086
|
+
paginationConfig?: Pick<
|
|
15087
|
+
PaginationConfiguration,
|
|
15088
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
15089
|
+
>
|
|
15090
|
+
): Paginator<GetManagedPrefixListAssociationsCommandOutput>;
|
|
15091
|
+
paginateGetManagedPrefixListEntries(
|
|
15092
|
+
args: GetManagedPrefixListEntriesCommandInput,
|
|
15093
|
+
paginationConfig?: Pick<
|
|
15094
|
+
PaginationConfiguration,
|
|
15095
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
15096
|
+
>
|
|
15097
|
+
): Paginator<GetManagedPrefixListEntriesCommandOutput>;
|
|
15098
|
+
paginateGetNetworkInsightsAccessScopeAnalysisFindings(
|
|
15099
|
+
args: GetNetworkInsightsAccessScopeAnalysisFindingsCommandInput,
|
|
15100
|
+
paginationConfig?: Pick<
|
|
15101
|
+
PaginationConfiguration,
|
|
15102
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
15103
|
+
>
|
|
15104
|
+
): Paginator<GetNetworkInsightsAccessScopeAnalysisFindingsCommandOutput>;
|
|
15105
|
+
paginateGetSecurityGroupsForVpc(
|
|
15106
|
+
args: GetSecurityGroupsForVpcCommandInput,
|
|
15107
|
+
paginationConfig?: Pick<
|
|
15108
|
+
PaginationConfiguration,
|
|
15109
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
15110
|
+
>
|
|
15111
|
+
): Paginator<GetSecurityGroupsForVpcCommandOutput>;
|
|
15112
|
+
paginateGetSpotPlacementScores(
|
|
15113
|
+
args: GetSpotPlacementScoresCommandInput,
|
|
15114
|
+
paginationConfig?: Pick<
|
|
15115
|
+
PaginationConfiguration,
|
|
15116
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
15117
|
+
>
|
|
15118
|
+
): Paginator<GetSpotPlacementScoresCommandOutput>;
|
|
15119
|
+
paginateGetTransitGatewayAttachmentPropagations(
|
|
15120
|
+
args: GetTransitGatewayAttachmentPropagationsCommandInput,
|
|
15121
|
+
paginationConfig?: Pick<
|
|
15122
|
+
PaginationConfiguration,
|
|
15123
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
15124
|
+
>
|
|
15125
|
+
): Paginator<GetTransitGatewayAttachmentPropagationsCommandOutput>;
|
|
15126
|
+
paginateGetTransitGatewayMulticastDomainAssociations(
|
|
15127
|
+
args: GetTransitGatewayMulticastDomainAssociationsCommandInput,
|
|
15128
|
+
paginationConfig?: Pick<
|
|
15129
|
+
PaginationConfiguration,
|
|
15130
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
15131
|
+
>
|
|
15132
|
+
): Paginator<GetTransitGatewayMulticastDomainAssociationsCommandOutput>;
|
|
15133
|
+
paginateGetTransitGatewayPolicyTableAssociations(
|
|
15134
|
+
args: GetTransitGatewayPolicyTableAssociationsCommandInput,
|
|
15135
|
+
paginationConfig?: Pick<
|
|
15136
|
+
PaginationConfiguration,
|
|
15137
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
15138
|
+
>
|
|
15139
|
+
): Paginator<GetTransitGatewayPolicyTableAssociationsCommandOutput>;
|
|
15140
|
+
paginateGetTransitGatewayPrefixListReferences(
|
|
15141
|
+
args: GetTransitGatewayPrefixListReferencesCommandInput,
|
|
15142
|
+
paginationConfig?: Pick<
|
|
15143
|
+
PaginationConfiguration,
|
|
15144
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
15145
|
+
>
|
|
15146
|
+
): Paginator<GetTransitGatewayPrefixListReferencesCommandOutput>;
|
|
15147
|
+
paginateGetTransitGatewayRouteTableAssociations(
|
|
15148
|
+
args: GetTransitGatewayRouteTableAssociationsCommandInput,
|
|
15149
|
+
paginationConfig?: Pick<
|
|
15150
|
+
PaginationConfiguration,
|
|
15151
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
15152
|
+
>
|
|
15153
|
+
): Paginator<GetTransitGatewayRouteTableAssociationsCommandOutput>;
|
|
15154
|
+
paginateGetTransitGatewayRouteTablePropagations(
|
|
15155
|
+
args: GetTransitGatewayRouteTablePropagationsCommandInput,
|
|
15156
|
+
paginationConfig?: Pick<
|
|
15157
|
+
PaginationConfiguration,
|
|
15158
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
15159
|
+
>
|
|
15160
|
+
): Paginator<GetTransitGatewayRouteTablePropagationsCommandOutput>;
|
|
15161
|
+
paginateGetVpnConnectionDeviceTypes(
|
|
15162
|
+
args?: GetVpnConnectionDeviceTypesCommandInput,
|
|
15163
|
+
paginationConfig?: Pick<
|
|
15164
|
+
PaginationConfiguration,
|
|
15165
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
15166
|
+
>
|
|
15167
|
+
): Paginator<GetVpnConnectionDeviceTypesCommandOutput>;
|
|
15168
|
+
paginateListImagesInRecycleBin(
|
|
15169
|
+
args?: ListImagesInRecycleBinCommandInput,
|
|
15170
|
+
paginationConfig?: Pick<
|
|
15171
|
+
PaginationConfiguration,
|
|
15172
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
15173
|
+
>
|
|
15174
|
+
): Paginator<ListImagesInRecycleBinCommandOutput>;
|
|
15175
|
+
paginateListSnapshotsInRecycleBin(
|
|
15176
|
+
args?: ListSnapshotsInRecycleBinCommandInput,
|
|
15177
|
+
paginationConfig?: Pick<
|
|
15178
|
+
PaginationConfiguration,
|
|
15179
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
15180
|
+
>
|
|
15181
|
+
): Paginator<ListSnapshotsInRecycleBinCommandOutput>;
|
|
15182
|
+
paginateSearchLocalGatewayRoutes(
|
|
15183
|
+
args: SearchLocalGatewayRoutesCommandInput,
|
|
15184
|
+
paginationConfig?: Pick<
|
|
15185
|
+
PaginationConfiguration,
|
|
15186
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
15187
|
+
>
|
|
15188
|
+
): Paginator<SearchLocalGatewayRoutesCommandOutput>;
|
|
15189
|
+
paginateSearchTransitGatewayMulticastGroups(
|
|
15190
|
+
args: SearchTransitGatewayMulticastGroupsCommandInput,
|
|
15191
|
+
paginationConfig?: Pick<
|
|
15192
|
+
PaginationConfiguration,
|
|
15193
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
15194
|
+
>
|
|
15195
|
+
): Paginator<SearchTransitGatewayMulticastGroupsCommandOutput>;
|
|
15196
|
+
paginateSearchTransitGatewayRoutes(
|
|
15197
|
+
args: SearchTransitGatewayRoutesCommandInput,
|
|
15198
|
+
paginationConfig?: Pick<
|
|
15199
|
+
PaginationConfiguration,
|
|
15200
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
15201
|
+
>
|
|
15202
|
+
): Paginator<SearchTransitGatewayRoutesCommandOutput>;
|
|
15203
|
+
waitUntilBundleTaskComplete(
|
|
15204
|
+
args: DescribeBundleTasksCommandInput,
|
|
15205
|
+
waiterConfig:
|
|
15206
|
+
| number
|
|
15207
|
+
| Pick<
|
|
15208
|
+
WaiterConfiguration<EC2>,
|
|
15209
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15210
|
+
>
|
|
15211
|
+
): Promise<WaiterResult>;
|
|
15212
|
+
waitUntilConversionTaskCancelled(
|
|
15213
|
+
args: DescribeConversionTasksCommandInput,
|
|
15214
|
+
waiterConfig:
|
|
15215
|
+
| number
|
|
15216
|
+
| Pick<
|
|
15217
|
+
WaiterConfiguration<EC2>,
|
|
15218
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15219
|
+
>
|
|
15220
|
+
): Promise<WaiterResult>;
|
|
15221
|
+
waitUntilConversionTaskCompleted(
|
|
15222
|
+
args: DescribeConversionTasksCommandInput,
|
|
15223
|
+
waiterConfig:
|
|
15224
|
+
| number
|
|
15225
|
+
| Pick<
|
|
15226
|
+
WaiterConfiguration<EC2>,
|
|
15227
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15228
|
+
>
|
|
15229
|
+
): Promise<WaiterResult>;
|
|
15230
|
+
waitUntilConversionTaskDeleted(
|
|
15231
|
+
args: DescribeConversionTasksCommandInput,
|
|
15232
|
+
waiterConfig:
|
|
15233
|
+
| number
|
|
15234
|
+
| Pick<
|
|
15235
|
+
WaiterConfiguration<EC2>,
|
|
15236
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15237
|
+
>
|
|
15238
|
+
): Promise<WaiterResult>;
|
|
15239
|
+
waitUntilCustomerGatewayAvailable(
|
|
15240
|
+
args: DescribeCustomerGatewaysCommandInput,
|
|
15241
|
+
waiterConfig:
|
|
15242
|
+
| number
|
|
15243
|
+
| Pick<
|
|
15244
|
+
WaiterConfiguration<EC2>,
|
|
15245
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15246
|
+
>
|
|
15247
|
+
): Promise<WaiterResult>;
|
|
15248
|
+
waitUntilExportTaskCancelled(
|
|
15249
|
+
args: DescribeExportTasksCommandInput,
|
|
15250
|
+
waiterConfig:
|
|
15251
|
+
| number
|
|
15252
|
+
| Pick<
|
|
15253
|
+
WaiterConfiguration<EC2>,
|
|
15254
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15255
|
+
>
|
|
15256
|
+
): Promise<WaiterResult>;
|
|
15257
|
+
waitUntilExportTaskCompleted(
|
|
15258
|
+
args: DescribeExportTasksCommandInput,
|
|
15259
|
+
waiterConfig:
|
|
15260
|
+
| number
|
|
15261
|
+
| Pick<
|
|
15262
|
+
WaiterConfiguration<EC2>,
|
|
15263
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15264
|
+
>
|
|
15265
|
+
): Promise<WaiterResult>;
|
|
15266
|
+
waitUntilImageAvailable(
|
|
15267
|
+
args: DescribeImagesCommandInput,
|
|
15268
|
+
waiterConfig:
|
|
15269
|
+
| number
|
|
15270
|
+
| Pick<
|
|
15271
|
+
WaiterConfiguration<EC2>,
|
|
15272
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15273
|
+
>
|
|
15274
|
+
): Promise<WaiterResult>;
|
|
15275
|
+
waitUntilImageExists(
|
|
15276
|
+
args: DescribeImagesCommandInput,
|
|
15277
|
+
waiterConfig:
|
|
15278
|
+
| number
|
|
15279
|
+
| Pick<
|
|
15280
|
+
WaiterConfiguration<EC2>,
|
|
15281
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15282
|
+
>
|
|
15283
|
+
): Promise<WaiterResult>;
|
|
15284
|
+
waitUntilImageUsageReportAvailable(
|
|
15285
|
+
args: DescribeImageUsageReportsCommandInput,
|
|
15286
|
+
waiterConfig:
|
|
15287
|
+
| number
|
|
15288
|
+
| Pick<
|
|
15289
|
+
WaiterConfiguration<EC2>,
|
|
15290
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15291
|
+
>
|
|
15292
|
+
): Promise<WaiterResult>;
|
|
15293
|
+
waitUntilSnapshotImported(
|
|
15294
|
+
args: DescribeImportSnapshotTasksCommandInput,
|
|
15295
|
+
waiterConfig:
|
|
15296
|
+
| number
|
|
15297
|
+
| Pick<
|
|
15298
|
+
WaiterConfiguration<EC2>,
|
|
15299
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15300
|
+
>
|
|
15301
|
+
): Promise<WaiterResult>;
|
|
15302
|
+
waitUntilInstanceExists(
|
|
15303
|
+
args: DescribeInstancesCommandInput,
|
|
15304
|
+
waiterConfig:
|
|
15305
|
+
| number
|
|
15306
|
+
| Pick<
|
|
15307
|
+
WaiterConfiguration<EC2>,
|
|
15308
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15309
|
+
>
|
|
15310
|
+
): Promise<WaiterResult>;
|
|
15311
|
+
waitUntilInstanceRunning(
|
|
15312
|
+
args: DescribeInstancesCommandInput,
|
|
15313
|
+
waiterConfig:
|
|
15314
|
+
| number
|
|
15315
|
+
| Pick<
|
|
15316
|
+
WaiterConfiguration<EC2>,
|
|
15317
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15318
|
+
>
|
|
15319
|
+
): Promise<WaiterResult>;
|
|
15320
|
+
waitUntilInstanceStopped(
|
|
15321
|
+
args: DescribeInstancesCommandInput,
|
|
15322
|
+
waiterConfig:
|
|
15323
|
+
| number
|
|
15324
|
+
| Pick<
|
|
15325
|
+
WaiterConfiguration<EC2>,
|
|
15326
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15327
|
+
>
|
|
15328
|
+
): Promise<WaiterResult>;
|
|
15329
|
+
waitUntilInstanceTerminated(
|
|
15330
|
+
args: DescribeInstancesCommandInput,
|
|
15331
|
+
waiterConfig:
|
|
15332
|
+
| number
|
|
15333
|
+
| Pick<
|
|
15334
|
+
WaiterConfiguration<EC2>,
|
|
15335
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15336
|
+
>
|
|
15337
|
+
): Promise<WaiterResult>;
|
|
15338
|
+
waitUntilInstanceStatusOk(
|
|
15339
|
+
args: DescribeInstanceStatusCommandInput,
|
|
15340
|
+
waiterConfig:
|
|
15341
|
+
| number
|
|
15342
|
+
| Pick<
|
|
15343
|
+
WaiterConfiguration<EC2>,
|
|
15344
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15345
|
+
>
|
|
15346
|
+
): Promise<WaiterResult>;
|
|
15347
|
+
waitUntilSystemStatusOk(
|
|
15348
|
+
args: DescribeInstanceStatusCommandInput,
|
|
15349
|
+
waiterConfig:
|
|
15350
|
+
| number
|
|
15351
|
+
| Pick<
|
|
15352
|
+
WaiterConfiguration<EC2>,
|
|
15353
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15354
|
+
>
|
|
15355
|
+
): Promise<WaiterResult>;
|
|
15356
|
+
waitUntilInternetGatewayExists(
|
|
15357
|
+
args: DescribeInternetGatewaysCommandInput,
|
|
15358
|
+
waiterConfig:
|
|
15359
|
+
| number
|
|
15360
|
+
| Pick<
|
|
15361
|
+
WaiterConfiguration<EC2>,
|
|
15362
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15363
|
+
>
|
|
15364
|
+
): Promise<WaiterResult>;
|
|
15365
|
+
waitUntilKeyPairExists(
|
|
15366
|
+
args: DescribeKeyPairsCommandInput,
|
|
15367
|
+
waiterConfig:
|
|
15368
|
+
| number
|
|
15369
|
+
| Pick<
|
|
15370
|
+
WaiterConfiguration<EC2>,
|
|
15371
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15372
|
+
>
|
|
15373
|
+
): Promise<WaiterResult>;
|
|
15374
|
+
waitUntilNatGatewayAvailable(
|
|
15375
|
+
args: DescribeNatGatewaysCommandInput,
|
|
15376
|
+
waiterConfig:
|
|
15377
|
+
| number
|
|
15378
|
+
| Pick<
|
|
15379
|
+
WaiterConfiguration<EC2>,
|
|
15380
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15381
|
+
>
|
|
15382
|
+
): Promise<WaiterResult>;
|
|
15383
|
+
waitUntilNatGatewayDeleted(
|
|
15384
|
+
args: DescribeNatGatewaysCommandInput,
|
|
15385
|
+
waiterConfig:
|
|
15386
|
+
| number
|
|
15387
|
+
| Pick<
|
|
15388
|
+
WaiterConfiguration<EC2>,
|
|
15389
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15390
|
+
>
|
|
15391
|
+
): Promise<WaiterResult>;
|
|
15392
|
+
waitUntilNetworkInterfaceAvailable(
|
|
15393
|
+
args: DescribeNetworkInterfacesCommandInput,
|
|
15394
|
+
waiterConfig:
|
|
15395
|
+
| number
|
|
15396
|
+
| Pick<
|
|
15397
|
+
WaiterConfiguration<EC2>,
|
|
15398
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15399
|
+
>
|
|
15400
|
+
): Promise<WaiterResult>;
|
|
15401
|
+
waitUntilSecurityGroupExists(
|
|
15402
|
+
args: DescribeSecurityGroupsCommandInput,
|
|
15403
|
+
waiterConfig:
|
|
15404
|
+
| number
|
|
15405
|
+
| Pick<
|
|
15406
|
+
WaiterConfiguration<EC2>,
|
|
15407
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15408
|
+
>
|
|
15409
|
+
): Promise<WaiterResult>;
|
|
15410
|
+
waitUntilSecurityGroupVpcAssociationAssociated(
|
|
15411
|
+
args: DescribeSecurityGroupVpcAssociationsCommandInput,
|
|
15412
|
+
waiterConfig:
|
|
15413
|
+
| number
|
|
15414
|
+
| Pick<
|
|
15415
|
+
WaiterConfiguration<EC2>,
|
|
15416
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15417
|
+
>
|
|
15418
|
+
): Promise<WaiterResult>;
|
|
15419
|
+
waitUntilSecurityGroupVpcAssociationDisassociated(
|
|
15420
|
+
args: DescribeSecurityGroupVpcAssociationsCommandInput,
|
|
15421
|
+
waiterConfig:
|
|
15422
|
+
| number
|
|
15423
|
+
| Pick<
|
|
15424
|
+
WaiterConfiguration<EC2>,
|
|
15425
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15426
|
+
>
|
|
15427
|
+
): Promise<WaiterResult>;
|
|
15428
|
+
waitUntilSnapshotCompleted(
|
|
15429
|
+
args: DescribeSnapshotsCommandInput,
|
|
15430
|
+
waiterConfig:
|
|
15431
|
+
| number
|
|
15432
|
+
| Pick<
|
|
15433
|
+
WaiterConfiguration<EC2>,
|
|
15434
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15435
|
+
>
|
|
15436
|
+
): Promise<WaiterResult>;
|
|
15437
|
+
waitUntilSpotInstanceRequestFulfilled(
|
|
15438
|
+
args: DescribeSpotInstanceRequestsCommandInput,
|
|
15439
|
+
waiterConfig:
|
|
15440
|
+
| number
|
|
15441
|
+
| Pick<
|
|
15442
|
+
WaiterConfiguration<EC2>,
|
|
15443
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15444
|
+
>
|
|
15445
|
+
): Promise<WaiterResult>;
|
|
15446
|
+
waitUntilStoreImageTaskComplete(
|
|
15447
|
+
args: DescribeStoreImageTasksCommandInput,
|
|
15448
|
+
waiterConfig:
|
|
15449
|
+
| number
|
|
15450
|
+
| Pick<
|
|
15451
|
+
WaiterConfiguration<EC2>,
|
|
15452
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15453
|
+
>
|
|
15454
|
+
): Promise<WaiterResult>;
|
|
15455
|
+
waitUntilSubnetAvailable(
|
|
15456
|
+
args: DescribeSubnetsCommandInput,
|
|
15457
|
+
waiterConfig:
|
|
15458
|
+
| number
|
|
15459
|
+
| Pick<
|
|
15460
|
+
WaiterConfiguration<EC2>,
|
|
15461
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15462
|
+
>
|
|
15463
|
+
): Promise<WaiterResult>;
|
|
15464
|
+
waitUntilVolumeAvailable(
|
|
15465
|
+
args: DescribeVolumesCommandInput,
|
|
15466
|
+
waiterConfig:
|
|
15467
|
+
| number
|
|
15468
|
+
| Pick<
|
|
15469
|
+
WaiterConfiguration<EC2>,
|
|
15470
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15471
|
+
>
|
|
15472
|
+
): Promise<WaiterResult>;
|
|
15473
|
+
waitUntilVolumeDeleted(
|
|
15474
|
+
args: DescribeVolumesCommandInput,
|
|
15475
|
+
waiterConfig:
|
|
15476
|
+
| number
|
|
15477
|
+
| Pick<
|
|
15478
|
+
WaiterConfiguration<EC2>,
|
|
15479
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15480
|
+
>
|
|
15481
|
+
): Promise<WaiterResult>;
|
|
15482
|
+
waitUntilVolumeInUse(
|
|
15483
|
+
args: DescribeVolumesCommandInput,
|
|
15484
|
+
waiterConfig:
|
|
15485
|
+
| number
|
|
15486
|
+
| Pick<
|
|
15487
|
+
WaiterConfiguration<EC2>,
|
|
15488
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15489
|
+
>
|
|
15490
|
+
): Promise<WaiterResult>;
|
|
15491
|
+
waitUntilVpcPeeringConnectionDeleted(
|
|
15492
|
+
args: DescribeVpcPeeringConnectionsCommandInput,
|
|
15493
|
+
waiterConfig:
|
|
15494
|
+
| number
|
|
15495
|
+
| Pick<
|
|
15496
|
+
WaiterConfiguration<EC2>,
|
|
15497
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15498
|
+
>
|
|
15499
|
+
): Promise<WaiterResult>;
|
|
15500
|
+
waitUntilVpcPeeringConnectionExists(
|
|
15501
|
+
args: DescribeVpcPeeringConnectionsCommandInput,
|
|
15502
|
+
waiterConfig:
|
|
15503
|
+
| number
|
|
15504
|
+
| Pick<
|
|
15505
|
+
WaiterConfiguration<EC2>,
|
|
15506
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15507
|
+
>
|
|
15508
|
+
): Promise<WaiterResult>;
|
|
15509
|
+
waitUntilVpcAvailable(
|
|
15510
|
+
args: DescribeVpcsCommandInput,
|
|
15511
|
+
waiterConfig:
|
|
15512
|
+
| number
|
|
15513
|
+
| Pick<
|
|
15514
|
+
WaiterConfiguration<EC2>,
|
|
15515
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15516
|
+
>
|
|
15517
|
+
): Promise<WaiterResult>;
|
|
15518
|
+
waitUntilVpcExists(
|
|
15519
|
+
args: DescribeVpcsCommandInput,
|
|
15520
|
+
waiterConfig:
|
|
15521
|
+
| number
|
|
15522
|
+
| Pick<
|
|
15523
|
+
WaiterConfiguration<EC2>,
|
|
15524
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15525
|
+
>
|
|
15526
|
+
): Promise<WaiterResult>;
|
|
15527
|
+
waitUntilVpnConnectionAvailable(
|
|
15528
|
+
args: DescribeVpnConnectionsCommandInput,
|
|
15529
|
+
waiterConfig:
|
|
15530
|
+
| number
|
|
15531
|
+
| Pick<
|
|
15532
|
+
WaiterConfiguration<EC2>,
|
|
15533
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15534
|
+
>
|
|
15535
|
+
): Promise<WaiterResult>;
|
|
15536
|
+
waitUntilVpnConnectionDeleted(
|
|
15537
|
+
args: DescribeVpnConnectionsCommandInput,
|
|
15538
|
+
waiterConfig:
|
|
15539
|
+
| number
|
|
15540
|
+
| Pick<
|
|
15541
|
+
WaiterConfiguration<EC2>,
|
|
15542
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15543
|
+
>
|
|
15544
|
+
): Promise<WaiterResult>;
|
|
15545
|
+
waitUntilPasswordDataAvailable(
|
|
15546
|
+
args: GetPasswordDataCommandInput,
|
|
15547
|
+
waiterConfig:
|
|
15548
|
+
| number
|
|
15549
|
+
| Pick<
|
|
15550
|
+
WaiterConfiguration<EC2>,
|
|
15551
|
+
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15552
|
+
>
|
|
15553
|
+
): Promise<WaiterResult>;
|
|
14049
15554
|
}
|
|
14050
15555
|
export declare class EC2 extends EC2Client implements EC2 {}
|