-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.ts
61 lines (59 loc) · 1.67 KB
/
types.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import {
ServiceInputTypes as __ServiceInputTypes,
ServiceOutputTypes as __ServiceOutputTypes,
} from '@aws-sdk/client-dynamodb';
import {
BatchGetCommandInput,
BatchGetCommandOutput,
} from './commands/BatchGetCommand.js';
import {
BatchWriteCommandInput,
BatchWriteCommandOutput,
} from './commands/BatchWriteCommand.js';
import {
DeleteCommandInput,
DeleteCommandOutput,
} from './commands/DeleteCommand.js';
import { GetCommandInput, GetCommandOutput } from './commands/GetCommand.js';
import { PutCommandInput, PutCommandOutput } from './commands/PutCommand.js';
import {
QueryCommandInput,
QueryCommandOutput,
} from './commands/QueryCommand.js';
import { ScanCommandInput, ScanCommandOutput } from './commands/ScanCommand.js';
import {
TransactGetCommandInput,
TransactGetCommandOutput,
} from './commands/TransactGetCommand.js';
import {
TransactWriteCommandInput,
TransactWriteCommandOutput,
} from './commands/TransactWriteCommand.js';
import {
UpdateCommandInput,
UpdateCommandOutput,
} from './commands/UpdateCommand.js';
export type DynamoDBTableClientServiceInputTypes =
| __ServiceInputTypes
| BatchGetCommandInput
| BatchWriteCommandInput
| DeleteCommandInput
| GetCommandInput
| PutCommandInput
| QueryCommandInput
| ScanCommandInput
| TransactGetCommandInput
| TransactWriteCommandInput
| UpdateCommandInput;
export type DynamoDBTableClientServiceOutputTypes =
| __ServiceOutputTypes
| BatchGetCommandOutput
| BatchWriteCommandOutput
| DeleteCommandOutput
| GetCommandOutput
| PutCommandOutput
| QueryCommandOutput
| ScanCommandOutput
| TransactGetCommandOutput
| TransactWriteCommandOutput
| UpdateCommandOutput;