@aws-sdk/client-dynamodb 3.948.0 → 3.953.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/index.js +1136 -807
- package/dist-cjs/runtimeConfig.shared.js +8 -7
- package/dist-es/commands/BatchExecuteStatementCommand.js +2 -2
- package/dist-es/commands/BatchGetItemCommand.js +2 -2
- package/dist-es/commands/BatchWriteItemCommand.js +2 -2
- package/dist-es/commands/CreateBackupCommand.js +2 -2
- package/dist-es/commands/CreateGlobalTableCommand.js +2 -2
- package/dist-es/commands/CreateTableCommand.js +2 -2
- package/dist-es/commands/DeleteBackupCommand.js +2 -2
- package/dist-es/commands/DeleteItemCommand.js +2 -2
- package/dist-es/commands/DeleteResourcePolicyCommand.js +2 -2
- package/dist-es/commands/DeleteTableCommand.js +2 -2
- package/dist-es/commands/DescribeBackupCommand.js +2 -2
- package/dist-es/commands/DescribeContinuousBackupsCommand.js +2 -2
- package/dist-es/commands/DescribeContributorInsightsCommand.js +2 -2
- package/dist-es/commands/DescribeEndpointsCommand.js +2 -2
- package/dist-es/commands/DescribeExportCommand.js +2 -2
- package/dist-es/commands/DescribeGlobalTableCommand.js +2 -2
- package/dist-es/commands/DescribeGlobalTableSettingsCommand.js +2 -2
- package/dist-es/commands/DescribeImportCommand.js +2 -2
- package/dist-es/commands/DescribeKinesisStreamingDestinationCommand.js +2 -2
- package/dist-es/commands/DescribeLimitsCommand.js +2 -2
- package/dist-es/commands/DescribeTableCommand.js +2 -2
- package/dist-es/commands/DescribeTableReplicaAutoScalingCommand.js +2 -2
- package/dist-es/commands/DescribeTimeToLiveCommand.js +2 -2
- package/dist-es/commands/DisableKinesisStreamingDestinationCommand.js +2 -2
- package/dist-es/commands/EnableKinesisStreamingDestinationCommand.js +2 -2
- package/dist-es/commands/ExecuteStatementCommand.js +2 -2
- package/dist-es/commands/ExecuteTransactionCommand.js +2 -2
- package/dist-es/commands/ExportTableToPointInTimeCommand.js +2 -2
- package/dist-es/commands/GetItemCommand.js +2 -2
- package/dist-es/commands/GetResourcePolicyCommand.js +2 -2
- package/dist-es/commands/ImportTableCommand.js +2 -2
- package/dist-es/commands/ListBackupsCommand.js +2 -2
- package/dist-es/commands/ListContributorInsightsCommand.js +2 -2
- package/dist-es/commands/ListExportsCommand.js +2 -2
- package/dist-es/commands/ListGlobalTablesCommand.js +2 -2
- package/dist-es/commands/ListImportsCommand.js +2 -2
- package/dist-es/commands/ListTablesCommand.js +2 -2
- package/dist-es/commands/ListTagsOfResourceCommand.js +2 -2
- package/dist-es/commands/PutItemCommand.js +2 -2
- package/dist-es/commands/PutResourcePolicyCommand.js +2 -2
- package/dist-es/commands/QueryCommand.js +2 -2
- package/dist-es/commands/RestoreTableFromBackupCommand.js +2 -2
- package/dist-es/commands/RestoreTableToPointInTimeCommand.js +2 -2
- package/dist-es/commands/ScanCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/TransactGetItemsCommand.js +2 -2
- package/dist-es/commands/TransactWriteItemsCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateContinuousBackupsCommand.js +2 -2
- package/dist-es/commands/UpdateContributorInsightsCommand.js +2 -2
- package/dist-es/commands/UpdateGlobalTableCommand.js +2 -2
- package/dist-es/commands/UpdateGlobalTableSettingsCommand.js +2 -2
- package/dist-es/commands/UpdateItemCommand.js +2 -2
- package/dist-es/commands/UpdateKinesisStreamingDestinationCommand.js +2 -2
- package/dist-es/commands/UpdateTableCommand.js +2 -2
- package/dist-es/commands/UpdateTableReplicaAutoScalingCommand.js +2 -2
- package/dist-es/commands/UpdateTimeToLiveCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +8 -7
- package/dist-es/schemas/schemas_0.js +677 -665
- package/dist-types/DynamoDBClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +318 -397
- package/dist-types/ts3.4/DynamoDBClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +317 -398
- package/package.json +37 -37
|
@@ -27,13 +27,14 @@ const getRuntimeConfig = (config) => {
|
|
|
27
27
|
},
|
|
28
28
|
],
|
|
29
29
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
30
|
-
protocol: config?.protocol ??
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
30
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_0Protocol,
|
|
31
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
32
|
+
defaultNamespace: "com.amazonaws.dynamodb",
|
|
33
|
+
xmlNamespace: "http://dynamodb.amazonaws.com/doc/2012-08-10/",
|
|
34
|
+
version: "2012-08-10",
|
|
35
|
+
serviceTarget: "DynamoDB_20120810",
|
|
36
|
+
jsonCodec: new dynamodb_codec_1.DynamoDBJsonCodec(),
|
|
37
|
+
},
|
|
37
38
|
serviceId: config?.serviceId ?? "DynamoDB",
|
|
38
39
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
39
40
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { BatchExecuteStatement } from "../schemas/schemas_0";
|
|
4
|
+
import { BatchExecuteStatement$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class BatchExecuteStatementCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class BatchExecuteStatementCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DynamoDB_20120810", "BatchExecuteStatement", {})
|
|
13
13
|
.n("DynamoDBClient", "BatchExecuteStatementCommand")
|
|
14
|
-
.sc(BatchExecuteStatement)
|
|
14
|
+
.sc(BatchExecuteStatement$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { BatchGetItem } from "../schemas/schemas_0";
|
|
4
|
+
import { BatchGetItem$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class BatchGetItemCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class BatchGetItemCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("DynamoDB_20120810", "BatchGetItem", {})
|
|
16
16
|
.n("DynamoDBClient", "BatchGetItemCommand")
|
|
17
|
-
.sc(BatchGetItem)
|
|
17
|
+
.sc(BatchGetItem$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { BatchWriteItem } from "../schemas/schemas_0";
|
|
4
|
+
import { BatchWriteItem$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class BatchWriteItemCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class BatchWriteItemCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("DynamoDB_20120810", "BatchWriteItem", {})
|
|
16
16
|
.n("DynamoDBClient", "BatchWriteItemCommand")
|
|
17
|
-
.sc(BatchWriteItem)
|
|
17
|
+
.sc(BatchWriteItem$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateBackup } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateBackup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateBackupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class CreateBackupCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("DynamoDB_20120810", "CreateBackup", {})
|
|
16
16
|
.n("DynamoDBClient", "CreateBackupCommand")
|
|
17
|
-
.sc(CreateBackup)
|
|
17
|
+
.sc(CreateBackup$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateGlobalTable } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateGlobalTable$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateGlobalTableCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class CreateGlobalTableCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("DynamoDB_20120810", "CreateGlobalTable", {})
|
|
16
16
|
.n("DynamoDBClient", "CreateGlobalTableCommand")
|
|
17
|
-
.sc(CreateGlobalTable)
|
|
17
|
+
.sc(CreateGlobalTable$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateTable } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateTable$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateTableCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class CreateTableCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("DynamoDB_20120810", "CreateTable", {})
|
|
16
16
|
.n("DynamoDBClient", "CreateTableCommand")
|
|
17
|
-
.sc(CreateTable)
|
|
17
|
+
.sc(CreateTable$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteBackup } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteBackup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteBackupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class DeleteBackupCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("DynamoDB_20120810", "DeleteBackup", {})
|
|
16
16
|
.n("DynamoDBClient", "DeleteBackupCommand")
|
|
17
|
-
.sc(DeleteBackup)
|
|
17
|
+
.sc(DeleteBackup$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteItem } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteItem$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteItemCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class DeleteItemCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("DynamoDB_20120810", "DeleteItem", {})
|
|
16
16
|
.n("DynamoDBClient", "DeleteItemCommand")
|
|
17
|
-
.sc(DeleteItem)
|
|
17
|
+
.sc(DeleteItem$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteResourcePolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteResourcePolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteResourcePolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class DeleteResourcePolicyCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("DynamoDB_20120810", "DeleteResourcePolicy", {})
|
|
16
16
|
.n("DynamoDBClient", "DeleteResourcePolicyCommand")
|
|
17
|
-
.sc(DeleteResourcePolicy)
|
|
17
|
+
.sc(DeleteResourcePolicy$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteTable } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteTable$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteTableCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class DeleteTableCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("DynamoDB_20120810", "DeleteTable", {})
|
|
16
16
|
.n("DynamoDBClient", "DeleteTableCommand")
|
|
17
|
-
.sc(DeleteTable)
|
|
17
|
+
.sc(DeleteTable$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeBackup } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeBackup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeBackupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class DescribeBackupCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("DynamoDB_20120810", "DescribeBackup", {})
|
|
16
16
|
.n("DynamoDBClient", "DescribeBackupCommand")
|
|
17
|
-
.sc(DescribeBackup)
|
|
17
|
+
.sc(DescribeBackup$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeContinuousBackups } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeContinuousBackups$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeContinuousBackupsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class DescribeContinuousBackupsCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("DynamoDB_20120810", "DescribeContinuousBackups", {})
|
|
16
16
|
.n("DynamoDBClient", "DescribeContinuousBackupsCommand")
|
|
17
|
-
.sc(DescribeContinuousBackups)
|
|
17
|
+
.sc(DescribeContinuousBackups$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeContributorInsights } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeContributorInsights$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeContributorInsightsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class DescribeContributorInsightsCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("DynamoDB_20120810", "DescribeContributorInsights", {})
|
|
16
16
|
.n("DynamoDBClient", "DescribeContributorInsightsCommand")
|
|
17
|
-
.sc(DescribeContributorInsights)
|
|
17
|
+
.sc(DescribeContributorInsights$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeEndpoints } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeEndpoints$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeEndpointsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeEndpointsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DynamoDB_20120810", "DescribeEndpoints", {})
|
|
13
13
|
.n("DynamoDBClient", "DescribeEndpointsCommand")
|
|
14
|
-
.sc(DescribeEndpoints)
|
|
14
|
+
.sc(DescribeEndpoints$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeExport } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeExport$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeExportCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class DescribeExportCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("DynamoDB_20120810", "DescribeExport", {})
|
|
16
16
|
.n("DynamoDBClient", "DescribeExportCommand")
|
|
17
|
-
.sc(DescribeExport)
|
|
17
|
+
.sc(DescribeExport$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeGlobalTable } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeGlobalTable$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeGlobalTableCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class DescribeGlobalTableCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("DynamoDB_20120810", "DescribeGlobalTable", {})
|
|
16
16
|
.n("DynamoDBClient", "DescribeGlobalTableCommand")
|
|
17
|
-
.sc(DescribeGlobalTable)
|
|
17
|
+
.sc(DescribeGlobalTable$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeGlobalTableSettings } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeGlobalTableSettings$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeGlobalTableSettingsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class DescribeGlobalTableSettingsCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("DynamoDB_20120810", "DescribeGlobalTableSettings", {})
|
|
16
16
|
.n("DynamoDBClient", "DescribeGlobalTableSettingsCommand")
|
|
17
|
-
.sc(DescribeGlobalTableSettings)
|
|
17
|
+
.sc(DescribeGlobalTableSettings$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeImport } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeImport$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeImportCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class DescribeImportCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("DynamoDB_20120810", "DescribeImport", {})
|
|
16
16
|
.n("DynamoDBClient", "DescribeImportCommand")
|
|
17
|
-
.sc(DescribeImport)
|
|
17
|
+
.sc(DescribeImport$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeKinesisStreamingDestination } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeKinesisStreamingDestination$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeKinesisStreamingDestinationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class DescribeKinesisStreamingDestinationCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("DynamoDB_20120810", "DescribeKinesisStreamingDestination", {})
|
|
16
16
|
.n("DynamoDBClient", "DescribeKinesisStreamingDestinationCommand")
|
|
17
|
-
.sc(DescribeKinesisStreamingDestination)
|
|
17
|
+
.sc(DescribeKinesisStreamingDestination$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeLimits } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeLimits$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeLimitsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeLimitsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DynamoDB_20120810", "DescribeLimits", {})
|
|
13
13
|
.n("DynamoDBClient", "DescribeLimitsCommand")
|
|
14
|
-
.sc(DescribeLimits)
|
|
14
|
+
.sc(DescribeLimits$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeTable } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeTable$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeTableCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class DescribeTableCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("DynamoDB_20120810", "DescribeTable", {})
|
|
16
16
|
.n("DynamoDBClient", "DescribeTableCommand")
|
|
17
|
-
.sc(DescribeTable)
|
|
17
|
+
.sc(DescribeTable$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeTableReplicaAutoScaling } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeTableReplicaAutoScaling$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeTableReplicaAutoScalingCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class DescribeTableReplicaAutoScalingCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("DynamoDB_20120810", "DescribeTableReplicaAutoScaling", {})
|
|
16
16
|
.n("DynamoDBClient", "DescribeTableReplicaAutoScalingCommand")
|
|
17
|
-
.sc(DescribeTableReplicaAutoScaling)
|
|
17
|
+
.sc(DescribeTableReplicaAutoScaling$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeTimeToLive } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeTimeToLive$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeTimeToLiveCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class DescribeTimeToLiveCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("DynamoDB_20120810", "DescribeTimeToLive", {})
|
|
16
16
|
.n("DynamoDBClient", "DescribeTimeToLiveCommand")
|
|
17
|
-
.sc(DescribeTimeToLive)
|
|
17
|
+
.sc(DescribeTimeToLive$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DisableKinesisStreamingDestination } from "../schemas/schemas_0";
|
|
4
|
+
import { DisableKinesisStreamingDestination$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisableKinesisStreamingDestinationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class DisableKinesisStreamingDestinationCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("DynamoDB_20120810", "DisableKinesisStreamingDestination", {})
|
|
16
16
|
.n("DynamoDBClient", "DisableKinesisStreamingDestinationCommand")
|
|
17
|
-
.sc(DisableKinesisStreamingDestination)
|
|
17
|
+
.sc(DisableKinesisStreamingDestination$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { EnableKinesisStreamingDestination } from "../schemas/schemas_0";
|
|
4
|
+
import { EnableKinesisStreamingDestination$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class EnableKinesisStreamingDestinationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class EnableKinesisStreamingDestinationCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("DynamoDB_20120810", "EnableKinesisStreamingDestination", {})
|
|
16
16
|
.n("DynamoDBClient", "EnableKinesisStreamingDestinationCommand")
|
|
17
|
-
.sc(EnableKinesisStreamingDestination)
|
|
17
|
+
.sc(EnableKinesisStreamingDestination$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ExecuteStatement } from "../schemas/schemas_0";
|
|
4
|
+
import { ExecuteStatement$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ExecuteStatementCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ExecuteStatementCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DynamoDB_20120810", "ExecuteStatement", {})
|
|
13
13
|
.n("DynamoDBClient", "ExecuteStatementCommand")
|
|
14
|
-
.sc(ExecuteStatement)
|
|
14
|
+
.sc(ExecuteStatement$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ExecuteTransaction } from "../schemas/schemas_0";
|
|
4
|
+
import { ExecuteTransaction$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ExecuteTransactionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ExecuteTransactionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DynamoDB_20120810", "ExecuteTransaction", {})
|
|
13
13
|
.n("DynamoDBClient", "ExecuteTransactionCommand")
|
|
14
|
-
.sc(ExecuteTransaction)
|
|
14
|
+
.sc(ExecuteTransaction$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ExportTableToPointInTime } from "../schemas/schemas_0";
|
|
4
|
+
import { ExportTableToPointInTime$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ExportTableToPointInTimeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class ExportTableToPointInTimeCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("DynamoDB_20120810", "ExportTableToPointInTime", {})
|
|
16
16
|
.n("DynamoDBClient", "ExportTableToPointInTimeCommand")
|
|
17
|
-
.sc(ExportTableToPointInTime)
|
|
17
|
+
.sc(ExportTableToPointInTime$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetItem } from "../schemas/schemas_0";
|
|
4
|
+
import { GetItem$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetItemCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class GetItemCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("DynamoDB_20120810", "GetItem", {})
|
|
16
16
|
.n("DynamoDBClient", "GetItemCommand")
|
|
17
|
-
.sc(GetItem)
|
|
17
|
+
.sc(GetItem$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetResourcePolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { GetResourcePolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetResourcePolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class GetResourcePolicyCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("DynamoDB_20120810", "GetResourcePolicy", {})
|
|
16
16
|
.n("DynamoDBClient", "GetResourcePolicyCommand")
|
|
17
|
-
.sc(GetResourcePolicy)
|
|
17
|
+
.sc(GetResourcePolicy$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ImportTable } from "../schemas/schemas_0";
|
|
4
|
+
import { ImportTable$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ImportTableCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class ImportTableCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("DynamoDB_20120810", "ImportTable", {})
|
|
16
16
|
.n("DynamoDBClient", "ImportTableCommand")
|
|
17
|
-
.sc(ImportTable)
|
|
17
|
+
.sc(ImportTable$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListBackups } from "../schemas/schemas_0";
|
|
4
|
+
import { ListBackups$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListBackupsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class ListBackupsCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("DynamoDB_20120810", "ListBackups", {})
|
|
16
16
|
.n("DynamoDBClient", "ListBackupsCommand")
|
|
17
|
-
.sc(ListBackups)
|
|
17
|
+
.sc(ListBackups$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListContributorInsights } from "../schemas/schemas_0";
|
|
4
|
+
import { ListContributorInsights$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListContributorInsightsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class ListContributorInsightsCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("DynamoDB_20120810", "ListContributorInsights", {})
|
|
16
16
|
.n("DynamoDBClient", "ListContributorInsightsCommand")
|
|
17
|
-
.sc(ListContributorInsights)
|
|
17
|
+
.sc(ListContributorInsights$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListExports } from "../schemas/schemas_0";
|
|
4
|
+
import { ListExports$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListExportsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -14,6 +14,6 @@ export class ListExportsCommand extends $Command
|
|
|
14
14
|
})
|
|
15
15
|
.s("DynamoDB_20120810", "ListExports", {})
|
|
16
16
|
.n("DynamoDBClient", "ListExportsCommand")
|
|
17
|
-
.sc(ListExports)
|
|
17
|
+
.sc(ListExports$)
|
|
18
18
|
.build() {
|
|
19
19
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListGlobalTables } from "../schemas/schemas_0";
|
|
4
|
+
import { ListGlobalTables$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListGlobalTablesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListGlobalTablesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("DynamoDB_20120810", "ListGlobalTables", {})
|
|
13
13
|
.n("DynamoDBClient", "ListGlobalTablesCommand")
|
|
14
|
-
.sc(ListGlobalTables)
|
|
14
|
+
.sc(ListGlobalTables$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|