@aws-sdk/client-timestream-write 3.50.0 → 3.53.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.
Files changed (45) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/TimestreamWriteServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +130 -1
  5. package/dist-cjs/protocols/Aws_json1_0.js +186 -722
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/TimestreamWriteServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +120 -1
  9. package/dist-es/protocols/Aws_json1_0.js +394 -765
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/TimestreamWriteServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +65 -28
  13. package/dist-types/ts3.4/TimestreamWrite.d.ts +80 -0
  14. package/dist-types/ts3.4/TimestreamWriteClient.d.ts +91 -0
  15. package/dist-types/ts3.4/commands/CreateDatabaseCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/CreateTableCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/DeleteDatabaseCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/DeleteTableCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/DescribeDatabaseCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/DescribeTableCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/ListDatabasesCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/UpdateDatabaseCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/UpdateTableCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/WriteRecordsCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/index.d.ts +15 -0
  31. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  32. package/dist-types/ts3.4/index.d.ts +6 -0
  33. package/dist-types/ts3.4/models/TimestreamWriteServiceException.d.ts +6 -0
  34. package/dist-types/ts3.4/models/index.d.ts +1 -0
  35. package/dist-types/ts3.4/models/models_0.d.ts +547 -0
  36. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  37. package/dist-types/ts3.4/pagination/ListDatabasesPaginator.d.ts +4 -0
  38. package/dist-types/ts3.4/pagination/ListTablesPaginator.d.ts +4 -0
  39. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  40. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +47 -0
  41. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +41 -0
  42. package/dist-types/ts3.4/runtimeConfig.d.ts +41 -0
  43. package/dist-types/ts3.4/runtimeConfig.native.d.ts +40 -0
  44. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  45. package/package.json +34 -34
@@ -0,0 +1,15 @@
1
+ export * from "./CreateDatabaseCommand";
2
+ export * from "./CreateTableCommand";
3
+ export * from "./DeleteDatabaseCommand";
4
+ export * from "./DeleteTableCommand";
5
+ export * from "./DescribeDatabaseCommand";
6
+ export * from "./DescribeEndpointsCommand";
7
+ export * from "./DescribeTableCommand";
8
+ export * from "./ListDatabasesCommand";
9
+ export * from "./ListTablesCommand";
10
+ export * from "./ListTagsForResourceCommand";
11
+ export * from "./TagResourceCommand";
12
+ export * from "./UntagResourceCommand";
13
+ export * from "./UpdateDatabaseCommand";
14
+ export * from "./UpdateTableCommand";
15
+ export * from "./WriteRecordsCommand";
@@ -0,0 +1,2 @@
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -0,0 +1,6 @@
1
+ export * from "./TimestreamWrite";
2
+ export * from "./TimestreamWriteClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { TimestreamWriteServiceException } from "./models/TimestreamWriteServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class TimestreamWriteServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";
@@ -0,0 +1,547 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { TimestreamWriteServiceException as __BaseException } from "./TimestreamWriteServiceException";
3
+
4
+ export declare class AccessDeniedException extends __BaseException {
5
+ readonly name: "AccessDeniedException";
6
+ readonly $fault: "client";
7
+ Message: string | undefined;
8
+
9
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
10
+ }
11
+
12
+ export declare class ConflictException extends __BaseException {
13
+ readonly name: "ConflictException";
14
+ readonly $fault: "client";
15
+ Message: string | undefined;
16
+
17
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
18
+ }
19
+
20
+ export interface Tag {
21
+
22
+ Key: string | undefined;
23
+
24
+ Value: string | undefined;
25
+ }
26
+ export declare namespace Tag {
27
+
28
+ const filterSensitiveLog: (obj: Tag) => any;
29
+ }
30
+ export interface CreateDatabaseRequest {
31
+
32
+ DatabaseName: string | undefined;
33
+
34
+ KmsKeyId?: string;
35
+
36
+ Tags?: Tag[];
37
+ }
38
+ export declare namespace CreateDatabaseRequest {
39
+
40
+ const filterSensitiveLog: (obj: CreateDatabaseRequest) => any;
41
+ }
42
+
43
+ export interface Database {
44
+
45
+ Arn?: string;
46
+
47
+ DatabaseName?: string;
48
+
49
+ TableCount?: number;
50
+
51
+ KmsKeyId?: string;
52
+
53
+ CreationTime?: Date;
54
+
55
+ LastUpdatedTime?: Date;
56
+ }
57
+ export declare namespace Database {
58
+
59
+ const filterSensitiveLog: (obj: Database) => any;
60
+ }
61
+ export interface CreateDatabaseResponse {
62
+
63
+ Database?: Database;
64
+ }
65
+ export declare namespace CreateDatabaseResponse {
66
+
67
+ const filterSensitiveLog: (obj: CreateDatabaseResponse) => any;
68
+ }
69
+
70
+ export declare class InternalServerException extends __BaseException {
71
+ readonly name: "InternalServerException";
72
+ readonly $fault: "server";
73
+ Message: string | undefined;
74
+
75
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
76
+ }
77
+
78
+ export declare class InvalidEndpointException extends __BaseException {
79
+ readonly name: "InvalidEndpointException";
80
+ readonly $fault: "client";
81
+ Message?: string;
82
+
83
+ constructor(opts: __ExceptionOptionType<InvalidEndpointException, __BaseException>);
84
+ }
85
+
86
+ export declare class ServiceQuotaExceededException extends __BaseException {
87
+ readonly name: "ServiceQuotaExceededException";
88
+ readonly $fault: "client";
89
+ Message?: string;
90
+
91
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
92
+ }
93
+
94
+ export declare class ThrottlingException extends __BaseException {
95
+ readonly name: "ThrottlingException";
96
+ readonly $fault: "client";
97
+ Message: string | undefined;
98
+
99
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
100
+ }
101
+
102
+ export declare class ValidationException extends __BaseException {
103
+ readonly name: "ValidationException";
104
+ readonly $fault: "client";
105
+ Message: string | undefined;
106
+
107
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
108
+ }
109
+ export declare enum S3EncryptionOption {
110
+ SSE_KMS = "SSE_KMS",
111
+ SSE_S3 = "SSE_S3"
112
+ }
113
+
114
+ export interface S3Configuration {
115
+
116
+ BucketName?: string;
117
+
118
+ ObjectKeyPrefix?: string;
119
+
120
+ EncryptionOption?: S3EncryptionOption | string;
121
+
122
+ KmsKeyId?: string;
123
+ }
124
+ export declare namespace S3Configuration {
125
+
126
+ const filterSensitiveLog: (obj: S3Configuration) => any;
127
+ }
128
+
129
+ export interface MagneticStoreRejectedDataLocation {
130
+
131
+ S3Configuration?: S3Configuration;
132
+ }
133
+ export declare namespace MagneticStoreRejectedDataLocation {
134
+
135
+ const filterSensitiveLog: (obj: MagneticStoreRejectedDataLocation) => any;
136
+ }
137
+
138
+ export interface MagneticStoreWriteProperties {
139
+
140
+ EnableMagneticStoreWrites: boolean | undefined;
141
+
142
+ MagneticStoreRejectedDataLocation?: MagneticStoreRejectedDataLocation;
143
+ }
144
+ export declare namespace MagneticStoreWriteProperties {
145
+
146
+ const filterSensitiveLog: (obj: MagneticStoreWriteProperties) => any;
147
+ }
148
+
149
+ export interface RetentionProperties {
150
+
151
+ MemoryStoreRetentionPeriodInHours: number | undefined;
152
+
153
+ MagneticStoreRetentionPeriodInDays: number | undefined;
154
+ }
155
+ export declare namespace RetentionProperties {
156
+
157
+ const filterSensitiveLog: (obj: RetentionProperties) => any;
158
+ }
159
+ export interface CreateTableRequest {
160
+
161
+ DatabaseName: string | undefined;
162
+
163
+ TableName: string | undefined;
164
+
165
+ RetentionProperties?: RetentionProperties;
166
+
167
+ Tags?: Tag[];
168
+
169
+ MagneticStoreWriteProperties?: MagneticStoreWriteProperties;
170
+ }
171
+ export declare namespace CreateTableRequest {
172
+
173
+ const filterSensitiveLog: (obj: CreateTableRequest) => any;
174
+ }
175
+ export declare enum TableStatus {
176
+ ACTIVE = "ACTIVE",
177
+ DELETING = "DELETING"
178
+ }
179
+
180
+ export interface Table {
181
+
182
+ Arn?: string;
183
+
184
+ TableName?: string;
185
+
186
+ DatabaseName?: string;
187
+
188
+ TableStatus?: TableStatus | string;
189
+
190
+ RetentionProperties?: RetentionProperties;
191
+
192
+ CreationTime?: Date;
193
+
194
+ LastUpdatedTime?: Date;
195
+
196
+ MagneticStoreWriteProperties?: MagneticStoreWriteProperties;
197
+ }
198
+ export declare namespace Table {
199
+
200
+ const filterSensitiveLog: (obj: Table) => any;
201
+ }
202
+ export interface CreateTableResponse {
203
+
204
+ Table?: Table;
205
+ }
206
+ export declare namespace CreateTableResponse {
207
+
208
+ const filterSensitiveLog: (obj: CreateTableResponse) => any;
209
+ }
210
+
211
+ export declare class ResourceNotFoundException extends __BaseException {
212
+ readonly name: "ResourceNotFoundException";
213
+ readonly $fault: "client";
214
+ Message?: string;
215
+
216
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
217
+ }
218
+ export interface DeleteDatabaseRequest {
219
+
220
+ DatabaseName: string | undefined;
221
+ }
222
+ export declare namespace DeleteDatabaseRequest {
223
+
224
+ const filterSensitiveLog: (obj: DeleteDatabaseRequest) => any;
225
+ }
226
+ export interface DeleteTableRequest {
227
+
228
+ DatabaseName: string | undefined;
229
+
230
+ TableName: string | undefined;
231
+ }
232
+ export declare namespace DeleteTableRequest {
233
+
234
+ const filterSensitiveLog: (obj: DeleteTableRequest) => any;
235
+ }
236
+ export interface DescribeDatabaseRequest {
237
+
238
+ DatabaseName: string | undefined;
239
+ }
240
+ export declare namespace DescribeDatabaseRequest {
241
+
242
+ const filterSensitiveLog: (obj: DescribeDatabaseRequest) => any;
243
+ }
244
+ export interface DescribeDatabaseResponse {
245
+
246
+ Database?: Database;
247
+ }
248
+ export declare namespace DescribeDatabaseResponse {
249
+
250
+ const filterSensitiveLog: (obj: DescribeDatabaseResponse) => any;
251
+ }
252
+ export interface DescribeEndpointsRequest {
253
+ }
254
+ export declare namespace DescribeEndpointsRequest {
255
+
256
+ const filterSensitiveLog: (obj: DescribeEndpointsRequest) => any;
257
+ }
258
+
259
+ export interface Endpoint {
260
+
261
+ Address: string | undefined;
262
+
263
+ CachePeriodInMinutes: number | undefined;
264
+ }
265
+ export declare namespace Endpoint {
266
+
267
+ const filterSensitiveLog: (obj: Endpoint) => any;
268
+ }
269
+ export interface DescribeEndpointsResponse {
270
+
271
+ Endpoints: Endpoint[] | undefined;
272
+ }
273
+ export declare namespace DescribeEndpointsResponse {
274
+
275
+ const filterSensitiveLog: (obj: DescribeEndpointsResponse) => any;
276
+ }
277
+ export interface DescribeTableRequest {
278
+
279
+ DatabaseName: string | undefined;
280
+
281
+ TableName: string | undefined;
282
+ }
283
+ export declare namespace DescribeTableRequest {
284
+
285
+ const filterSensitiveLog: (obj: DescribeTableRequest) => any;
286
+ }
287
+ export interface DescribeTableResponse {
288
+
289
+ Table?: Table;
290
+ }
291
+ export declare namespace DescribeTableResponse {
292
+
293
+ const filterSensitiveLog: (obj: DescribeTableResponse) => any;
294
+ }
295
+ export declare enum DimensionValueType {
296
+ VARCHAR = "VARCHAR"
297
+ }
298
+
299
+ export interface Dimension {
300
+
301
+ Name: string | undefined;
302
+
303
+ Value: string | undefined;
304
+
305
+ DimensionValueType?: DimensionValueType | string;
306
+ }
307
+ export declare namespace Dimension {
308
+
309
+ const filterSensitiveLog: (obj: Dimension) => any;
310
+ }
311
+ export interface ListDatabasesRequest {
312
+
313
+ NextToken?: string;
314
+
315
+ MaxResults?: number;
316
+ }
317
+ export declare namespace ListDatabasesRequest {
318
+
319
+ const filterSensitiveLog: (obj: ListDatabasesRequest) => any;
320
+ }
321
+ export interface ListDatabasesResponse {
322
+
323
+ Databases?: Database[];
324
+
325
+ NextToken?: string;
326
+ }
327
+ export declare namespace ListDatabasesResponse {
328
+
329
+ const filterSensitiveLog: (obj: ListDatabasesResponse) => any;
330
+ }
331
+ export interface ListTablesRequest {
332
+
333
+ DatabaseName?: string;
334
+
335
+ NextToken?: string;
336
+
337
+ MaxResults?: number;
338
+ }
339
+ export declare namespace ListTablesRequest {
340
+
341
+ const filterSensitiveLog: (obj: ListTablesRequest) => any;
342
+ }
343
+ export interface ListTablesResponse {
344
+
345
+ Tables?: Table[];
346
+
347
+ NextToken?: string;
348
+ }
349
+ export declare namespace ListTablesResponse {
350
+
351
+ const filterSensitiveLog: (obj: ListTablesResponse) => any;
352
+ }
353
+ export interface ListTagsForResourceRequest {
354
+
355
+ ResourceARN: string | undefined;
356
+ }
357
+ export declare namespace ListTagsForResourceRequest {
358
+
359
+ const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
360
+ }
361
+ export interface ListTagsForResourceResponse {
362
+
363
+ Tags?: Tag[];
364
+ }
365
+ export declare namespace ListTagsForResourceResponse {
366
+
367
+ const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
368
+ }
369
+ export declare enum MeasureValueType {
370
+ BIGINT = "BIGINT",
371
+ BOOLEAN = "BOOLEAN",
372
+ DOUBLE = "DOUBLE",
373
+ MULTI = "MULTI",
374
+ TIMESTAMP = "TIMESTAMP",
375
+ VARCHAR = "VARCHAR"
376
+ }
377
+
378
+ export interface MeasureValue {
379
+
380
+ Name: string | undefined;
381
+
382
+ Value: string | undefined;
383
+
384
+ Type: MeasureValueType | string | undefined;
385
+ }
386
+ export declare namespace MeasureValue {
387
+
388
+ const filterSensitiveLog: (obj: MeasureValue) => any;
389
+ }
390
+ export declare enum TimeUnit {
391
+ MICROSECONDS = "MICROSECONDS",
392
+ MILLISECONDS = "MILLISECONDS",
393
+ NANOSECONDS = "NANOSECONDS",
394
+ SECONDS = "SECONDS"
395
+ }
396
+
397
+ export interface _Record {
398
+
399
+ Dimensions?: Dimension[];
400
+
401
+ MeasureName?: string;
402
+
403
+ MeasureValue?: string;
404
+
405
+ MeasureValueType?: MeasureValueType | string;
406
+
407
+ Time?: string;
408
+
409
+ TimeUnit?: TimeUnit | string;
410
+
411
+ Version?: number;
412
+
413
+ MeasureValues?: MeasureValue[];
414
+ }
415
+ export declare namespace _Record {
416
+
417
+ const filterSensitiveLog: (obj: _Record) => any;
418
+ }
419
+
420
+ export interface RecordsIngested {
421
+
422
+ Total?: number;
423
+
424
+ MemoryStore?: number;
425
+
426
+ MagneticStore?: number;
427
+ }
428
+ export declare namespace RecordsIngested {
429
+
430
+ const filterSensitiveLog: (obj: RecordsIngested) => any;
431
+ }
432
+
433
+ export interface RejectedRecord {
434
+
435
+ RecordIndex?: number;
436
+
437
+ Reason?: string;
438
+
439
+ ExistingVersion?: number;
440
+ }
441
+ export declare namespace RejectedRecord {
442
+
443
+ const filterSensitiveLog: (obj: RejectedRecord) => any;
444
+ }
445
+
446
+ export declare class RejectedRecordsException extends __BaseException {
447
+ readonly name: "RejectedRecordsException";
448
+ readonly $fault: "client";
449
+ Message?: string;
450
+ RejectedRecords?: RejectedRecord[];
451
+
452
+ constructor(opts: __ExceptionOptionType<RejectedRecordsException, __BaseException>);
453
+ }
454
+ export interface TagResourceRequest {
455
+
456
+ ResourceARN: string | undefined;
457
+
458
+ Tags: Tag[] | undefined;
459
+ }
460
+ export declare namespace TagResourceRequest {
461
+
462
+ const filterSensitiveLog: (obj: TagResourceRequest) => any;
463
+ }
464
+ export interface TagResourceResponse {
465
+ }
466
+ export declare namespace TagResourceResponse {
467
+
468
+ const filterSensitiveLog: (obj: TagResourceResponse) => any;
469
+ }
470
+ export interface UntagResourceRequest {
471
+
472
+ ResourceARN: string | undefined;
473
+
474
+ TagKeys: string[] | undefined;
475
+ }
476
+ export declare namespace UntagResourceRequest {
477
+
478
+ const filterSensitiveLog: (obj: UntagResourceRequest) => any;
479
+ }
480
+ export interface UntagResourceResponse {
481
+ }
482
+ export declare namespace UntagResourceResponse {
483
+
484
+ const filterSensitiveLog: (obj: UntagResourceResponse) => any;
485
+ }
486
+ export interface UpdateDatabaseRequest {
487
+
488
+ DatabaseName: string | undefined;
489
+
490
+ KmsKeyId: string | undefined;
491
+ }
492
+ export declare namespace UpdateDatabaseRequest {
493
+
494
+ const filterSensitiveLog: (obj: UpdateDatabaseRequest) => any;
495
+ }
496
+ export interface UpdateDatabaseResponse {
497
+
498
+ Database?: Database;
499
+ }
500
+ export declare namespace UpdateDatabaseResponse {
501
+
502
+ const filterSensitiveLog: (obj: UpdateDatabaseResponse) => any;
503
+ }
504
+ export interface UpdateTableRequest {
505
+
506
+ DatabaseName: string | undefined;
507
+
508
+ TableName: string | undefined;
509
+
510
+ RetentionProperties?: RetentionProperties;
511
+
512
+ MagneticStoreWriteProperties?: MagneticStoreWriteProperties;
513
+ }
514
+ export declare namespace UpdateTableRequest {
515
+
516
+ const filterSensitiveLog: (obj: UpdateTableRequest) => any;
517
+ }
518
+ export interface UpdateTableResponse {
519
+
520
+ Table?: Table;
521
+ }
522
+ export declare namespace UpdateTableResponse {
523
+
524
+ const filterSensitiveLog: (obj: UpdateTableResponse) => any;
525
+ }
526
+ export interface WriteRecordsRequest {
527
+
528
+ DatabaseName: string | undefined;
529
+
530
+ TableName: string | undefined;
531
+
532
+ CommonAttributes?: _Record;
533
+
534
+ Records: _Record[] | undefined;
535
+ }
536
+ export declare namespace WriteRecordsRequest {
537
+
538
+ const filterSensitiveLog: (obj: WriteRecordsRequest) => any;
539
+ }
540
+ export interface WriteRecordsResponse {
541
+
542
+ RecordsIngested?: RecordsIngested;
543
+ }
544
+ export declare namespace WriteRecordsResponse {
545
+
546
+ const filterSensitiveLog: (obj: WriteRecordsResponse) => any;
547
+ }
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { TimestreamWrite } from "../TimestreamWrite";
3
+ import { TimestreamWriteClient } from "../TimestreamWriteClient";
4
+ export interface TimestreamWritePaginationConfiguration extends PaginationConfiguration {
5
+ client: TimestreamWrite | TimestreamWriteClient;
6
+ }
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListDatabasesCommandInput, ListDatabasesCommandOutput } from "../commands/ListDatabasesCommand";
3
+ import { TimestreamWritePaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListDatabases(config: TimestreamWritePaginationConfiguration, input: ListDatabasesCommandInput, ...additionalArguments: any): Paginator<ListDatabasesCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListTablesCommandInput, ListTablesCommandOutput } from "../commands/ListTablesCommand";
3
+ import { TimestreamWritePaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListTables(config: TimestreamWritePaginationConfiguration, input: ListTablesCommandInput, ...additionalArguments: any): Paginator<ListTablesCommandOutput>;
@@ -0,0 +1,3 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListDatabasesPaginator";
3
+ export * from "./ListTablesPaginator";
@@ -0,0 +1,47 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
+ import { CreateDatabaseCommandInput, CreateDatabaseCommandOutput } from "../commands/CreateDatabaseCommand";
4
+ import { CreateTableCommandInput, CreateTableCommandOutput } from "../commands/CreateTableCommand";
5
+ import { DeleteDatabaseCommandInput, DeleteDatabaseCommandOutput } from "../commands/DeleteDatabaseCommand";
6
+ import { DeleteTableCommandInput, DeleteTableCommandOutput } from "../commands/DeleteTableCommand";
7
+ import { DescribeDatabaseCommandInput, DescribeDatabaseCommandOutput } from "../commands/DescribeDatabaseCommand";
8
+ import { DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput } from "../commands/DescribeEndpointsCommand";
9
+ import { DescribeTableCommandInput, DescribeTableCommandOutput } from "../commands/DescribeTableCommand";
10
+ import { ListDatabasesCommandInput, ListDatabasesCommandOutput } from "../commands/ListDatabasesCommand";
11
+ import { ListTablesCommandInput, ListTablesCommandOutput } from "../commands/ListTablesCommand";
12
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
13
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
14
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
15
+ import { UpdateDatabaseCommandInput, UpdateDatabaseCommandOutput } from "../commands/UpdateDatabaseCommand";
16
+ import { UpdateTableCommandInput, UpdateTableCommandOutput } from "../commands/UpdateTableCommand";
17
+ import { WriteRecordsCommandInput, WriteRecordsCommandOutput } from "../commands/WriteRecordsCommand";
18
+ export declare const serializeAws_json1_0CreateDatabaseCommand: (input: CreateDatabaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
+ export declare const serializeAws_json1_0CreateTableCommand: (input: CreateTableCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
+ export declare const serializeAws_json1_0DeleteDatabaseCommand: (input: DeleteDatabaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
+ export declare const serializeAws_json1_0DeleteTableCommand: (input: DeleteTableCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
+ export declare const serializeAws_json1_0DescribeDatabaseCommand: (input: DescribeDatabaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
+ export declare const serializeAws_json1_0DescribeEndpointsCommand: (input: DescribeEndpointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
+ export declare const serializeAws_json1_0DescribeTableCommand: (input: DescribeTableCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
+ export declare const serializeAws_json1_0ListDatabasesCommand: (input: ListDatabasesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
+ export declare const serializeAws_json1_0ListTablesCommand: (input: ListTablesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
+ export declare const serializeAws_json1_0ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
+ export declare const serializeAws_json1_0TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
+ export declare const serializeAws_json1_0UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
+ export declare const serializeAws_json1_0UpdateDatabaseCommand: (input: UpdateDatabaseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
+ export declare const serializeAws_json1_0UpdateTableCommand: (input: UpdateTableCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
+ export declare const serializeAws_json1_0WriteRecordsCommand: (input: WriteRecordsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
+ export declare const deserializeAws_json1_0CreateDatabaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDatabaseCommandOutput>;
34
+ export declare const deserializeAws_json1_0CreateTableCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTableCommandOutput>;
35
+ export declare const deserializeAws_json1_0DeleteDatabaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDatabaseCommandOutput>;
36
+ export declare const deserializeAws_json1_0DeleteTableCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTableCommandOutput>;
37
+ export declare const deserializeAws_json1_0DescribeDatabaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeDatabaseCommandOutput>;
38
+ export declare const deserializeAws_json1_0DescribeEndpointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEndpointsCommandOutput>;
39
+ export declare const deserializeAws_json1_0DescribeTableCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeTableCommandOutput>;
40
+ export declare const deserializeAws_json1_0ListDatabasesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDatabasesCommandOutput>;
41
+ export declare const deserializeAws_json1_0ListTablesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTablesCommandOutput>;
42
+ export declare const deserializeAws_json1_0ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
43
+ export declare const deserializeAws_json1_0TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
44
+ export declare const deserializeAws_json1_0UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
45
+ export declare const deserializeAws_json1_0UpdateDatabaseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDatabaseCommandOutput>;
46
+ export declare const deserializeAws_json1_0UpdateTableCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateTableCommandOutput>;
47
+ export declare const deserializeAws_json1_0WriteRecordsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<WriteRecordsCommandOutput>;