Skip to content

Commit aae3b39

Browse files
authored
feat(dynamodb): deprecate client-dyanmodb-v2 clients and migrate to client-dynamodb clients (#201)
1 parent 672af0a commit aae3b39

File tree

938 files changed

+249
-44
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

938 files changed

+249
-44
lines changed

packages/client-dynamodb-v2-node/README.md renamed to packages/client-dynamodb-browser/README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @aws-sdk/client-dynamodb-v2-node
1+
# @aws-sdk/client-dynamodb-browser
22

33
## Description
44

@@ -9,7 +9,7 @@
99
To install the this package using NPM, simply type the following into a terminal window:
1010

1111
```
12-
npm install @aws-sdk/client-dynamodb-v2-node
12+
npm install @aws-sdk/client-dynamodb-browser
1313
```
1414

1515
## Getting Started
@@ -20,14 +20,14 @@ The AWS SDK is modulized by clients and commends in CommonJS modules. To send a
2020

2121
```javascript
2222
//javascript
23-
const { DynamoDBClient } = require('@aws-sdk/client-dynamodb-v2-node/DynamoDBClient');
24-
const { BatchGetItemCommand } = require('@aws-sdk/client-dynamodb-v2-node/BatchGetItemCommand');
23+
const { DynamoDBClient } = require('@aws-sdk/client-dynamodb-browser/DynamoDBClient');
24+
const { BatchGetItemCommand } = require('@aws-sdk/client-dynamodb-browser/commands/BatchGetItemCommand');
2525
```
2626

2727
```javascript
2828
//typescript
29-
const { DynamoDBClient } = import '@aws-sdk/client-dynamodb-v2-node/DynamoDBClient';
30-
const { BatchGetItemCommand } = import '@aws-sdk/client-dynamodb-v2-node/commands/BatchGetItemCommand';
29+
const { DynamoDBClient } = import '@aws-sdk/client-dynamodb-browser/DynamoDBClient';
30+
const { BatchGetItemCommand } = import '@aws-sdk/client-dynamodb-browser/commands/BatchGetItemCommand';
3131
```
3232

3333
### Usage
@@ -75,7 +75,7 @@ dynamoDB.send(batchGetItemCommand, (err, data) => {
7575
Besides using `send()`, the SDK can also send requests using the simplified callback style in version 2 of the SDK.
7676

7777
```javascript
78-
import * as AWS from '@aws-sdk/@aws-sdk/client-dynamodb-v2-node/DynamoDB';
78+
import * as AWS from '@aws-sdk/@aws-sdk/client-dynamodb-browser/DynamoDB';
7979
const dynamoDB = new AWS.DynamoDB({region: 'region'})
8080
dynamoDB.batchGetItem(params, (err, data) => {
8181
//do something
@@ -111,13 +111,13 @@ The keys within exceptions are also parsed, you can access them by specifying ex
111111

112112
Please use these community resources for getting help. We use the GitHub issues for tracking bugs and feature requests and have limited bandwidth to address them.
113113

114-
* Ask a question on [StackOverflow](https://stackoverflow.com/) and tag it with `aws-sdk-js`
114+
* Ask a question on [StackOverflow](https://stackoverflow.com/questions/tagged/aws-sdk-js) and tag it with `aws-sdk-js`
115115
* Come join the AWS JavaScript community on [gitter](https://gitter.im/aws/aws-sdk-js-v3)
116116
* If it turns out that you may have found a bug, please [open an issue](https://github.com/aws/aws-sdk-js-v3/issues)
117117

118118
## Contributing
119119

120-
This client code is generated automatically. Any modifications will be overwritten the next time the `@aws-sdk/@aws-sdk/client-dynamodb-v2-node' package is updated. To contribute to SDK you can checkout our [code generator package][].
120+
This client code is generated automatically. Any modifications will be overwritten the next time the `@aws-sdk/@aws-sdk/client-dynamodb-browser' package is updated. To contribute to SDK you can checkout our [code generator package][].
121121

122122
## License
123123

packages/client-dynamodb-v2-browser/commands/BatchGetItemCommand.ts renamed to packages/client-dynamodb-browser/commands/BatchGetItemCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {BatchGetItemInput} from '../types/BatchGetItemInput';
77
import {BatchGetItemOutput} from '../types/BatchGetItemOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/BatchGetItemInput';
10+
export * from '../types/BatchGetItemOutput';
11+
export * from '../types/BatchGetItemExceptionsUnion';
912

1013
export class BatchGetItemCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/BatchWriteItemCommand.ts renamed to packages/client-dynamodb-browser/commands/BatchWriteItemCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {BatchWriteItemInput} from '../types/BatchWriteItemInput';
77
import {BatchWriteItemOutput} from '../types/BatchWriteItemOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/BatchWriteItemInput';
10+
export * from '../types/BatchWriteItemOutput';
11+
export * from '../types/BatchWriteItemExceptionsUnion';
912

1013
export class BatchWriteItemCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/CreateBackupCommand.ts renamed to packages/client-dynamodb-browser/commands/CreateBackupCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {CreateBackupInput} from '../types/CreateBackupInput';
77
import {CreateBackupOutput} from '../types/CreateBackupOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/CreateBackupInput';
10+
export * from '../types/CreateBackupOutput';
11+
export * from '../types/CreateBackupExceptionsUnion';
912

1013
export class CreateBackupCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/CreateGlobalTableCommand.ts renamed to packages/client-dynamodb-browser/commands/CreateGlobalTableCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {CreateGlobalTableInput} from '../types/CreateGlobalTableInput';
77
import {CreateGlobalTableOutput} from '../types/CreateGlobalTableOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/CreateGlobalTableInput';
10+
export * from '../types/CreateGlobalTableOutput';
11+
export * from '../types/CreateGlobalTableExceptionsUnion';
912

1013
export class CreateGlobalTableCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/CreateTableCommand.ts renamed to packages/client-dynamodb-browser/commands/CreateTableCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {CreateTableInput} from '../types/CreateTableInput';
77
import {CreateTableOutput} from '../types/CreateTableOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/CreateTableInput';
10+
export * from '../types/CreateTableOutput';
11+
export * from '../types/CreateTableExceptionsUnion';
912

1013
export class CreateTableCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/DeleteBackupCommand.ts renamed to packages/client-dynamodb-browser/commands/DeleteBackupCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {DeleteBackupInput} from '../types/DeleteBackupInput';
77
import {DeleteBackupOutput} from '../types/DeleteBackupOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/DeleteBackupInput';
10+
export * from '../types/DeleteBackupOutput';
11+
export * from '../types/DeleteBackupExceptionsUnion';
912

1013
export class DeleteBackupCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/DeleteItemCommand.ts renamed to packages/client-dynamodb-browser/commands/DeleteItemCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {DeleteItemInput} from '../types/DeleteItemInput';
77
import {DeleteItemOutput} from '../types/DeleteItemOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/DeleteItemInput';
10+
export * from '../types/DeleteItemOutput';
11+
export * from '../types/DeleteItemExceptionsUnion';
912

1013
export class DeleteItemCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/DeleteTableCommand.ts renamed to packages/client-dynamodb-browser/commands/DeleteTableCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {DeleteTableInput} from '../types/DeleteTableInput';
77
import {DeleteTableOutput} from '../types/DeleteTableOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/DeleteTableInput';
10+
export * from '../types/DeleteTableOutput';
11+
export * from '../types/DeleteTableExceptionsUnion';
912

1013
export class DeleteTableCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/DescribeBackupCommand.ts renamed to packages/client-dynamodb-browser/commands/DescribeBackupCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {DescribeBackupInput} from '../types/DescribeBackupInput';
77
import {DescribeBackupOutput} from '../types/DescribeBackupOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/DescribeBackupInput';
10+
export * from '../types/DescribeBackupOutput';
11+
export * from '../types/DescribeBackupExceptionsUnion';
912

1013
export class DescribeBackupCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/DescribeContinuousBackupsCommand.ts renamed to packages/client-dynamodb-browser/commands/DescribeContinuousBackupsCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {DescribeContinuousBackupsInput} from '../types/DescribeContinuousBackupsInput';
77
import {DescribeContinuousBackupsOutput} from '../types/DescribeContinuousBackupsOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/DescribeContinuousBackupsInput';
10+
export * from '../types/DescribeContinuousBackupsOutput';
11+
export * from '../types/DescribeContinuousBackupsExceptionsUnion';
912

1013
export class DescribeContinuousBackupsCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/DescribeEndpointsCommand.ts renamed to packages/client-dynamodb-browser/commands/DescribeEndpointsCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {DescribeEndpointsInput} from '../types/DescribeEndpointsInput';
77
import {DescribeEndpointsOutput} from '../types/DescribeEndpointsOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/DescribeEndpointsInput';
10+
export * from '../types/DescribeEndpointsOutput';
11+
export * from '../types/DescribeEndpointsExceptionsUnion';
912

1013
export class DescribeEndpointsCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/DescribeGlobalTableCommand.ts renamed to packages/client-dynamodb-browser/commands/DescribeGlobalTableCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {DescribeGlobalTableInput} from '../types/DescribeGlobalTableInput';
77
import {DescribeGlobalTableOutput} from '../types/DescribeGlobalTableOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/DescribeGlobalTableInput';
10+
export * from '../types/DescribeGlobalTableOutput';
11+
export * from '../types/DescribeGlobalTableExceptionsUnion';
912

1013
export class DescribeGlobalTableCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/DescribeGlobalTableSettingsCommand.ts renamed to packages/client-dynamodb-browser/commands/DescribeGlobalTableSettingsCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {DescribeGlobalTableSettingsInput} from '../types/DescribeGlobalTableSettingsInput';
77
import {DescribeGlobalTableSettingsOutput} from '../types/DescribeGlobalTableSettingsOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/DescribeGlobalTableSettingsInput';
10+
export * from '../types/DescribeGlobalTableSettingsOutput';
11+
export * from '../types/DescribeGlobalTableSettingsExceptionsUnion';
912

1013
export class DescribeGlobalTableSettingsCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/DescribeLimitsCommand.ts renamed to packages/client-dynamodb-browser/commands/DescribeLimitsCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {DescribeLimitsInput} from '../types/DescribeLimitsInput';
77
import {DescribeLimitsOutput} from '../types/DescribeLimitsOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/DescribeLimitsInput';
10+
export * from '../types/DescribeLimitsOutput';
11+
export * from '../types/DescribeLimitsExceptionsUnion';
912

1013
export class DescribeLimitsCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/DescribeTableCommand.ts renamed to packages/client-dynamodb-browser/commands/DescribeTableCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {DescribeTableInput} from '../types/DescribeTableInput';
77
import {DescribeTableOutput} from '../types/DescribeTableOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/DescribeTableInput';
10+
export * from '../types/DescribeTableOutput';
11+
export * from '../types/DescribeTableExceptionsUnion';
912

1013
export class DescribeTableCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/DescribeTimeToLiveCommand.ts renamed to packages/client-dynamodb-browser/commands/DescribeTimeToLiveCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {DescribeTimeToLiveInput} from '../types/DescribeTimeToLiveInput';
77
import {DescribeTimeToLiveOutput} from '../types/DescribeTimeToLiveOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/DescribeTimeToLiveInput';
10+
export * from '../types/DescribeTimeToLiveOutput';
11+
export * from '../types/DescribeTimeToLiveExceptionsUnion';
912

1013
export class DescribeTimeToLiveCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/GetItemCommand.ts renamed to packages/client-dynamodb-browser/commands/GetItemCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {GetItemInput} from '../types/GetItemInput';
77
import {GetItemOutput} from '../types/GetItemOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/GetItemInput';
10+
export * from '../types/GetItemOutput';
11+
export * from '../types/GetItemExceptionsUnion';
912

1013
export class GetItemCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/ListBackupsCommand.ts renamed to packages/client-dynamodb-browser/commands/ListBackupsCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {ListBackupsInput} from '../types/ListBackupsInput';
77
import {ListBackupsOutput} from '../types/ListBackupsOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/ListBackupsInput';
10+
export * from '../types/ListBackupsOutput';
11+
export * from '../types/ListBackupsExceptionsUnion';
912

1013
export class ListBackupsCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/ListGlobalTablesCommand.ts renamed to packages/client-dynamodb-browser/commands/ListGlobalTablesCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {ListGlobalTablesInput} from '../types/ListGlobalTablesInput';
77
import {ListGlobalTablesOutput} from '../types/ListGlobalTablesOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/ListGlobalTablesInput';
10+
export * from '../types/ListGlobalTablesOutput';
11+
export * from '../types/ListGlobalTablesExceptionsUnion';
912

1013
export class ListGlobalTablesCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/ListTablesCommand.ts renamed to packages/client-dynamodb-browser/commands/ListTablesCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {ListTablesInput} from '../types/ListTablesInput';
77
import {ListTablesOutput} from '../types/ListTablesOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/ListTablesInput';
10+
export * from '../types/ListTablesOutput';
11+
export * from '../types/ListTablesExceptionsUnion';
912

1013
export class ListTablesCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/ListTagsOfResourceCommand.ts renamed to packages/client-dynamodb-browser/commands/ListTagsOfResourceCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {ListTagsOfResourceInput} from '../types/ListTagsOfResourceInput';
77
import {ListTagsOfResourceOutput} from '../types/ListTagsOfResourceOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/ListTagsOfResourceInput';
10+
export * from '../types/ListTagsOfResourceOutput';
11+
export * from '../types/ListTagsOfResourceExceptionsUnion';
912

1013
export class ListTagsOfResourceCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/PutItemCommand.ts renamed to packages/client-dynamodb-browser/commands/PutItemCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {PutItemInput} from '../types/PutItemInput';
77
import {PutItemOutput} from '../types/PutItemOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/PutItemInput';
10+
export * from '../types/PutItemOutput';
11+
export * from '../types/PutItemExceptionsUnion';
912

1013
export class PutItemCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/QueryCommand.ts renamed to packages/client-dynamodb-browser/commands/QueryCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {QueryInput} from '../types/QueryInput';
77
import {QueryOutput} from '../types/QueryOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/QueryInput';
10+
export * from '../types/QueryOutput';
11+
export * from '../types/QueryExceptionsUnion';
912

1013
export class QueryCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/RestoreTableFromBackupCommand.ts renamed to packages/client-dynamodb-browser/commands/RestoreTableFromBackupCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {RestoreTableFromBackupInput} from '../types/RestoreTableFromBackupInput';
77
import {RestoreTableFromBackupOutput} from '../types/RestoreTableFromBackupOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/RestoreTableFromBackupInput';
10+
export * from '../types/RestoreTableFromBackupOutput';
11+
export * from '../types/RestoreTableFromBackupExceptionsUnion';
912

1013
export class RestoreTableFromBackupCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/RestoreTableToPointInTimeCommand.ts renamed to packages/client-dynamodb-browser/commands/RestoreTableToPointInTimeCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {RestoreTableToPointInTimeInput} from '../types/RestoreTableToPointInTimeInput';
77
import {RestoreTableToPointInTimeOutput} from '../types/RestoreTableToPointInTimeOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/RestoreTableToPointInTimeInput';
10+
export * from '../types/RestoreTableToPointInTimeOutput';
11+
export * from '../types/RestoreTableToPointInTimeExceptionsUnion';
912

1013
export class RestoreTableToPointInTimeCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/ScanCommand.ts renamed to packages/client-dynamodb-browser/commands/ScanCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {ScanInput} from '../types/ScanInput';
77
import {ScanOutput} from '../types/ScanOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/ScanInput';
10+
export * from '../types/ScanOutput';
11+
export * from '../types/ScanExceptionsUnion';
912

1013
export class ScanCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/TagResourceCommand.ts renamed to packages/client-dynamodb-browser/commands/TagResourceCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {TagResourceInput} from '../types/TagResourceInput';
77
import {TagResourceOutput} from '../types/TagResourceOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/TagResourceInput';
10+
export * from '../types/TagResourceOutput';
11+
export * from '../types/TagResourceExceptionsUnion';
912

1013
export class TagResourceCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/UntagResourceCommand.ts renamed to packages/client-dynamodb-browser/commands/UntagResourceCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {UntagResourceInput} from '../types/UntagResourceInput';
77
import {UntagResourceOutput} from '../types/UntagResourceOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/UntagResourceInput';
10+
export * from '../types/UntagResourceOutput';
11+
export * from '../types/UntagResourceExceptionsUnion';
912

1013
export class UntagResourceCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/UpdateContinuousBackupsCommand.ts renamed to packages/client-dynamodb-browser/commands/UpdateContinuousBackupsCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {UpdateContinuousBackupsInput} from '../types/UpdateContinuousBackupsInput';
77
import {UpdateContinuousBackupsOutput} from '../types/UpdateContinuousBackupsOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/UpdateContinuousBackupsInput';
10+
export * from '../types/UpdateContinuousBackupsOutput';
11+
export * from '../types/UpdateContinuousBackupsExceptionsUnion';
912

1013
export class UpdateContinuousBackupsCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/UpdateGlobalTableCommand.ts renamed to packages/client-dynamodb-browser/commands/UpdateGlobalTableCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {UpdateGlobalTableInput} from '../types/UpdateGlobalTableInput';
77
import {UpdateGlobalTableOutput} from '../types/UpdateGlobalTableOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/UpdateGlobalTableInput';
10+
export * from '../types/UpdateGlobalTableOutput';
11+
export * from '../types/UpdateGlobalTableExceptionsUnion';
912

1013
export class UpdateGlobalTableCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/UpdateGlobalTableSettingsCommand.ts renamed to packages/client-dynamodb-browser/commands/UpdateGlobalTableSettingsCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {UpdateGlobalTableSettingsInput} from '../types/UpdateGlobalTableSettingsInput';
77
import {UpdateGlobalTableSettingsOutput} from '../types/UpdateGlobalTableSettingsOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/UpdateGlobalTableSettingsInput';
10+
export * from '../types/UpdateGlobalTableSettingsOutput';
11+
export * from '../types/UpdateGlobalTableSettingsExceptionsUnion';
912

1013
export class UpdateGlobalTableSettingsCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

packages/client-dynamodb-v2-browser/commands/UpdateItemCommand.ts renamed to packages/client-dynamodb-browser/commands/UpdateItemCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
66
import {UpdateItemInput} from '../types/UpdateItemInput';
77
import {UpdateItemOutput} from '../types/UpdateItemOutput';
88
import {DynamoDBResolvedConfiguration} from '../DynamoDBConfiguration';
9+
export * from '../types/UpdateItemInput';
10+
export * from '../types/UpdateItemOutput';
11+
export * from '../types/UpdateItemExceptionsUnion';
912

1013
export class UpdateItemCommand implements __aws_sdk_types.Command<
1114
InputTypesUnion,

0 commit comments

Comments
 (0)