@aws-sdk/client-ec2 3.267.0 → 3.269.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/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_1.js +7 -0
- package/dist-cjs/models/models_4.js +19 -0
- package/dist-cjs/models/models_5.js +4 -0
- package/dist-cjs/models/models_6.js +12 -0
- package/dist-cjs/waiters/index.js +1 -0
- package/dist-cjs/waiters/waitForSnapshotImported.js +59 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_1.js +7 -0
- package/dist-es/models/models_4.js +19 -0
- package/dist-es/models/models_5.js +4 -0
- package/dist-es/models/models_6.js +12 -0
- package/dist-es/waiters/index.js +1 -0
- package/dist-es/waiters/waitForSnapshotImported.js +54 -0
- package/dist-types/EC2.d.ts +6 -13
- package/dist-types/commands/CancelImageLaunchPermissionCommand.d.ts +3 -2
- package/dist-types/commands/DescribeSnapshotsCommand.d.ts +1 -5
- package/dist-types/commands/DescribeVolumesCommand.d.ts +1 -5
- package/dist-types/commands/UnassignPrivateNatGatewayAddressCommand.d.ts +1 -1
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +2 -1
- package/dist-types/models/models_1.d.ts +31 -6
- package/dist-types/models/models_3.d.ts +50 -41
- package/dist-types/models/models_4.d.ts +135 -130
- package/dist-types/models/models_5.d.ts +24 -18
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/waiters/index.d.ts +1 -0
- package/dist-types/ts3.4/waiters/waitForSnapshotImported.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +1 -0
- package/dist-types/waiters/waitForSnapshotImported.d.ts +14 -0
- package/package.json +1 -1
|
@@ -36,8 +36,8 @@ export interface DescribeInstancesResult {
|
|
|
36
36
|
*/
|
|
37
37
|
Reservations?: Reservation[];
|
|
38
38
|
/**
|
|
39
|
-
* <p>The token to
|
|
40
|
-
* when there are no more
|
|
39
|
+
* <p>The token to include in another request to get the next page of items.
|
|
40
|
+
* This value is <code>null</code> when there are no more items to return.</p>
|
|
41
41
|
*/
|
|
42
42
|
NextToken?: string;
|
|
43
43
|
}
|
|
@@ -129,14 +129,15 @@ export interface DescribeInstanceStatusRequest {
|
|
|
129
129
|
*/
|
|
130
130
|
InstanceIds?: string[];
|
|
131
131
|
/**
|
|
132
|
-
* <p>The maximum number of
|
|
133
|
-
*
|
|
132
|
+
* <p>The maximum number of items to return for this request. To retrieve the next page of
|
|
133
|
+
* items, make another request with the token returned in the output. This value
|
|
134
134
|
* can be between 5 and 1000. You cannot specify this parameter and the instance IDs
|
|
135
|
-
* parameter in the same call
|
|
135
|
+
* parameter in the same call. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
|
|
136
136
|
*/
|
|
137
137
|
MaxResults?: number;
|
|
138
138
|
/**
|
|
139
|
-
* <p>The token
|
|
139
|
+
* <p>The token returned from a previous paginated request.
|
|
140
|
+
* Pagination continues from the end of the items returned by the previous request.</p>
|
|
140
141
|
*/
|
|
141
142
|
NextToken?: string;
|
|
142
143
|
/**
|
|
@@ -281,8 +282,8 @@ export interface DescribeInstanceStatusResult {
|
|
|
281
282
|
*/
|
|
282
283
|
InstanceStatuses?: InstanceStatus[];
|
|
283
284
|
/**
|
|
284
|
-
* <p>The token to
|
|
285
|
-
* when there are no more
|
|
285
|
+
* <p>The token to include in another request to get the next page of items.
|
|
286
|
+
* This value is <code>null</code> when there are no more items to return.</p>
|
|
286
287
|
*/
|
|
287
288
|
NextToken?: string;
|
|
288
289
|
}
|
|
@@ -319,12 +320,13 @@ export interface DescribeInstanceTypeOfferingsRequest {
|
|
|
319
320
|
*/
|
|
320
321
|
Filters?: Filter[];
|
|
321
322
|
/**
|
|
322
|
-
* <p>The maximum number of
|
|
323
|
-
*
|
|
323
|
+
* <p>The maximum number of items to return for this request.
|
|
324
|
+
* To get the next page of items, make another request with the token returned in the output.
|
|
325
|
+
* For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
|
|
324
326
|
*/
|
|
325
327
|
MaxResults?: number;
|
|
326
328
|
/**
|
|
327
|
-
* <p>The token
|
|
329
|
+
* <p>The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.</p>
|
|
328
330
|
*/
|
|
329
331
|
NextToken?: string;
|
|
330
332
|
}
|
|
@@ -352,8 +354,8 @@ export interface DescribeInstanceTypeOfferingsResult {
|
|
|
352
354
|
*/
|
|
353
355
|
InstanceTypeOfferings?: InstanceTypeOffering[];
|
|
354
356
|
/**
|
|
355
|
-
* <p>The token to
|
|
356
|
-
* are no more
|
|
357
|
+
* <p>The token to include in another request to get the next page of items. This value is <code>null</code> when there
|
|
358
|
+
* are no more items to return.</p>
|
|
357
359
|
*/
|
|
358
360
|
NextToken?: string;
|
|
359
361
|
}
|
|
@@ -596,12 +598,13 @@ export interface DescribeInstanceTypesRequest {
|
|
|
596
598
|
*/
|
|
597
599
|
Filters?: Filter[];
|
|
598
600
|
/**
|
|
599
|
-
* <p>The maximum number of
|
|
600
|
-
*
|
|
601
|
+
* <p>The maximum number of items to return for this request.
|
|
602
|
+
* To get the next page of items, make another request with the token returned in the output.
|
|
603
|
+
* For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
|
|
601
604
|
*/
|
|
602
605
|
MaxResults?: number;
|
|
603
606
|
/**
|
|
604
|
-
* <p>The token
|
|
607
|
+
* <p>The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.</p>
|
|
605
608
|
*/
|
|
606
609
|
NextToken?: string;
|
|
607
610
|
}
|
|
@@ -1115,8 +1118,8 @@ export interface DescribeInstanceTypesResult {
|
|
|
1115
1118
|
*/
|
|
1116
1119
|
InstanceTypes?: InstanceTypeInfo[];
|
|
1117
1120
|
/**
|
|
1118
|
-
* <p>The token to
|
|
1119
|
-
* are no more
|
|
1121
|
+
* <p>The token to include in another request to get the next page of items. This value is <code>null</code> when there
|
|
1122
|
+
* are no more items to return.</p>
|
|
1120
1123
|
*/
|
|
1121
1124
|
NextToken?: string;
|
|
1122
1125
|
}
|
|
@@ -1165,12 +1168,13 @@ export interface DescribeInternetGatewaysRequest {
|
|
|
1165
1168
|
*/
|
|
1166
1169
|
InternetGatewayIds?: string[];
|
|
1167
1170
|
/**
|
|
1168
|
-
* <p>The token
|
|
1171
|
+
* <p>The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.</p>
|
|
1169
1172
|
*/
|
|
1170
1173
|
NextToken?: string;
|
|
1171
1174
|
/**
|
|
1172
|
-
* <p>The maximum number of
|
|
1173
|
-
* To
|
|
1175
|
+
* <p>The maximum number of items to return for this request.
|
|
1176
|
+
* To get the next page of items, make another request with the token returned in the output.
|
|
1177
|
+
* For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
|
|
1174
1178
|
*/
|
|
1175
1179
|
MaxResults?: number;
|
|
1176
1180
|
}
|
|
@@ -1180,7 +1184,7 @@ export interface DescribeInternetGatewaysResult {
|
|
|
1180
1184
|
*/
|
|
1181
1185
|
InternetGateways?: InternetGateway[];
|
|
1182
1186
|
/**
|
|
1183
|
-
* <p>The token to
|
|
1187
|
+
* <p>The token to include in another request to get the next page of items. This value is <code>null</code> when there are no more items to return.</p>
|
|
1184
1188
|
*/
|
|
1185
1189
|
NextToken?: string;
|
|
1186
1190
|
}
|
|
@@ -2373,8 +2377,9 @@ export interface DescribeNatGatewaysRequest {
|
|
|
2373
2377
|
*/
|
|
2374
2378
|
Filter?: Filter[];
|
|
2375
2379
|
/**
|
|
2376
|
-
* <p>The maximum number of
|
|
2377
|
-
* To
|
|
2380
|
+
* <p>The maximum number of items to return for this request.
|
|
2381
|
+
* To get the next page of items, make another request with the token returned in the output.
|
|
2382
|
+
* For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
|
|
2378
2383
|
*/
|
|
2379
2384
|
MaxResults?: number;
|
|
2380
2385
|
/**
|
|
@@ -2382,7 +2387,7 @@ export interface DescribeNatGatewaysRequest {
|
|
|
2382
2387
|
*/
|
|
2383
2388
|
NatGatewayIds?: string[];
|
|
2384
2389
|
/**
|
|
2385
|
-
* <p>The token
|
|
2390
|
+
* <p>The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.</p>
|
|
2386
2391
|
*/
|
|
2387
2392
|
NextToken?: string;
|
|
2388
2393
|
}
|
|
@@ -2392,7 +2397,7 @@ export interface DescribeNatGatewaysResult {
|
|
|
2392
2397
|
*/
|
|
2393
2398
|
NatGateways?: NatGateway[];
|
|
2394
2399
|
/**
|
|
2395
|
-
* <p>The token to
|
|
2400
|
+
* <p>The token to include in another request to get the next page of items. This value is <code>null</code> when there are no more items to return.</p>
|
|
2396
2401
|
*/
|
|
2397
2402
|
NextToken?: string;
|
|
2398
2403
|
}
|
|
@@ -2494,12 +2499,13 @@ export interface DescribeNetworkAclsRequest {
|
|
|
2494
2499
|
*/
|
|
2495
2500
|
NetworkAclIds?: string[];
|
|
2496
2501
|
/**
|
|
2497
|
-
* <p>The token
|
|
2502
|
+
* <p>The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.</p>
|
|
2498
2503
|
*/
|
|
2499
2504
|
NextToken?: string;
|
|
2500
2505
|
/**
|
|
2501
|
-
* <p>The maximum number of
|
|
2502
|
-
* To
|
|
2506
|
+
* <p>The maximum number of items to return for this request.
|
|
2507
|
+
* To get the next page of items, make another request with the token returned in the output.
|
|
2508
|
+
* For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
|
|
2503
2509
|
*/
|
|
2504
2510
|
MaxResults?: number;
|
|
2505
2511
|
}
|
|
@@ -2509,7 +2515,7 @@ export interface DescribeNetworkAclsResult {
|
|
|
2509
2515
|
*/
|
|
2510
2516
|
NetworkAcls?: NetworkAcl[];
|
|
2511
2517
|
/**
|
|
2512
|
-
* <p>The token to
|
|
2518
|
+
* <p>The token to include in another request to get the next page of items. This value is <code>null</code> when there are no more items to return.</p>
|
|
2513
2519
|
*/
|
|
2514
2520
|
NextToken?: string;
|
|
2515
2521
|
}
|
|
@@ -2916,12 +2922,15 @@ export interface DescribeNetworkInterfacePermissionsRequest {
|
|
|
2916
2922
|
*/
|
|
2917
2923
|
Filters?: Filter[];
|
|
2918
2924
|
/**
|
|
2919
|
-
* <p>The token
|
|
2925
|
+
* <p>The token returned from a previous paginated request.
|
|
2926
|
+
* Pagination continues from the end of the items returned by the previous request.</p>
|
|
2920
2927
|
*/
|
|
2921
2928
|
NextToken?: string;
|
|
2922
2929
|
/**
|
|
2923
|
-
* <p>The maximum number of
|
|
2924
|
-
* make another
|
|
2930
|
+
* <p>The maximum number of items to return for this request. To get the next page of items,
|
|
2931
|
+
* make another request with the token returned in the output. If this parameter is not specified,
|
|
2932
|
+
* up to 50 results are returned by default. For more information, see
|
|
2933
|
+
* <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
|
|
2925
2934
|
*/
|
|
2926
2935
|
MaxResults?: number;
|
|
2927
2936
|
}
|
|
@@ -2934,7 +2943,8 @@ export interface DescribeNetworkInterfacePermissionsResult {
|
|
|
2934
2943
|
*/
|
|
2935
2944
|
NetworkInterfacePermissions?: NetworkInterfacePermission[];
|
|
2936
2945
|
/**
|
|
2937
|
-
* <p>The token to
|
|
2946
|
+
* <p>The token to include in another request to get the next page of items.
|
|
2947
|
+
* This value is <code>null</code> when there are no more items to return.</p>
|
|
2938
2948
|
*/
|
|
2939
2949
|
NextToken?: string;
|
|
2940
2950
|
}
|
|
@@ -3121,26 +3131,26 @@ export interface DescribeNetworkInterfacesRequest {
|
|
|
3121
3131
|
*/
|
|
3122
3132
|
NetworkInterfaceIds?: string[];
|
|
3123
3133
|
/**
|
|
3124
|
-
* <p>The token
|
|
3134
|
+
* <p>The token returned from a previous paginated request.
|
|
3135
|
+
* Pagination continues from the end of the items returned by the previous request.</p>
|
|
3125
3136
|
*/
|
|
3126
3137
|
NextToken?: string;
|
|
3127
3138
|
/**
|
|
3128
|
-
* <p>The maximum number of items to return for this request.
|
|
3129
|
-
*
|
|
3130
|
-
*
|
|
3139
|
+
* <p>The maximum number of items to return for this request. To get the next page of items,
|
|
3140
|
+
* make another request with the token returned in the output. You cannot specify this
|
|
3141
|
+
* parameter and the network interface IDs parameter in the same request. For more information,
|
|
3142
|
+
* see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
|
|
3131
3143
|
*/
|
|
3132
3144
|
MaxResults?: number;
|
|
3133
3145
|
}
|
|
3134
|
-
/**
|
|
3135
|
-
* <p>Contains the output of DescribeNetworkInterfaces.</p>
|
|
3136
|
-
*/
|
|
3137
3146
|
export interface DescribeNetworkInterfacesResult {
|
|
3138
3147
|
/**
|
|
3139
3148
|
* <p>Information about one or more network interfaces.</p>
|
|
3140
3149
|
*/
|
|
3141
3150
|
NetworkInterfaces?: NetworkInterface[];
|
|
3142
3151
|
/**
|
|
3143
|
-
* <p>The token to
|
|
3152
|
+
* <p>The token to include in another request to get the next page of items.
|
|
3153
|
+
* This value is <code>null</code> when there are no more items to return.</p>
|
|
3144
3154
|
*/
|
|
3145
3155
|
NextToken?: string;
|
|
3146
3156
|
}
|
|
@@ -3499,12 +3509,14 @@ export interface DescribeReplaceRootVolumeTasksRequest {
|
|
|
3499
3509
|
*/
|
|
3500
3510
|
Filters?: Filter[];
|
|
3501
3511
|
/**
|
|
3502
|
-
* <p>The maximum number of
|
|
3503
|
-
* To
|
|
3512
|
+
* <p>The maximum number of items to return for this request.
|
|
3513
|
+
* To get the next page of items, make another request with the token returned in the output.
|
|
3514
|
+
* For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
|
|
3504
3515
|
*/
|
|
3505
3516
|
MaxResults?: number;
|
|
3506
3517
|
/**
|
|
3507
|
-
* <p>The token
|
|
3518
|
+
* <p>The token returned from a previous paginated request.
|
|
3519
|
+
* Pagination continues from the end of the items returned by the previous request.</p>
|
|
3508
3520
|
*/
|
|
3509
3521
|
NextToken?: string;
|
|
3510
3522
|
/**
|
|
@@ -3520,7 +3532,8 @@ export interface DescribeReplaceRootVolumeTasksResult {
|
|
|
3520
3532
|
*/
|
|
3521
3533
|
ReplaceRootVolumeTasks?: ReplaceRootVolumeTask[];
|
|
3522
3534
|
/**
|
|
3523
|
-
* <p>The token to
|
|
3535
|
+
* <p>The token to include in another request to get the next page of items.
|
|
3536
|
+
* This value is <code>null</code> when there are no more items to return.</p>
|
|
3524
3537
|
*/
|
|
3525
3538
|
NextToken?: string;
|
|
3526
3539
|
}
|
|
@@ -4329,12 +4342,13 @@ export interface DescribeRouteTablesRequest {
|
|
|
4329
4342
|
*/
|
|
4330
4343
|
RouteTableIds?: string[];
|
|
4331
4344
|
/**
|
|
4332
|
-
* <p>The token
|
|
4345
|
+
* <p>The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.</p>
|
|
4333
4346
|
*/
|
|
4334
4347
|
NextToken?: string;
|
|
4335
4348
|
/**
|
|
4336
|
-
* <p>The maximum number of
|
|
4337
|
-
* To
|
|
4349
|
+
* <p>The maximum number of items to return for this request.
|
|
4350
|
+
* To get the next page of items, make another request with the token returned in the output.
|
|
4351
|
+
* For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
|
|
4338
4352
|
*/
|
|
4339
4353
|
MaxResults?: number;
|
|
4340
4354
|
}
|
|
@@ -4347,7 +4361,7 @@ export interface DescribeRouteTablesResult {
|
|
|
4347
4361
|
*/
|
|
4348
4362
|
RouteTables?: RouteTable[];
|
|
4349
4363
|
/**
|
|
4350
|
-
* <p>The token to
|
|
4364
|
+
* <p>The token to include in another request to get the next page of items. This value is <code>null</code> when there are no more items to return.</p>
|
|
4351
4365
|
*/
|
|
4352
4366
|
NextToken?: string;
|
|
4353
4367
|
}
|
|
@@ -4759,14 +4773,15 @@ export interface DescribeSecurityGroupRulesRequest {
|
|
|
4759
4773
|
*/
|
|
4760
4774
|
DryRun?: boolean;
|
|
4761
4775
|
/**
|
|
4762
|
-
* <p>The token
|
|
4776
|
+
* <p>The token returned from a previous paginated request.
|
|
4777
|
+
* Pagination continues from the end of the items returned by the previous request.</p>
|
|
4763
4778
|
*/
|
|
4764
4779
|
NextToken?: string;
|
|
4765
4780
|
/**
|
|
4766
|
-
* <p>The maximum number of
|
|
4767
|
-
*
|
|
4768
|
-
* can be between 5 and 1000. If this parameter is not specified, then all
|
|
4769
|
-
* returned
|
|
4781
|
+
* <p>The maximum number of items to return for this request. To get the next page of
|
|
4782
|
+
* items, make another request with the token returned in the output. This value
|
|
4783
|
+
* can be between 5 and 1000. If this parameter is not specified, then all items are
|
|
4784
|
+
* returned. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
|
|
4770
4785
|
*/
|
|
4771
4786
|
MaxResults?: number;
|
|
4772
4787
|
}
|
|
@@ -4776,7 +4791,8 @@ export interface DescribeSecurityGroupRulesResult {
|
|
|
4776
4791
|
*/
|
|
4777
4792
|
SecurityGroupRules?: SecurityGroupRule[];
|
|
4778
4793
|
/**
|
|
4779
|
-
* <p>The token to
|
|
4794
|
+
* <p>The token to include in another request to get the next page of items.
|
|
4795
|
+
* This value is <code>null</code> when there are no more items to return.</p>
|
|
4780
4796
|
*/
|
|
4781
4797
|
NextToken?: string;
|
|
4782
4798
|
}
|
|
@@ -4926,14 +4942,15 @@ export interface DescribeSecurityGroupsRequest {
|
|
|
4926
4942
|
*/
|
|
4927
4943
|
DryRun?: boolean;
|
|
4928
4944
|
/**
|
|
4929
|
-
* <p>The token
|
|
4945
|
+
* <p>The token returned from a previous paginated request.
|
|
4946
|
+
* Pagination continues from the end of the items returned by the previous request.</p>
|
|
4930
4947
|
*/
|
|
4931
4948
|
NextToken?: string;
|
|
4932
4949
|
/**
|
|
4933
|
-
* <p>The maximum number of
|
|
4934
|
-
*
|
|
4935
|
-
*
|
|
4936
|
-
*
|
|
4950
|
+
* <p>The maximum number of items to return for this request. To get the next page of items,
|
|
4951
|
+
* make another request with the token returned in the output. This value can be between 5 and 1000.
|
|
4952
|
+
* If this parameter is not specified, then all items are returned. For more information, see
|
|
4953
|
+
* <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
|
|
4937
4954
|
*/
|
|
4938
4955
|
MaxResults?: number;
|
|
4939
4956
|
}
|
|
@@ -4980,7 +4997,8 @@ export interface DescribeSecurityGroupsResult {
|
|
|
4980
4997
|
*/
|
|
4981
4998
|
SecurityGroups?: SecurityGroup[];
|
|
4982
4999
|
/**
|
|
4983
|
-
* <p>The token to
|
|
5000
|
+
* <p>The token to include in another request to get the next page of items.
|
|
5001
|
+
* This value is <code>null</code> when there are no more items to return.</p>
|
|
4984
5002
|
*/
|
|
4985
5003
|
NextToken?: string;
|
|
4986
5004
|
}
|
|
@@ -5102,23 +5120,16 @@ export interface DescribeSnapshotsRequest {
|
|
|
5102
5120
|
*/
|
|
5103
5121
|
Filters?: Filter[];
|
|
5104
5122
|
/**
|
|
5105
|
-
* <p>The maximum number of
|
|
5106
|
-
*
|
|
5107
|
-
*
|
|
5108
|
-
*
|
|
5109
|
-
*
|
|
5110
|
-
* value can be between 5 and 1,000; if <code>MaxResults</code> is given a value larger than 1,000,
|
|
5111
|
-
* only 1,000 results are returned. If this parameter is not used, then
|
|
5112
|
-
* <code>DescribeSnapshots</code> returns all results. You cannot specify this parameter and
|
|
5113
|
-
* the snapshot IDs parameter in the same request.</p>
|
|
5123
|
+
* <p>The maximum number of snapshots to return for this request.
|
|
5124
|
+
* This value can be between 5 and 1,000; if this value is larger than 1,000, only 1,000 results are returned.
|
|
5125
|
+
* If this parameter is not used, then the request returns all snapshots.
|
|
5126
|
+
* You cannot specify this parameter and the snapshot IDs parameter in the same request. For more information,
|
|
5127
|
+
* see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
|
|
5114
5128
|
*/
|
|
5115
5129
|
MaxResults?: number;
|
|
5116
5130
|
/**
|
|
5117
|
-
* <p>The
|
|
5118
|
-
*
|
|
5119
|
-
* results exceeded the value of that parameter. Pagination continues from the end of the
|
|
5120
|
-
* previous results that returned the <code>NextToken</code> value. This value is
|
|
5121
|
-
* <code>null</code> when there are no more results to return.</p>
|
|
5131
|
+
* <p>The token returned from a previous paginated request.
|
|
5132
|
+
* Pagination continues from the end of the items returned by the previous request.</p>
|
|
5122
5133
|
*/
|
|
5123
5134
|
NextToken?: string;
|
|
5124
5135
|
/**
|
|
@@ -5148,10 +5159,8 @@ export interface DescribeSnapshotsResult {
|
|
|
5148
5159
|
*/
|
|
5149
5160
|
Snapshots?: Snapshot[];
|
|
5150
5161
|
/**
|
|
5151
|
-
* <p>The
|
|
5152
|
-
*
|
|
5153
|
-
* <code>MaxResults</code>, this value can be used to retrieve the next page of results. This
|
|
5154
|
-
* value is <code>null</code> when there are no more results to return.</p>
|
|
5162
|
+
* <p>The token to include in another request to return the next page of snapshots.
|
|
5163
|
+
* This value is <code>null</code> when there are no more snapshots to return.</p>
|
|
5155
5164
|
*/
|
|
5156
5165
|
NextToken?: string;
|
|
5157
5166
|
}
|
|
@@ -5183,12 +5192,14 @@ export interface DescribeSnapshotTierStatusRequest {
|
|
|
5183
5192
|
*/
|
|
5184
5193
|
DryRun?: boolean;
|
|
5185
5194
|
/**
|
|
5186
|
-
* <p>The token
|
|
5195
|
+
* <p>The token returned from a previous paginated request.
|
|
5196
|
+
* Pagination continues from the end of the items returned by the previous request.</p>
|
|
5187
5197
|
*/
|
|
5188
5198
|
NextToken?: string;
|
|
5189
5199
|
/**
|
|
5190
|
-
* <p>The maximum number of
|
|
5191
|
-
* To
|
|
5200
|
+
* <p>The maximum number of items to return for this request.
|
|
5201
|
+
* To get the next page of items, make another request with the token returned in the output.
|
|
5202
|
+
* For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
|
|
5192
5203
|
*/
|
|
5193
5204
|
MaxResults?: number;
|
|
5194
5205
|
}
|
|
@@ -5266,7 +5277,8 @@ export interface DescribeSnapshotTierStatusResult {
|
|
|
5266
5277
|
*/
|
|
5267
5278
|
SnapshotTierStatuses?: SnapshotTierStatus[];
|
|
5268
5279
|
/**
|
|
5269
|
-
* <p>The token to
|
|
5280
|
+
* <p>The token to include in another request to get the next page of items.
|
|
5281
|
+
* This value is <code>null</code> when there are no more items to return.</p>
|
|
5270
5282
|
*/
|
|
5271
5283
|
NextToken?: string;
|
|
5272
5284
|
}
|
|
@@ -6786,11 +6798,14 @@ export interface DescribeStaleSecurityGroupsRequest {
|
|
|
6786
6798
|
*/
|
|
6787
6799
|
DryRun?: boolean;
|
|
6788
6800
|
/**
|
|
6789
|
-
* <p>The maximum number of items to return for this request.
|
|
6801
|
+
* <p>The maximum number of items to return for this request. To get the next page of items,
|
|
6802
|
+
* make another request with the token returned in the output. For more information,
|
|
6803
|
+
* see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
|
|
6790
6804
|
*/
|
|
6791
6805
|
MaxResults?: number;
|
|
6792
6806
|
/**
|
|
6793
|
-
* <p>The token
|
|
6807
|
+
* <p>The token returned from a previous paginated request.
|
|
6808
|
+
* Pagination continues from the end of the items returned by the previous request.</p>
|
|
6794
6809
|
*/
|
|
6795
6810
|
NextToken?: string;
|
|
6796
6811
|
/**
|
|
@@ -6860,7 +6875,8 @@ export interface StaleSecurityGroup {
|
|
|
6860
6875
|
}
|
|
6861
6876
|
export interface DescribeStaleSecurityGroupsResult {
|
|
6862
6877
|
/**
|
|
6863
|
-
* <p>The token to
|
|
6878
|
+
* <p>The token to include in another request to get the next page of items.
|
|
6879
|
+
* If there are no additional items to return, the string is empty.</p>
|
|
6864
6880
|
*/
|
|
6865
6881
|
NextToken?: string;
|
|
6866
6882
|
/**
|
|
@@ -7103,12 +7119,13 @@ export interface DescribeSubnetsRequest {
|
|
|
7103
7119
|
*/
|
|
7104
7120
|
DryRun?: boolean;
|
|
7105
7121
|
/**
|
|
7106
|
-
* <p>The token
|
|
7122
|
+
* <p>The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.</p>
|
|
7107
7123
|
*/
|
|
7108
7124
|
NextToken?: string;
|
|
7109
7125
|
/**
|
|
7110
|
-
* <p>The maximum number of
|
|
7111
|
-
* To
|
|
7126
|
+
* <p>The maximum number of items to return for this request.
|
|
7127
|
+
* To get the next page of items, make another request with the token returned in the output.
|
|
7128
|
+
* For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
|
|
7112
7129
|
*/
|
|
7113
7130
|
MaxResults?: number;
|
|
7114
7131
|
}
|
|
@@ -7118,7 +7135,7 @@ export interface DescribeSubnetsResult {
|
|
|
7118
7135
|
*/
|
|
7119
7136
|
Subnets?: Subnet[];
|
|
7120
7137
|
/**
|
|
7121
|
-
* <p>The token to
|
|
7138
|
+
* <p>The token to include in another request to get the next page of items. This value is <code>null</code> when there are no more items to return.</p>
|
|
7122
7139
|
*/
|
|
7123
7140
|
NextToken?: string;
|
|
7124
7141
|
}
|
|
@@ -7158,13 +7175,14 @@ export interface DescribeTagsRequest {
|
|
|
7158
7175
|
*/
|
|
7159
7176
|
Filters?: Filter[];
|
|
7160
7177
|
/**
|
|
7161
|
-
* <p>The maximum number of
|
|
7162
|
-
*
|
|
7163
|
-
*
|
|
7178
|
+
* <p>The maximum number of items to return for this request. This value can be between 5 and 1000.
|
|
7179
|
+
* To get the next page of items, make another request with the token returned in the output.
|
|
7180
|
+
* For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
|
|
7164
7181
|
*/
|
|
7165
7182
|
MaxResults?: number;
|
|
7166
7183
|
/**
|
|
7167
|
-
* <p>The token
|
|
7184
|
+
* <p>The token returned from a previous paginated request.
|
|
7185
|
+
* Pagination continues from the end of the items returned by the previous request.</p>
|
|
7168
7186
|
*/
|
|
7169
7187
|
NextToken?: string;
|
|
7170
7188
|
}
|
|
@@ -7191,8 +7209,8 @@ export interface TagDescription {
|
|
|
7191
7209
|
}
|
|
7192
7210
|
export interface DescribeTagsResult {
|
|
7193
7211
|
/**
|
|
7194
|
-
* <p>The token to
|
|
7195
|
-
* <code>null</code> when there are no more
|
|
7212
|
+
* <p>The token to include in another request to get the next page of items.
|
|
7213
|
+
* This value is <code>null</code> when there are no more items to return.</p>
|
|
7196
7214
|
*/
|
|
7197
7215
|
NextToken?: string;
|
|
7198
7216
|
/**
|
|
@@ -8475,23 +8493,15 @@ export interface DescribeVolumesRequest {
|
|
|
8475
8493
|
*/
|
|
8476
8494
|
DryRun?: boolean;
|
|
8477
8495
|
/**
|
|
8478
|
-
* <p>The maximum number of
|
|
8479
|
-
*
|
|
8480
|
-
*
|
|
8481
|
-
*
|
|
8482
|
-
* <code>DescribeVolumes</code> request with the returned <code>NextToken</code> value. This
|
|
8483
|
-
* value can be between 5 and 500; if <code>MaxResults</code> is given a value larger than 500,
|
|
8484
|
-
* only 500 results are returned. If this parameter is not used, then
|
|
8485
|
-
* <code>DescribeVolumes</code> returns all results. You cannot specify this parameter and the
|
|
8486
|
-
* volume IDs parameter in the same request.</p>
|
|
8496
|
+
* <p>The maximum number of volumes to return for this request.
|
|
8497
|
+
* This value can be between 5 and 500; if you specify a value larger than 500, only 500 items are returned.
|
|
8498
|
+
* If this parameter is not used, then all items are returned. You cannot specify this parameter and the
|
|
8499
|
+
* volume IDs parameter in the same request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
|
|
8487
8500
|
*/
|
|
8488
8501
|
MaxResults?: number;
|
|
8489
8502
|
/**
|
|
8490
|
-
* <p>The
|
|
8491
|
-
*
|
|
8492
|
-
* exceeded the value of that parameter. Pagination continues from the end of the previous
|
|
8493
|
-
* results that returned the <code>NextToken</code> value. This value is <code>null</code> when
|
|
8494
|
-
* there are no more results to return.</p>
|
|
8503
|
+
* <p>The token returned from a previous paginated request.
|
|
8504
|
+
* Pagination continues from the end of the items returned from the previous request.</p>
|
|
8495
8505
|
*/
|
|
8496
8506
|
NextToken?: string;
|
|
8497
8507
|
}
|
|
@@ -8501,10 +8511,8 @@ export interface DescribeVolumesResult {
|
|
|
8501
8511
|
*/
|
|
8502
8512
|
Volumes?: Volume[];
|
|
8503
8513
|
/**
|
|
8504
|
-
* <p>The
|
|
8505
|
-
*
|
|
8506
|
-
* <code>MaxResults</code>, this value can be used to retrieve the next page of results. This
|
|
8507
|
-
* value is <code>null</code> when there are no more results to return.</p>
|
|
8514
|
+
* <p>The token to include in another request to get the next page of items.
|
|
8515
|
+
* This value is <code>null</code> when there are no more items to return.</p>
|
|
8508
8516
|
*/
|
|
8509
8517
|
NextToken?: string;
|
|
8510
8518
|
}
|
|
@@ -8573,12 +8581,13 @@ export interface DescribeVolumesModificationsRequest {
|
|
|
8573
8581
|
*/
|
|
8574
8582
|
Filters?: Filter[];
|
|
8575
8583
|
/**
|
|
8576
|
-
* <p>The
|
|
8584
|
+
* <p>The token returned by a previous paginated request.
|
|
8585
|
+
* Pagination continues from the end of the items returned by the previous request.</p>
|
|
8577
8586
|
*/
|
|
8578
8587
|
NextToken?: string;
|
|
8579
8588
|
/**
|
|
8580
8589
|
* <p>The maximum number of results (up to a limit of 500) to be returned in a paginated
|
|
8581
|
-
* request
|
|
8590
|
+
* request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
|
|
8582
8591
|
*/
|
|
8583
8592
|
MaxResults?: number;
|
|
8584
8593
|
}
|
|
@@ -8665,7 +8674,8 @@ export interface DescribeVolumesModificationsResult {
|
|
|
8665
8674
|
*/
|
|
8666
8675
|
VolumesModifications?: VolumeModification[];
|
|
8667
8676
|
/**
|
|
8668
|
-
* <p>
|
|
8677
|
+
* <p>The token to include in another request to get the next page of items.
|
|
8678
|
+
* This value is <code>null</code> if there are no more items to return.</p>
|
|
8669
8679
|
*/
|
|
8670
8680
|
NextToken?: string;
|
|
8671
8681
|
}
|
|
@@ -8736,21 +8746,16 @@ export interface DescribeVolumeStatusRequest {
|
|
|
8736
8746
|
*/
|
|
8737
8747
|
Filters?: Filter[];
|
|
8738
8748
|
/**
|
|
8739
|
-
* <p>The maximum number of
|
|
8740
|
-
*
|
|
8741
|
-
*
|
|
8742
|
-
*
|
|
8743
|
-
* request
|
|
8744
|
-
* if <code>MaxResults</code> is given a value larger than 1,000, only 1,000 results are returned.
|
|
8745
|
-
* If this parameter is not used, then <code>DescribeVolumeStatus</code> returns all results. You
|
|
8746
|
-
* cannot specify this parameter and the volume IDs parameter in the same request.</p>
|
|
8749
|
+
* <p>The maximum number of items to return for this request. To get the next page of items,
|
|
8750
|
+
* make another request with the token returned in the output. This value can be between 5 and 1,000;
|
|
8751
|
+
* if the value is larger than 1,000, only 1,000 results are returned. If this parameter is not used,
|
|
8752
|
+
* then all items are returned. You cannot specify this parameter and the volume IDs parameter in the
|
|
8753
|
+
* same request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination">Pagination</a>.</p>
|
|
8747
8754
|
*/
|
|
8748
8755
|
MaxResults?: number;
|
|
8749
8756
|
/**
|
|
8750
|
-
* <p>The
|
|
8751
|
-
*
|
|
8752
|
-
* used to retrieve the next page of results. This value is <code>null</code> when there are no
|
|
8753
|
-
* more results to return.</p>
|
|
8757
|
+
* <p>The token returned from a previous paginated request.
|
|
8758
|
+
* Pagination continues from the end of the items returned by the previous request.</p>
|
|
8754
8759
|
*/
|
|
8755
8760
|
NextToken?: string;
|
|
8756
8761
|
/**
|