@aws-sdk/client-ec2 3.977.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 +1228 -1017
- package/dist-es/EC2.js +411 -1
- 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/SearchTransitGatewayRoutesCommand.d.ts +2 -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/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
|
@@ -48,6 +48,7 @@ declare const SearchTransitGatewayRoutesCommand_base: {
|
|
|
48
48
|
* ],
|
|
49
49
|
* MaxResults: Number("int"),
|
|
50
50
|
* DryRun: true || false,
|
|
51
|
+
* NextToken: "STRING_VALUE",
|
|
51
52
|
* };
|
|
52
53
|
* const command = new SearchTransitGatewayRoutesCommand(input);
|
|
53
54
|
* const response = await client.send(command);
|
|
@@ -69,6 +70,7 @@ declare const SearchTransitGatewayRoutesCommand_base: {
|
|
|
69
70
|
* // },
|
|
70
71
|
* // ],
|
|
71
72
|
* // AdditionalRoutesAvailable: true || false,
|
|
73
|
+
* // NextToken: "STRING_VALUE",
|
|
72
74
|
* // };
|
|
73
75
|
*
|
|
74
76
|
* ```
|
|
@@ -5458,6 +5458,11 @@ export interface SearchTransitGatewayRoutesRequest {
|
|
|
5458
5458
|
* @public
|
|
5459
5459
|
*/
|
|
5460
5460
|
DryRun?: boolean | undefined;
|
|
5461
|
+
/**
|
|
5462
|
+
* <p>The token for the next page of results.</p>
|
|
5463
|
+
* @public
|
|
5464
|
+
*/
|
|
5465
|
+
NextToken?: string | undefined;
|
|
5461
5466
|
}
|
|
5462
5467
|
/**
|
|
5463
5468
|
* @public
|
|
@@ -5473,6 +5478,11 @@ export interface SearchTransitGatewayRoutesResult {
|
|
|
5473
5478
|
* @public
|
|
5474
5479
|
*/
|
|
5475
5480
|
AdditionalRoutesAvailable?: boolean | undefined;
|
|
5481
|
+
/**
|
|
5482
|
+
* <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
|
|
5483
|
+
* @public
|
|
5484
|
+
*/
|
|
5485
|
+
NextToken?: string | undefined;
|
|
5476
5486
|
}
|
|
5477
5487
|
/**
|
|
5478
5488
|
* @public
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { SearchTransitGatewayRoutesCommandInput, SearchTransitGatewayRoutesCommandOutput } from "../commands/SearchTransitGatewayRoutesCommand";
|
|
3
|
+
import { EC2PaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateSearchTransitGatewayRoutes: (config: EC2PaginationConfiguration, input: SearchTransitGatewayRoutesCommandInput, ...rest: any[]) => Paginator<SearchTransitGatewayRoutesCommandOutput>;
|
|
@@ -162,3 +162,4 @@ export * from "./ListImagesInRecycleBinPaginator";
|
|
|
162
162
|
export * from "./ListSnapshotsInRecycleBinPaginator";
|
|
163
163
|
export * from "./SearchLocalGatewayRoutesPaginator";
|
|
164
164
|
export * from "./SearchTransitGatewayMulticastGroupsPaginator";
|
|
165
|
+
export * from "./SearchTransitGatewayRoutesPaginator";
|