@aws-sdk/client-ebs 3.169.0 → 3.170.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.
@@ -1,314 +1,339 @@
1
-
2
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
3
- import { Readable } from "stream";
4
- import { EBSServiceException as __BaseException } from "./EBSServiceException";
5
- export declare enum AccessDeniedExceptionReason {
6
- DEPENDENCY_ACCESS_DENIED = "DEPENDENCY_ACCESS_DENIED",
7
- UNAUTHORIZED_ACCOUNT = "UNAUTHORIZED_ACCOUNT"
8
- }
9
-
10
- export declare class AccessDeniedException extends __BaseException {
11
- readonly name: "AccessDeniedException";
12
- readonly $fault: "client";
13
- Message?: string;
14
-
15
- Reason: AccessDeniedExceptionReason | string | undefined;
16
-
17
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
18
- }
19
-
20
- export interface Block {
21
-
22
- BlockIndex?: number;
23
-
24
- BlockToken?: string;
25
- }
26
-
27
- export interface ChangedBlock {
28
-
29
- BlockIndex?: number;
30
-
31
- FirstBlockToken?: string;
32
-
33
- SecondBlockToken?: string;
34
- }
35
- export declare enum ChecksumAggregationMethod {
36
- CHECKSUM_AGGREGATION_LINEAR = "LINEAR"
37
- }
38
- export declare enum ChecksumAlgorithm {
39
- CHECKSUM_ALGORITHM_SHA256 = "SHA256"
40
- }
41
- export interface CompleteSnapshotRequest {
42
-
43
- SnapshotId: string | undefined;
44
-
45
- ChangedBlocksCount: number | undefined;
46
-
47
- Checksum?: string;
48
-
49
- ChecksumAlgorithm?: ChecksumAlgorithm | string;
50
-
51
- ChecksumAggregationMethod?: ChecksumAggregationMethod | string;
52
- }
53
- export declare enum Status {
54
- COMPLETED = "completed",
55
- ERROR = "error",
56
- PENDING = "pending"
57
- }
58
- export interface CompleteSnapshotResponse {
59
-
60
- Status?: Status | string;
61
- }
62
-
63
- export declare class InternalServerException extends __BaseException {
64
- readonly name: "InternalServerException";
65
- readonly $fault: "server";
66
- Message?: string;
67
-
68
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
69
- }
70
- export declare enum RequestThrottledExceptionReason {
71
- ACCOUNT_THROTTLED = "ACCOUNT_THROTTLED",
72
- DEPENDENCY_REQUEST_THROTTLED = "DEPENDENCY_REQUEST_THROTTLED",
73
- RESOURCE_LEVEL_THROTTLE = "RESOURCE_LEVEL_THROTTLE"
74
- }
75
-
76
- export declare class RequestThrottledException extends __BaseException {
77
- readonly name: "RequestThrottledException";
78
- readonly $fault: "client";
79
- Message?: string;
80
-
81
- Reason?: RequestThrottledExceptionReason | string;
82
-
83
- constructor(opts: __ExceptionOptionType<RequestThrottledException, __BaseException>);
84
- }
85
- export declare enum ResourceNotFoundExceptionReason {
86
- DEPENDENCY_RESOURCE_NOT_FOUND = "DEPENDENCY_RESOURCE_NOT_FOUND",
87
- SNAPSHOT_NOT_FOUND = "SNAPSHOT_NOT_FOUND"
88
- }
89
-
90
- export declare class ResourceNotFoundException extends __BaseException {
91
- readonly name: "ResourceNotFoundException";
92
- readonly $fault: "client";
93
- Message?: string;
94
-
95
- Reason?: ResourceNotFoundExceptionReason | string;
96
-
97
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
98
- }
99
- export declare enum ServiceQuotaExceededExceptionReason {
100
- DEPENDENCY_SERVICE_QUOTA_EXCEEDED = "DEPENDENCY_SERVICE_QUOTA_EXCEEDED"
101
- }
102
-
103
- export declare class ServiceQuotaExceededException extends __BaseException {
104
- readonly name: "ServiceQuotaExceededException";
105
- readonly $fault: "client";
106
- Message?: string;
107
-
108
- Reason?: ServiceQuotaExceededExceptionReason | string;
109
-
110
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
111
- }
112
- export declare enum ValidationExceptionReason {
113
- CONFLICTING_BLOCK_UPDATE = "CONFLICTING_BLOCK_UPDATE",
114
- INVALID_BLOCK = "INVALID_BLOCK",
115
- INVALID_BLOCK_TOKEN = "INVALID_BLOCK_TOKEN",
116
- INVALID_CONTENT_ENCODING = "INVALID_CONTENT_ENCODING",
117
- INVALID_CUSTOMER_KEY = "INVALID_CUSTOMER_KEY",
118
- INVALID_DEPENDENCY_REQUEST = "INVALID_DEPENDENCY_REQUEST",
119
- INVALID_PAGE_TOKEN = "INVALID_PAGE_TOKEN",
120
- INVALID_PARAMETER_VALUE = "INVALID_PARAMETER_VALUE",
121
- INVALID_SNAPSHOT_ID = "INVALID_SNAPSHOT_ID",
122
- INVALID_TAG = "INVALID_TAG",
123
- INVALID_VOLUME_SIZE = "INVALID_VOLUME_SIZE",
124
- UNRELATED_SNAPSHOTS = "UNRELATED_SNAPSHOTS"
125
- }
126
-
127
- export declare class ValidationException extends __BaseException {
128
- readonly name: "ValidationException";
129
- readonly $fault: "client";
130
- Message?: string;
131
-
132
- Reason?: ValidationExceptionReason | string;
133
-
134
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
135
- }
136
-
137
- export declare class ConcurrentLimitExceededException extends __BaseException {
138
- readonly name: "ConcurrentLimitExceededException";
139
- readonly $fault: "client";
140
- Message?: string;
141
-
142
- constructor(opts: __ExceptionOptionType<ConcurrentLimitExceededException, __BaseException>);
143
- }
144
-
145
- export declare class ConflictException extends __BaseException {
146
- readonly name: "ConflictException";
147
- readonly $fault: "client";
148
- Message?: string;
149
-
150
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
151
- }
152
- export interface GetSnapshotBlockRequest {
153
-
154
- SnapshotId: string | undefined;
155
-
156
- BlockIndex: number | undefined;
157
-
158
- BlockToken: string | undefined;
159
- }
160
- export interface GetSnapshotBlockResponse {
161
-
162
- DataLength?: number;
163
-
164
- BlockData?: Readable | ReadableStream | Blob;
165
-
166
- Checksum?: string;
167
-
168
- ChecksumAlgorithm?: ChecksumAlgorithm | string;
169
- }
170
- export interface ListChangedBlocksRequest {
171
-
172
- FirstSnapshotId?: string;
173
-
174
- SecondSnapshotId: string | undefined;
175
-
176
- NextToken?: string;
177
-
178
- MaxResults?: number;
179
-
180
- StartingBlockIndex?: number;
181
- }
182
- export interface ListChangedBlocksResponse {
183
-
184
- ChangedBlocks?: ChangedBlock[];
185
-
186
- ExpiryTime?: Date;
187
-
188
- VolumeSize?: number;
189
-
190
- BlockSize?: number;
191
-
192
- NextToken?: string;
193
- }
194
- export interface ListSnapshotBlocksRequest {
195
-
196
- SnapshotId: string | undefined;
197
-
198
- NextToken?: string;
199
-
200
- MaxResults?: number;
201
-
202
- StartingBlockIndex?: number;
203
- }
204
- export interface ListSnapshotBlocksResponse {
205
-
206
- Blocks?: Block[];
207
-
208
- ExpiryTime?: Date;
209
-
210
- VolumeSize?: number;
211
-
212
- BlockSize?: number;
213
-
214
- NextToken?: string;
215
- }
216
- export interface PutSnapshotBlockRequest {
217
-
218
- SnapshotId: string | undefined;
219
-
220
- BlockIndex: number | undefined;
221
-
222
- BlockData: Readable | ReadableStream | Blob | undefined;
223
-
224
- DataLength: number | undefined;
225
-
226
- Progress?: number;
227
-
228
- Checksum: string | undefined;
229
-
230
- ChecksumAlgorithm: ChecksumAlgorithm | string | undefined;
231
- }
232
- export interface PutSnapshotBlockResponse {
233
-
234
- Checksum?: string;
235
-
236
- ChecksumAlgorithm?: ChecksumAlgorithm | string;
237
- }
238
-
239
- export interface Tag {
240
-
241
- Key?: string;
242
-
243
- Value?: string;
244
- }
245
- export interface StartSnapshotRequest {
246
-
247
- VolumeSize: number | undefined;
248
-
249
- ParentSnapshotId?: string;
250
-
251
- Tags?: Tag[];
252
-
253
- Description?: string;
254
-
255
- ClientToken?: string;
256
-
257
- Encrypted?: boolean;
258
-
259
- KmsKeyArn?: string;
260
-
261
- Timeout?: number;
262
- }
263
- export interface StartSnapshotResponse {
264
-
265
- Description?: string;
266
-
267
- SnapshotId?: string;
268
-
269
- OwnerId?: string;
270
-
271
- Status?: Status | string;
272
-
273
- StartTime?: Date;
274
-
275
- VolumeSize?: number;
276
-
277
- BlockSize?: number;
278
-
279
- Tags?: Tag[];
280
-
281
- ParentSnapshotId?: string;
282
-
283
- KmsKeyArn?: string;
284
- }
285
-
286
- export declare const BlockFilterSensitiveLog: (obj: Block) => any;
287
-
288
- export declare const ChangedBlockFilterSensitiveLog: (obj: ChangedBlock) => any;
289
-
290
- export declare const CompleteSnapshotRequestFilterSensitiveLog: (obj: CompleteSnapshotRequest) => any;
291
-
292
- export declare const CompleteSnapshotResponseFilterSensitiveLog: (obj: CompleteSnapshotResponse) => any;
293
-
294
- export declare const GetSnapshotBlockRequestFilterSensitiveLog: (obj: GetSnapshotBlockRequest) => any;
295
-
296
- export declare const GetSnapshotBlockResponseFilterSensitiveLog: (obj: GetSnapshotBlockResponse) => any;
297
-
298
- export declare const ListChangedBlocksRequestFilterSensitiveLog: (obj: ListChangedBlocksRequest) => any;
299
-
300
- export declare const ListChangedBlocksResponseFilterSensitiveLog: (obj: ListChangedBlocksResponse) => any;
301
-
302
- export declare const ListSnapshotBlocksRequestFilterSensitiveLog: (obj: ListSnapshotBlocksRequest) => any;
303
-
304
- export declare const ListSnapshotBlocksResponseFilterSensitiveLog: (obj: ListSnapshotBlocksResponse) => any;
305
-
306
- export declare const PutSnapshotBlockRequestFilterSensitiveLog: (obj: PutSnapshotBlockRequest) => any;
307
-
308
- export declare const PutSnapshotBlockResponseFilterSensitiveLog: (obj: PutSnapshotBlockResponse) => any;
309
-
310
- export declare const TagFilterSensitiveLog: (obj: Tag) => any;
311
-
312
- export declare const StartSnapshotRequestFilterSensitiveLog: (obj: StartSnapshotRequest) => any;
313
-
314
- export declare const StartSnapshotResponseFilterSensitiveLog: (obj: StartSnapshotResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { Readable } from "stream";
3
+ import { EBSServiceException as __BaseException } from "./EBSServiceException";
4
+ export declare enum AccessDeniedExceptionReason {
5
+ DEPENDENCY_ACCESS_DENIED = "DEPENDENCY_ACCESS_DENIED",
6
+ UNAUTHORIZED_ACCOUNT = "UNAUTHORIZED_ACCOUNT",
7
+ }
8
+
9
+ export declare class AccessDeniedException extends __BaseException {
10
+ readonly name: "AccessDeniedException";
11
+ readonly $fault: "client";
12
+ Message?: string;
13
+
14
+ Reason: AccessDeniedExceptionReason | string | undefined;
15
+
16
+ constructor(
17
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
18
+ );
19
+ }
20
+
21
+ export interface Block {
22
+ BlockIndex?: number;
23
+
24
+ BlockToken?: string;
25
+ }
26
+
27
+ export interface ChangedBlock {
28
+ BlockIndex?: number;
29
+
30
+ FirstBlockToken?: string;
31
+
32
+ SecondBlockToken?: string;
33
+ }
34
+ export declare enum ChecksumAggregationMethod {
35
+ CHECKSUM_AGGREGATION_LINEAR = "LINEAR",
36
+ }
37
+ export declare enum ChecksumAlgorithm {
38
+ CHECKSUM_ALGORITHM_SHA256 = "SHA256",
39
+ }
40
+ export interface CompleteSnapshotRequest {
41
+ SnapshotId: string | undefined;
42
+
43
+ ChangedBlocksCount: number | undefined;
44
+
45
+ Checksum?: string;
46
+
47
+ ChecksumAlgorithm?: ChecksumAlgorithm | string;
48
+
49
+ ChecksumAggregationMethod?: ChecksumAggregationMethod | string;
50
+ }
51
+ export declare enum Status {
52
+ COMPLETED = "completed",
53
+ ERROR = "error",
54
+ PENDING = "pending",
55
+ }
56
+ export interface CompleteSnapshotResponse {
57
+ Status?: Status | string;
58
+ }
59
+
60
+ export declare class InternalServerException extends __BaseException {
61
+ readonly name: "InternalServerException";
62
+ readonly $fault: "server";
63
+ Message?: string;
64
+
65
+ constructor(
66
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
67
+ );
68
+ }
69
+ export declare enum RequestThrottledExceptionReason {
70
+ ACCOUNT_THROTTLED = "ACCOUNT_THROTTLED",
71
+ DEPENDENCY_REQUEST_THROTTLED = "DEPENDENCY_REQUEST_THROTTLED",
72
+ RESOURCE_LEVEL_THROTTLE = "RESOURCE_LEVEL_THROTTLE",
73
+ }
74
+
75
+ export declare class RequestThrottledException extends __BaseException {
76
+ readonly name: "RequestThrottledException";
77
+ readonly $fault: "client";
78
+ Message?: string;
79
+
80
+ Reason?: RequestThrottledExceptionReason | string;
81
+
82
+ constructor(
83
+ opts: __ExceptionOptionType<RequestThrottledException, __BaseException>
84
+ );
85
+ }
86
+ export declare enum ResourceNotFoundExceptionReason {
87
+ DEPENDENCY_RESOURCE_NOT_FOUND = "DEPENDENCY_RESOURCE_NOT_FOUND",
88
+ SNAPSHOT_NOT_FOUND = "SNAPSHOT_NOT_FOUND",
89
+ }
90
+
91
+ export declare class ResourceNotFoundException extends __BaseException {
92
+ readonly name: "ResourceNotFoundException";
93
+ readonly $fault: "client";
94
+ Message?: string;
95
+
96
+ Reason?: ResourceNotFoundExceptionReason | string;
97
+
98
+ constructor(
99
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
100
+ );
101
+ }
102
+ export declare enum ServiceQuotaExceededExceptionReason {
103
+ DEPENDENCY_SERVICE_QUOTA_EXCEEDED = "DEPENDENCY_SERVICE_QUOTA_EXCEEDED",
104
+ }
105
+
106
+ export declare class ServiceQuotaExceededException extends __BaseException {
107
+ readonly name: "ServiceQuotaExceededException";
108
+ readonly $fault: "client";
109
+ Message?: string;
110
+
111
+ Reason?: ServiceQuotaExceededExceptionReason | string;
112
+
113
+ constructor(
114
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
115
+ );
116
+ }
117
+ export declare enum ValidationExceptionReason {
118
+ CONFLICTING_BLOCK_UPDATE = "CONFLICTING_BLOCK_UPDATE",
119
+ INVALID_BLOCK = "INVALID_BLOCK",
120
+ INVALID_BLOCK_TOKEN = "INVALID_BLOCK_TOKEN",
121
+ INVALID_CONTENT_ENCODING = "INVALID_CONTENT_ENCODING",
122
+ INVALID_CUSTOMER_KEY = "INVALID_CUSTOMER_KEY",
123
+ INVALID_DEPENDENCY_REQUEST = "INVALID_DEPENDENCY_REQUEST",
124
+ INVALID_PAGE_TOKEN = "INVALID_PAGE_TOKEN",
125
+ INVALID_PARAMETER_VALUE = "INVALID_PARAMETER_VALUE",
126
+ INVALID_SNAPSHOT_ID = "INVALID_SNAPSHOT_ID",
127
+ INVALID_TAG = "INVALID_TAG",
128
+ INVALID_VOLUME_SIZE = "INVALID_VOLUME_SIZE",
129
+ UNRELATED_SNAPSHOTS = "UNRELATED_SNAPSHOTS",
130
+ }
131
+
132
+ export declare class ValidationException extends __BaseException {
133
+ readonly name: "ValidationException";
134
+ readonly $fault: "client";
135
+ Message?: string;
136
+
137
+ Reason?: ValidationExceptionReason | string;
138
+
139
+ constructor(
140
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
141
+ );
142
+ }
143
+
144
+ export declare class ConcurrentLimitExceededException extends __BaseException {
145
+ readonly name: "ConcurrentLimitExceededException";
146
+ readonly $fault: "client";
147
+ Message?: string;
148
+
149
+ constructor(
150
+ opts: __ExceptionOptionType<
151
+ ConcurrentLimitExceededException,
152
+ __BaseException
153
+ >
154
+ );
155
+ }
156
+
157
+ export declare class ConflictException extends __BaseException {
158
+ readonly name: "ConflictException";
159
+ readonly $fault: "client";
160
+ Message?: string;
161
+
162
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
163
+ }
164
+ export interface GetSnapshotBlockRequest {
165
+ SnapshotId: string | undefined;
166
+
167
+ BlockIndex: number | undefined;
168
+
169
+ BlockToken: string | undefined;
170
+ }
171
+ export interface GetSnapshotBlockResponse {
172
+ DataLength?: number;
173
+
174
+ BlockData?: Readable | ReadableStream | Blob;
175
+
176
+ Checksum?: string;
177
+
178
+ ChecksumAlgorithm?: ChecksumAlgorithm | string;
179
+ }
180
+ export interface ListChangedBlocksRequest {
181
+ FirstSnapshotId?: string;
182
+
183
+ SecondSnapshotId: string | undefined;
184
+
185
+ NextToken?: string;
186
+
187
+ MaxResults?: number;
188
+
189
+ StartingBlockIndex?: number;
190
+ }
191
+ export interface ListChangedBlocksResponse {
192
+ ChangedBlocks?: ChangedBlock[];
193
+
194
+ ExpiryTime?: Date;
195
+
196
+ VolumeSize?: number;
197
+
198
+ BlockSize?: number;
199
+
200
+ NextToken?: string;
201
+ }
202
+ export interface ListSnapshotBlocksRequest {
203
+ SnapshotId: string | undefined;
204
+
205
+ NextToken?: string;
206
+
207
+ MaxResults?: number;
208
+
209
+ StartingBlockIndex?: number;
210
+ }
211
+ export interface ListSnapshotBlocksResponse {
212
+ Blocks?: Block[];
213
+
214
+ ExpiryTime?: Date;
215
+
216
+ VolumeSize?: number;
217
+
218
+ BlockSize?: number;
219
+
220
+ NextToken?: string;
221
+ }
222
+ export interface PutSnapshotBlockRequest {
223
+ SnapshotId: string | undefined;
224
+
225
+ BlockIndex: number | undefined;
226
+
227
+ BlockData: Readable | ReadableStream | Blob | undefined;
228
+
229
+ DataLength: number | undefined;
230
+
231
+ Progress?: number;
232
+
233
+ Checksum: string | undefined;
234
+
235
+ ChecksumAlgorithm: ChecksumAlgorithm | string | undefined;
236
+ }
237
+ export interface PutSnapshotBlockResponse {
238
+ Checksum?: string;
239
+
240
+ ChecksumAlgorithm?: ChecksumAlgorithm | string;
241
+ }
242
+
243
+ export interface Tag {
244
+ Key?: string;
245
+
246
+ Value?: string;
247
+ }
248
+ export interface StartSnapshotRequest {
249
+ VolumeSize: number | undefined;
250
+
251
+ ParentSnapshotId?: string;
252
+
253
+ Tags?: Tag[];
254
+
255
+ Description?: string;
256
+
257
+ ClientToken?: string;
258
+
259
+ Encrypted?: boolean;
260
+
261
+ KmsKeyArn?: string;
262
+
263
+ Timeout?: number;
264
+ }
265
+ export interface StartSnapshotResponse {
266
+ Description?: string;
267
+
268
+ SnapshotId?: string;
269
+
270
+ OwnerId?: string;
271
+
272
+ Status?: Status | string;
273
+
274
+ StartTime?: Date;
275
+
276
+ VolumeSize?: number;
277
+
278
+ BlockSize?: number;
279
+
280
+ Tags?: Tag[];
281
+
282
+ ParentSnapshotId?: string;
283
+
284
+ KmsKeyArn?: string;
285
+ }
286
+
287
+ export declare const BlockFilterSensitiveLog: (obj: Block) => any;
288
+
289
+ export declare const ChangedBlockFilterSensitiveLog: (obj: ChangedBlock) => any;
290
+
291
+ export declare const CompleteSnapshotRequestFilterSensitiveLog: (
292
+ obj: CompleteSnapshotRequest
293
+ ) => any;
294
+
295
+ export declare const CompleteSnapshotResponseFilterSensitiveLog: (
296
+ obj: CompleteSnapshotResponse
297
+ ) => any;
298
+
299
+ export declare const GetSnapshotBlockRequestFilterSensitiveLog: (
300
+ obj: GetSnapshotBlockRequest
301
+ ) => any;
302
+
303
+ export declare const GetSnapshotBlockResponseFilterSensitiveLog: (
304
+ obj: GetSnapshotBlockResponse
305
+ ) => any;
306
+
307
+ export declare const ListChangedBlocksRequestFilterSensitiveLog: (
308
+ obj: ListChangedBlocksRequest
309
+ ) => any;
310
+
311
+ export declare const ListChangedBlocksResponseFilterSensitiveLog: (
312
+ obj: ListChangedBlocksResponse
313
+ ) => any;
314
+
315
+ export declare const ListSnapshotBlocksRequestFilterSensitiveLog: (
316
+ obj: ListSnapshotBlocksRequest
317
+ ) => any;
318
+
319
+ export declare const ListSnapshotBlocksResponseFilterSensitiveLog: (
320
+ obj: ListSnapshotBlocksResponse
321
+ ) => any;
322
+
323
+ export declare const PutSnapshotBlockRequestFilterSensitiveLog: (
324
+ obj: PutSnapshotBlockRequest
325
+ ) => any;
326
+
327
+ export declare const PutSnapshotBlockResponseFilterSensitiveLog: (
328
+ obj: PutSnapshotBlockResponse
329
+ ) => any;
330
+
331
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
332
+
333
+ export declare const StartSnapshotRequestFilterSensitiveLog: (
334
+ obj: StartSnapshotRequest
335
+ ) => any;
336
+
337
+ export declare const StartSnapshotResponseFilterSensitiveLog: (
338
+ obj: StartSnapshotResponse
339
+ ) => any;
@@ -1,6 +1,6 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { EBS } from "../EBS";
3
- import { EBSClient } from "../EBSClient";
4
- export interface EBSPaginationConfiguration extends PaginationConfiguration {
5
- client: EBS | EBSClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { EBS } from "../EBS";
3
+ import { EBSClient } from "../EBSClient";
4
+ export interface EBSPaginationConfiguration extends PaginationConfiguration {
5
+ client: EBS | EBSClient;
6
+ }