@aws-sdk/client-dynamodb 3.648.0 → 3.650.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/endpoint/endpointResolver.js +6 -2
- package/dist-cjs/index.js +57 -171
- package/dist-es/commands/BatchExecuteStatementCommand.js +1 -3
- package/dist-es/commands/BatchGetItemCommand.js +1 -3
- package/dist-es/commands/BatchWriteItemCommand.js +1 -3
- package/dist-es/commands/CreateBackupCommand.js +1 -3
- package/dist-es/commands/CreateGlobalTableCommand.js +1 -3
- package/dist-es/commands/CreateTableCommand.js +1 -3
- package/dist-es/commands/DeleteBackupCommand.js +1 -3
- package/dist-es/commands/DeleteItemCommand.js +1 -3
- package/dist-es/commands/DeleteResourcePolicyCommand.js +1 -3
- package/dist-es/commands/DeleteTableCommand.js +1 -3
- package/dist-es/commands/DescribeBackupCommand.js +1 -3
- package/dist-es/commands/DescribeContinuousBackupsCommand.js +1 -3
- package/dist-es/commands/DescribeContributorInsightsCommand.js +1 -3
- package/dist-es/commands/DescribeEndpointsCommand.js +1 -3
- package/dist-es/commands/DescribeExportCommand.js +1 -3
- package/dist-es/commands/DescribeGlobalTableCommand.js +1 -3
- package/dist-es/commands/DescribeGlobalTableSettingsCommand.js +1 -3
- package/dist-es/commands/DescribeImportCommand.js +1 -3
- package/dist-es/commands/DescribeKinesisStreamingDestinationCommand.js +1 -3
- package/dist-es/commands/DescribeLimitsCommand.js +1 -3
- package/dist-es/commands/DescribeTableCommand.js +1 -3
- package/dist-es/commands/DescribeTableReplicaAutoScalingCommand.js +1 -3
- package/dist-es/commands/DescribeTimeToLiveCommand.js +1 -3
- package/dist-es/commands/DisableKinesisStreamingDestinationCommand.js +1 -3
- package/dist-es/commands/EnableKinesisStreamingDestinationCommand.js +1 -3
- package/dist-es/commands/ExecuteStatementCommand.js +1 -3
- package/dist-es/commands/ExecuteTransactionCommand.js +1 -3
- package/dist-es/commands/ExportTableToPointInTimeCommand.js +1 -3
- package/dist-es/commands/GetItemCommand.js +1 -3
- package/dist-es/commands/GetResourcePolicyCommand.js +1 -3
- package/dist-es/commands/ImportTableCommand.js +1 -3
- package/dist-es/commands/ListBackupsCommand.js +1 -3
- package/dist-es/commands/ListContributorInsightsCommand.js +1 -3
- package/dist-es/commands/ListExportsCommand.js +1 -3
- package/dist-es/commands/ListGlobalTablesCommand.js +1 -3
- package/dist-es/commands/ListImportsCommand.js +1 -3
- package/dist-es/commands/ListTablesCommand.js +1 -3
- package/dist-es/commands/ListTagsOfResourceCommand.js +1 -3
- package/dist-es/commands/PutItemCommand.js +1 -3
- package/dist-es/commands/PutResourcePolicyCommand.js +1 -3
- package/dist-es/commands/QueryCommand.js +1 -3
- package/dist-es/commands/RestoreTableFromBackupCommand.js +1 -3
- package/dist-es/commands/RestoreTableToPointInTimeCommand.js +1 -3
- package/dist-es/commands/ScanCommand.js +1 -3
- package/dist-es/commands/TagResourceCommand.js +1 -3
- package/dist-es/commands/TransactGetItemsCommand.js +1 -3
- package/dist-es/commands/TransactWriteItemsCommand.js +1 -3
- package/dist-es/commands/UntagResourceCommand.js +1 -3
- package/dist-es/commands/UpdateContinuousBackupsCommand.js +1 -3
- package/dist-es/commands/UpdateContributorInsightsCommand.js +1 -3
- package/dist-es/commands/UpdateGlobalTableCommand.js +1 -3
- package/dist-es/commands/UpdateGlobalTableSettingsCommand.js +1 -3
- package/dist-es/commands/UpdateItemCommand.js +1 -3
- package/dist-es/commands/UpdateKinesisStreamingDestinationCommand.js +1 -3
- package/dist-es/commands/UpdateTableCommand.js +1 -3
- package/dist-es/commands/UpdateTableReplicaAutoScalingCommand.js +1 -3
- package/dist-es/commands/UpdateTimeToLiveCommand.js +1 -3
- package/dist-es/endpoint/endpointResolver.js +7 -3
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +37 -37
|
@@ -4,11 +4,15 @@ exports.defaultEndpointResolver = void 0;
|
|
|
4
4
|
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
5
|
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
6
6
|
const ruleset_1 = require("./ruleset");
|
|
7
|
+
const cache = new util_endpoints_2.EndpointCache({
|
|
8
|
+
size: 50,
|
|
9
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
10
|
+
});
|
|
7
11
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
8
|
-
return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
12
|
+
return cache.get(endpointParams, () => (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
9
13
|
endpointParams: endpointParams,
|
|
10
14
|
logger: context.logger,
|
|
11
|
-
});
|
|
15
|
+
}));
|
|
12
16
|
};
|
|
13
17
|
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
14
18
|
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -4046,9 +4046,7 @@ function sharedHeaders(operation) {
|
|
|
4046
4046
|
__name(sharedHeaders, "sharedHeaders");
|
|
4047
4047
|
|
|
4048
4048
|
// src/commands/DescribeEndpointsCommand.ts
|
|
4049
|
-
var _DescribeEndpointsCommand = class _DescribeEndpointsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4050
|
-
...commonParams
|
|
4051
|
-
}).m(function(Command, cs, config, o) {
|
|
4049
|
+
var _DescribeEndpointsCommand = class _DescribeEndpointsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4052
4050
|
return [
|
|
4053
4051
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4054
4052
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4176,9 +4174,7 @@ var DynamoDBClient = _DynamoDBClient;
|
|
|
4176
4174
|
|
|
4177
4175
|
|
|
4178
4176
|
|
|
4179
|
-
var _BatchExecuteStatementCommand = class _BatchExecuteStatementCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4180
|
-
...commonParams
|
|
4181
|
-
}).m(function(Command, cs, config, o) {
|
|
4177
|
+
var _BatchExecuteStatementCommand = class _BatchExecuteStatementCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4182
4178
|
return [
|
|
4183
4179
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4184
4180
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4192,9 +4188,7 @@ var BatchExecuteStatementCommand = _BatchExecuteStatementCommand;
|
|
|
4192
4188
|
|
|
4193
4189
|
|
|
4194
4190
|
|
|
4195
|
-
var _BatchGetItemCommand = class _BatchGetItemCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4196
|
-
...commonParams
|
|
4197
|
-
}).m(function(Command, cs, config, o) {
|
|
4191
|
+
var _BatchGetItemCommand = class _BatchGetItemCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4198
4192
|
return [
|
|
4199
4193
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4200
4194
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4208,9 +4202,7 @@ var BatchGetItemCommand = _BatchGetItemCommand;
|
|
|
4208
4202
|
|
|
4209
4203
|
|
|
4210
4204
|
|
|
4211
|
-
var _BatchWriteItemCommand = class _BatchWriteItemCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4212
|
-
...commonParams
|
|
4213
|
-
}).m(function(Command, cs, config, o) {
|
|
4205
|
+
var _BatchWriteItemCommand = class _BatchWriteItemCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4214
4206
|
return [
|
|
4215
4207
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4216
4208
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4224,9 +4216,7 @@ var BatchWriteItemCommand = _BatchWriteItemCommand;
|
|
|
4224
4216
|
|
|
4225
4217
|
|
|
4226
4218
|
|
|
4227
|
-
var _CreateBackupCommand = class _CreateBackupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4228
|
-
...commonParams
|
|
4229
|
-
}).m(function(Command, cs, config, o) {
|
|
4219
|
+
var _CreateBackupCommand = class _CreateBackupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4230
4220
|
return [
|
|
4231
4221
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4232
4222
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4240,9 +4230,7 @@ var CreateBackupCommand = _CreateBackupCommand;
|
|
|
4240
4230
|
|
|
4241
4231
|
|
|
4242
4232
|
|
|
4243
|
-
var _CreateGlobalTableCommand = class _CreateGlobalTableCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4244
|
-
...commonParams
|
|
4245
|
-
}).m(function(Command, cs, config, o) {
|
|
4233
|
+
var _CreateGlobalTableCommand = class _CreateGlobalTableCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4246
4234
|
return [
|
|
4247
4235
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4248
4236
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4256,9 +4244,7 @@ var CreateGlobalTableCommand = _CreateGlobalTableCommand;
|
|
|
4256
4244
|
|
|
4257
4245
|
|
|
4258
4246
|
|
|
4259
|
-
var _CreateTableCommand = class _CreateTableCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4260
|
-
...commonParams
|
|
4261
|
-
}).m(function(Command, cs, config, o) {
|
|
4247
|
+
var _CreateTableCommand = class _CreateTableCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4262
4248
|
return [
|
|
4263
4249
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4264
4250
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4272,9 +4258,7 @@ var CreateTableCommand = _CreateTableCommand;
|
|
|
4272
4258
|
|
|
4273
4259
|
|
|
4274
4260
|
|
|
4275
|
-
var _DeleteBackupCommand = class _DeleteBackupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4276
|
-
...commonParams
|
|
4277
|
-
}).m(function(Command, cs, config, o) {
|
|
4261
|
+
var _DeleteBackupCommand = class _DeleteBackupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4278
4262
|
return [
|
|
4279
4263
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4280
4264
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4288,9 +4272,7 @@ var DeleteBackupCommand = _DeleteBackupCommand;
|
|
|
4288
4272
|
|
|
4289
4273
|
|
|
4290
4274
|
|
|
4291
|
-
var _DeleteItemCommand = class _DeleteItemCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4292
|
-
...commonParams
|
|
4293
|
-
}).m(function(Command, cs, config, o) {
|
|
4275
|
+
var _DeleteItemCommand = class _DeleteItemCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4294
4276
|
return [
|
|
4295
4277
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4296
4278
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4304,9 +4286,7 @@ var DeleteItemCommand = _DeleteItemCommand;
|
|
|
4304
4286
|
|
|
4305
4287
|
|
|
4306
4288
|
|
|
4307
|
-
var _DeleteResourcePolicyCommand = class _DeleteResourcePolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4308
|
-
...commonParams
|
|
4309
|
-
}).m(function(Command, cs, config, o) {
|
|
4289
|
+
var _DeleteResourcePolicyCommand = class _DeleteResourcePolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4310
4290
|
return [
|
|
4311
4291
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4312
4292
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4320,9 +4300,7 @@ var DeleteResourcePolicyCommand = _DeleteResourcePolicyCommand;
|
|
|
4320
4300
|
|
|
4321
4301
|
|
|
4322
4302
|
|
|
4323
|
-
var _DeleteTableCommand = class _DeleteTableCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4324
|
-
...commonParams
|
|
4325
|
-
}).m(function(Command, cs, config, o) {
|
|
4303
|
+
var _DeleteTableCommand = class _DeleteTableCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4326
4304
|
return [
|
|
4327
4305
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4328
4306
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4336,9 +4314,7 @@ var DeleteTableCommand = _DeleteTableCommand;
|
|
|
4336
4314
|
|
|
4337
4315
|
|
|
4338
4316
|
|
|
4339
|
-
var _DescribeBackupCommand = class _DescribeBackupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4340
|
-
...commonParams
|
|
4341
|
-
}).m(function(Command, cs, config, o) {
|
|
4317
|
+
var _DescribeBackupCommand = class _DescribeBackupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4342
4318
|
return [
|
|
4343
4319
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4344
4320
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4352,9 +4328,7 @@ var DescribeBackupCommand = _DescribeBackupCommand;
|
|
|
4352
4328
|
|
|
4353
4329
|
|
|
4354
4330
|
|
|
4355
|
-
var _DescribeContinuousBackupsCommand = class _DescribeContinuousBackupsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4356
|
-
...commonParams
|
|
4357
|
-
}).m(function(Command, cs, config, o) {
|
|
4331
|
+
var _DescribeContinuousBackupsCommand = class _DescribeContinuousBackupsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4358
4332
|
return [
|
|
4359
4333
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4360
4334
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4368,9 +4342,7 @@ var DescribeContinuousBackupsCommand = _DescribeContinuousBackupsCommand;
|
|
|
4368
4342
|
|
|
4369
4343
|
|
|
4370
4344
|
|
|
4371
|
-
var _DescribeContributorInsightsCommand = class _DescribeContributorInsightsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4372
|
-
...commonParams
|
|
4373
|
-
}).m(function(Command, cs, config, o) {
|
|
4345
|
+
var _DescribeContributorInsightsCommand = class _DescribeContributorInsightsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4374
4346
|
return [
|
|
4375
4347
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4376
4348
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4384,9 +4356,7 @@ var DescribeContributorInsightsCommand = _DescribeContributorInsightsCommand;
|
|
|
4384
4356
|
|
|
4385
4357
|
|
|
4386
4358
|
|
|
4387
|
-
var _DescribeExportCommand = class _DescribeExportCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4388
|
-
...commonParams
|
|
4389
|
-
}).m(function(Command, cs, config, o) {
|
|
4359
|
+
var _DescribeExportCommand = class _DescribeExportCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4390
4360
|
return [
|
|
4391
4361
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4392
4362
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4400,9 +4370,7 @@ var DescribeExportCommand = _DescribeExportCommand;
|
|
|
4400
4370
|
|
|
4401
4371
|
|
|
4402
4372
|
|
|
4403
|
-
var _DescribeGlobalTableCommand = class _DescribeGlobalTableCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4404
|
-
...commonParams
|
|
4405
|
-
}).m(function(Command, cs, config, o) {
|
|
4373
|
+
var _DescribeGlobalTableCommand = class _DescribeGlobalTableCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4406
4374
|
return [
|
|
4407
4375
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4408
4376
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4416,9 +4384,7 @@ var DescribeGlobalTableCommand = _DescribeGlobalTableCommand;
|
|
|
4416
4384
|
|
|
4417
4385
|
|
|
4418
4386
|
|
|
4419
|
-
var _DescribeGlobalTableSettingsCommand = class _DescribeGlobalTableSettingsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4420
|
-
...commonParams
|
|
4421
|
-
}).m(function(Command, cs, config, o) {
|
|
4387
|
+
var _DescribeGlobalTableSettingsCommand = class _DescribeGlobalTableSettingsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4422
4388
|
return [
|
|
4423
4389
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4424
4390
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4432,9 +4398,7 @@ var DescribeGlobalTableSettingsCommand = _DescribeGlobalTableSettingsCommand;
|
|
|
4432
4398
|
|
|
4433
4399
|
|
|
4434
4400
|
|
|
4435
|
-
var _DescribeImportCommand = class _DescribeImportCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4436
|
-
...commonParams
|
|
4437
|
-
}).m(function(Command, cs, config, o) {
|
|
4401
|
+
var _DescribeImportCommand = class _DescribeImportCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4438
4402
|
return [
|
|
4439
4403
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4440
4404
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4448,9 +4412,7 @@ var DescribeImportCommand = _DescribeImportCommand;
|
|
|
4448
4412
|
|
|
4449
4413
|
|
|
4450
4414
|
|
|
4451
|
-
var _DescribeKinesisStreamingDestinationCommand = class _DescribeKinesisStreamingDestinationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4452
|
-
...commonParams
|
|
4453
|
-
}).m(function(Command, cs, config, o) {
|
|
4415
|
+
var _DescribeKinesisStreamingDestinationCommand = class _DescribeKinesisStreamingDestinationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4454
4416
|
return [
|
|
4455
4417
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4456
4418
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4464,9 +4426,7 @@ var DescribeKinesisStreamingDestinationCommand = _DescribeKinesisStreamingDestin
|
|
|
4464
4426
|
|
|
4465
4427
|
|
|
4466
4428
|
|
|
4467
|
-
var _DescribeLimitsCommand = class _DescribeLimitsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4468
|
-
...commonParams
|
|
4469
|
-
}).m(function(Command, cs, config, o) {
|
|
4429
|
+
var _DescribeLimitsCommand = class _DescribeLimitsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4470
4430
|
return [
|
|
4471
4431
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4472
4432
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4480,9 +4440,7 @@ var DescribeLimitsCommand = _DescribeLimitsCommand;
|
|
|
4480
4440
|
|
|
4481
4441
|
|
|
4482
4442
|
|
|
4483
|
-
var _DescribeTableCommand = class _DescribeTableCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4484
|
-
...commonParams
|
|
4485
|
-
}).m(function(Command, cs, config, o) {
|
|
4443
|
+
var _DescribeTableCommand = class _DescribeTableCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4486
4444
|
return [
|
|
4487
4445
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4488
4446
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4496,9 +4454,7 @@ var DescribeTableCommand = _DescribeTableCommand;
|
|
|
4496
4454
|
|
|
4497
4455
|
|
|
4498
4456
|
|
|
4499
|
-
var _DescribeTableReplicaAutoScalingCommand = class _DescribeTableReplicaAutoScalingCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4500
|
-
...commonParams
|
|
4501
|
-
}).m(function(Command, cs, config, o) {
|
|
4457
|
+
var _DescribeTableReplicaAutoScalingCommand = class _DescribeTableReplicaAutoScalingCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4502
4458
|
return [
|
|
4503
4459
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4504
4460
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4512,9 +4468,7 @@ var DescribeTableReplicaAutoScalingCommand = _DescribeTableReplicaAutoScalingCom
|
|
|
4512
4468
|
|
|
4513
4469
|
|
|
4514
4470
|
|
|
4515
|
-
var _DescribeTimeToLiveCommand = class _DescribeTimeToLiveCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4516
|
-
...commonParams
|
|
4517
|
-
}).m(function(Command, cs, config, o) {
|
|
4471
|
+
var _DescribeTimeToLiveCommand = class _DescribeTimeToLiveCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4518
4472
|
return [
|
|
4519
4473
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4520
4474
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4528,9 +4482,7 @@ var DescribeTimeToLiveCommand = _DescribeTimeToLiveCommand;
|
|
|
4528
4482
|
|
|
4529
4483
|
|
|
4530
4484
|
|
|
4531
|
-
var _DisableKinesisStreamingDestinationCommand = class _DisableKinesisStreamingDestinationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4532
|
-
...commonParams
|
|
4533
|
-
}).m(function(Command, cs, config, o) {
|
|
4485
|
+
var _DisableKinesisStreamingDestinationCommand = class _DisableKinesisStreamingDestinationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4534
4486
|
return [
|
|
4535
4487
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4536
4488
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4544,9 +4496,7 @@ var DisableKinesisStreamingDestinationCommand = _DisableKinesisStreamingDestinat
|
|
|
4544
4496
|
|
|
4545
4497
|
|
|
4546
4498
|
|
|
4547
|
-
var _EnableKinesisStreamingDestinationCommand = class _EnableKinesisStreamingDestinationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4548
|
-
...commonParams
|
|
4549
|
-
}).m(function(Command, cs, config, o) {
|
|
4499
|
+
var _EnableKinesisStreamingDestinationCommand = class _EnableKinesisStreamingDestinationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4550
4500
|
return [
|
|
4551
4501
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4552
4502
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4560,9 +4510,7 @@ var EnableKinesisStreamingDestinationCommand = _EnableKinesisStreamingDestinatio
|
|
|
4560
4510
|
|
|
4561
4511
|
|
|
4562
4512
|
|
|
4563
|
-
var _ExecuteStatementCommand = class _ExecuteStatementCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4564
|
-
...commonParams
|
|
4565
|
-
}).m(function(Command, cs, config, o) {
|
|
4513
|
+
var _ExecuteStatementCommand = class _ExecuteStatementCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4566
4514
|
return [
|
|
4567
4515
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4568
4516
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4576,9 +4524,7 @@ var ExecuteStatementCommand = _ExecuteStatementCommand;
|
|
|
4576
4524
|
|
|
4577
4525
|
|
|
4578
4526
|
|
|
4579
|
-
var _ExecuteTransactionCommand = class _ExecuteTransactionCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4580
|
-
...commonParams
|
|
4581
|
-
}).m(function(Command, cs, config, o) {
|
|
4527
|
+
var _ExecuteTransactionCommand = class _ExecuteTransactionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4582
4528
|
return [
|
|
4583
4529
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4584
4530
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4592,9 +4538,7 @@ var ExecuteTransactionCommand = _ExecuteTransactionCommand;
|
|
|
4592
4538
|
|
|
4593
4539
|
|
|
4594
4540
|
|
|
4595
|
-
var _ExportTableToPointInTimeCommand = class _ExportTableToPointInTimeCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4596
|
-
...commonParams
|
|
4597
|
-
}).m(function(Command, cs, config, o) {
|
|
4541
|
+
var _ExportTableToPointInTimeCommand = class _ExportTableToPointInTimeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4598
4542
|
return [
|
|
4599
4543
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4600
4544
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4608,9 +4552,7 @@ var ExportTableToPointInTimeCommand = _ExportTableToPointInTimeCommand;
|
|
|
4608
4552
|
|
|
4609
4553
|
|
|
4610
4554
|
|
|
4611
|
-
var _GetItemCommand = class _GetItemCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4612
|
-
...commonParams
|
|
4613
|
-
}).m(function(Command, cs, config, o) {
|
|
4555
|
+
var _GetItemCommand = class _GetItemCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4614
4556
|
return [
|
|
4615
4557
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4616
4558
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4624,9 +4566,7 @@ var GetItemCommand = _GetItemCommand;
|
|
|
4624
4566
|
|
|
4625
4567
|
|
|
4626
4568
|
|
|
4627
|
-
var _GetResourcePolicyCommand = class _GetResourcePolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4628
|
-
...commonParams
|
|
4629
|
-
}).m(function(Command, cs, config, o) {
|
|
4569
|
+
var _GetResourcePolicyCommand = class _GetResourcePolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4630
4570
|
return [
|
|
4631
4571
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4632
4572
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4640,9 +4580,7 @@ var GetResourcePolicyCommand = _GetResourcePolicyCommand;
|
|
|
4640
4580
|
|
|
4641
4581
|
|
|
4642
4582
|
|
|
4643
|
-
var _ImportTableCommand = class _ImportTableCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4644
|
-
...commonParams
|
|
4645
|
-
}).m(function(Command, cs, config, o) {
|
|
4583
|
+
var _ImportTableCommand = class _ImportTableCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4646
4584
|
return [
|
|
4647
4585
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4648
4586
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4656,9 +4594,7 @@ var ImportTableCommand = _ImportTableCommand;
|
|
|
4656
4594
|
|
|
4657
4595
|
|
|
4658
4596
|
|
|
4659
|
-
var _ListBackupsCommand = class _ListBackupsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4660
|
-
...commonParams
|
|
4661
|
-
}).m(function(Command, cs, config, o) {
|
|
4597
|
+
var _ListBackupsCommand = class _ListBackupsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4662
4598
|
return [
|
|
4663
4599
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4664
4600
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4672,9 +4608,7 @@ var ListBackupsCommand = _ListBackupsCommand;
|
|
|
4672
4608
|
|
|
4673
4609
|
|
|
4674
4610
|
|
|
4675
|
-
var _ListContributorInsightsCommand = class _ListContributorInsightsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4676
|
-
...commonParams
|
|
4677
|
-
}).m(function(Command, cs, config, o) {
|
|
4611
|
+
var _ListContributorInsightsCommand = class _ListContributorInsightsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4678
4612
|
return [
|
|
4679
4613
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4680
4614
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4688,9 +4622,7 @@ var ListContributorInsightsCommand = _ListContributorInsightsCommand;
|
|
|
4688
4622
|
|
|
4689
4623
|
|
|
4690
4624
|
|
|
4691
|
-
var _ListExportsCommand = class _ListExportsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4692
|
-
...commonParams
|
|
4693
|
-
}).m(function(Command, cs, config, o) {
|
|
4625
|
+
var _ListExportsCommand = class _ListExportsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4694
4626
|
return [
|
|
4695
4627
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4696
4628
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4704,9 +4636,7 @@ var ListExportsCommand = _ListExportsCommand;
|
|
|
4704
4636
|
|
|
4705
4637
|
|
|
4706
4638
|
|
|
4707
|
-
var _ListGlobalTablesCommand = class _ListGlobalTablesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4708
|
-
...commonParams
|
|
4709
|
-
}).m(function(Command, cs, config, o) {
|
|
4639
|
+
var _ListGlobalTablesCommand = class _ListGlobalTablesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4710
4640
|
return [
|
|
4711
4641
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4712
4642
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4720,9 +4650,7 @@ var ListGlobalTablesCommand = _ListGlobalTablesCommand;
|
|
|
4720
4650
|
|
|
4721
4651
|
|
|
4722
4652
|
|
|
4723
|
-
var _ListImportsCommand = class _ListImportsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4724
|
-
...commonParams
|
|
4725
|
-
}).m(function(Command, cs, config, o) {
|
|
4653
|
+
var _ListImportsCommand = class _ListImportsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4726
4654
|
return [
|
|
4727
4655
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4728
4656
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4736,9 +4664,7 @@ var ListImportsCommand = _ListImportsCommand;
|
|
|
4736
4664
|
|
|
4737
4665
|
|
|
4738
4666
|
|
|
4739
|
-
var _ListTablesCommand = class _ListTablesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4740
|
-
...commonParams
|
|
4741
|
-
}).m(function(Command, cs, config, o) {
|
|
4667
|
+
var _ListTablesCommand = class _ListTablesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4742
4668
|
return [
|
|
4743
4669
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4744
4670
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4752,9 +4678,7 @@ var ListTablesCommand = _ListTablesCommand;
|
|
|
4752
4678
|
|
|
4753
4679
|
|
|
4754
4680
|
|
|
4755
|
-
var _ListTagsOfResourceCommand = class _ListTagsOfResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4756
|
-
...commonParams
|
|
4757
|
-
}).m(function(Command, cs, config, o) {
|
|
4681
|
+
var _ListTagsOfResourceCommand = class _ListTagsOfResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4758
4682
|
return [
|
|
4759
4683
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4760
4684
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4768,9 +4692,7 @@ var ListTagsOfResourceCommand = _ListTagsOfResourceCommand;
|
|
|
4768
4692
|
|
|
4769
4693
|
|
|
4770
4694
|
|
|
4771
|
-
var _PutItemCommand = class _PutItemCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4772
|
-
...commonParams
|
|
4773
|
-
}).m(function(Command, cs, config, o) {
|
|
4695
|
+
var _PutItemCommand = class _PutItemCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4774
4696
|
return [
|
|
4775
4697
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4776
4698
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4784,9 +4706,7 @@ var PutItemCommand = _PutItemCommand;
|
|
|
4784
4706
|
|
|
4785
4707
|
|
|
4786
4708
|
|
|
4787
|
-
var _PutResourcePolicyCommand = class _PutResourcePolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4788
|
-
...commonParams
|
|
4789
|
-
}).m(function(Command, cs, config, o) {
|
|
4709
|
+
var _PutResourcePolicyCommand = class _PutResourcePolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4790
4710
|
return [
|
|
4791
4711
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4792
4712
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4800,9 +4720,7 @@ var PutResourcePolicyCommand = _PutResourcePolicyCommand;
|
|
|
4800
4720
|
|
|
4801
4721
|
|
|
4802
4722
|
|
|
4803
|
-
var _QueryCommand = class _QueryCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4804
|
-
...commonParams
|
|
4805
|
-
}).m(function(Command, cs, config, o) {
|
|
4723
|
+
var _QueryCommand = class _QueryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4806
4724
|
return [
|
|
4807
4725
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4808
4726
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4816,9 +4734,7 @@ var QueryCommand = _QueryCommand;
|
|
|
4816
4734
|
|
|
4817
4735
|
|
|
4818
4736
|
|
|
4819
|
-
var _RestoreTableFromBackupCommand = class _RestoreTableFromBackupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4820
|
-
...commonParams
|
|
4821
|
-
}).m(function(Command, cs, config, o) {
|
|
4737
|
+
var _RestoreTableFromBackupCommand = class _RestoreTableFromBackupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4822
4738
|
return [
|
|
4823
4739
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4824
4740
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4832,9 +4748,7 @@ var RestoreTableFromBackupCommand = _RestoreTableFromBackupCommand;
|
|
|
4832
4748
|
|
|
4833
4749
|
|
|
4834
4750
|
|
|
4835
|
-
var _RestoreTableToPointInTimeCommand = class _RestoreTableToPointInTimeCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4836
|
-
...commonParams
|
|
4837
|
-
}).m(function(Command, cs, config, o) {
|
|
4751
|
+
var _RestoreTableToPointInTimeCommand = class _RestoreTableToPointInTimeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4838
4752
|
return [
|
|
4839
4753
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4840
4754
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4848,9 +4762,7 @@ var RestoreTableToPointInTimeCommand = _RestoreTableToPointInTimeCommand;
|
|
|
4848
4762
|
|
|
4849
4763
|
|
|
4850
4764
|
|
|
4851
|
-
var _ScanCommand = class _ScanCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4852
|
-
...commonParams
|
|
4853
|
-
}).m(function(Command, cs, config, o) {
|
|
4765
|
+
var _ScanCommand = class _ScanCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4854
4766
|
return [
|
|
4855
4767
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4856
4768
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4864,9 +4776,7 @@ var ScanCommand = _ScanCommand;
|
|
|
4864
4776
|
|
|
4865
4777
|
|
|
4866
4778
|
|
|
4867
|
-
var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4868
|
-
...commonParams
|
|
4869
|
-
}).m(function(Command, cs, config, o) {
|
|
4779
|
+
var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4870
4780
|
return [
|
|
4871
4781
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4872
4782
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4880,9 +4790,7 @@ var TagResourceCommand = _TagResourceCommand;
|
|
|
4880
4790
|
|
|
4881
4791
|
|
|
4882
4792
|
|
|
4883
|
-
var _TransactGetItemsCommand = class _TransactGetItemsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4884
|
-
...commonParams
|
|
4885
|
-
}).m(function(Command, cs, config, o) {
|
|
4793
|
+
var _TransactGetItemsCommand = class _TransactGetItemsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4886
4794
|
return [
|
|
4887
4795
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4888
4796
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4896,9 +4804,7 @@ var TransactGetItemsCommand = _TransactGetItemsCommand;
|
|
|
4896
4804
|
|
|
4897
4805
|
|
|
4898
4806
|
|
|
4899
|
-
var _TransactWriteItemsCommand = class _TransactWriteItemsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4900
|
-
...commonParams
|
|
4901
|
-
}).m(function(Command, cs, config, o) {
|
|
4807
|
+
var _TransactWriteItemsCommand = class _TransactWriteItemsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4902
4808
|
return [
|
|
4903
4809
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4904
4810
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4912,9 +4818,7 @@ var TransactWriteItemsCommand = _TransactWriteItemsCommand;
|
|
|
4912
4818
|
|
|
4913
4819
|
|
|
4914
4820
|
|
|
4915
|
-
var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4916
|
-
...commonParams
|
|
4917
|
-
}).m(function(Command, cs, config, o) {
|
|
4821
|
+
var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4918
4822
|
return [
|
|
4919
4823
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4920
4824
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4928,9 +4832,7 @@ var UntagResourceCommand = _UntagResourceCommand;
|
|
|
4928
4832
|
|
|
4929
4833
|
|
|
4930
4834
|
|
|
4931
|
-
var _UpdateContinuousBackupsCommand = class _UpdateContinuousBackupsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4932
|
-
...commonParams
|
|
4933
|
-
}).m(function(Command, cs, config, o) {
|
|
4835
|
+
var _UpdateContinuousBackupsCommand = class _UpdateContinuousBackupsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4934
4836
|
return [
|
|
4935
4837
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4936
4838
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4944,9 +4846,7 @@ var UpdateContinuousBackupsCommand = _UpdateContinuousBackupsCommand;
|
|
|
4944
4846
|
|
|
4945
4847
|
|
|
4946
4848
|
|
|
4947
|
-
var _UpdateContributorInsightsCommand = class _UpdateContributorInsightsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4948
|
-
...commonParams
|
|
4949
|
-
}).m(function(Command, cs, config, o) {
|
|
4849
|
+
var _UpdateContributorInsightsCommand = class _UpdateContributorInsightsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4950
4850
|
return [
|
|
4951
4851
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4952
4852
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4960,9 +4860,7 @@ var UpdateContributorInsightsCommand = _UpdateContributorInsightsCommand;
|
|
|
4960
4860
|
|
|
4961
4861
|
|
|
4962
4862
|
|
|
4963
|
-
var _UpdateGlobalTableCommand = class _UpdateGlobalTableCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4964
|
-
...commonParams
|
|
4965
|
-
}).m(function(Command, cs, config, o) {
|
|
4863
|
+
var _UpdateGlobalTableCommand = class _UpdateGlobalTableCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4966
4864
|
return [
|
|
4967
4865
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4968
4866
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4976,9 +4874,7 @@ var UpdateGlobalTableCommand = _UpdateGlobalTableCommand;
|
|
|
4976
4874
|
|
|
4977
4875
|
|
|
4978
4876
|
|
|
4979
|
-
var _UpdateGlobalTableSettingsCommand = class _UpdateGlobalTableSettingsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4980
|
-
...commonParams
|
|
4981
|
-
}).m(function(Command, cs, config, o) {
|
|
4877
|
+
var _UpdateGlobalTableSettingsCommand = class _UpdateGlobalTableSettingsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4982
4878
|
return [
|
|
4983
4879
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4984
4880
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4992,9 +4888,7 @@ var UpdateGlobalTableSettingsCommand = _UpdateGlobalTableSettingsCommand;
|
|
|
4992
4888
|
|
|
4993
4889
|
|
|
4994
4890
|
|
|
4995
|
-
var _UpdateItemCommand = class _UpdateItemCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
4996
|
-
...commonParams
|
|
4997
|
-
}).m(function(Command, cs, config, o) {
|
|
4891
|
+
var _UpdateItemCommand = class _UpdateItemCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4998
4892
|
return [
|
|
4999
4893
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5000
4894
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -5008,9 +4902,7 @@ var UpdateItemCommand = _UpdateItemCommand;
|
|
|
5008
4902
|
|
|
5009
4903
|
|
|
5010
4904
|
|
|
5011
|
-
var _UpdateKinesisStreamingDestinationCommand = class _UpdateKinesisStreamingDestinationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
5012
|
-
...commonParams
|
|
5013
|
-
}).m(function(Command, cs, config, o) {
|
|
4905
|
+
var _UpdateKinesisStreamingDestinationCommand = class _UpdateKinesisStreamingDestinationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5014
4906
|
return [
|
|
5015
4907
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5016
4908
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -5024,9 +4916,7 @@ var UpdateKinesisStreamingDestinationCommand = _UpdateKinesisStreamingDestinatio
|
|
|
5024
4916
|
|
|
5025
4917
|
|
|
5026
4918
|
|
|
5027
|
-
var _UpdateTableCommand = class _UpdateTableCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
5028
|
-
...commonParams
|
|
5029
|
-
}).m(function(Command, cs, config, o) {
|
|
4919
|
+
var _UpdateTableCommand = class _UpdateTableCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5030
4920
|
return [
|
|
5031
4921
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5032
4922
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -5040,9 +4930,7 @@ var UpdateTableCommand = _UpdateTableCommand;
|
|
|
5040
4930
|
|
|
5041
4931
|
|
|
5042
4932
|
|
|
5043
|
-
var _UpdateTableReplicaAutoScalingCommand = class _UpdateTableReplicaAutoScalingCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
5044
|
-
...commonParams
|
|
5045
|
-
}).m(function(Command, cs, config, o) {
|
|
4933
|
+
var _UpdateTableReplicaAutoScalingCommand = class _UpdateTableReplicaAutoScalingCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5046
4934
|
return [
|
|
5047
4935
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5048
4936
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -5056,9 +4944,7 @@ var UpdateTableReplicaAutoScalingCommand = _UpdateTableReplicaAutoScalingCommand
|
|
|
5056
4944
|
|
|
5057
4945
|
|
|
5058
4946
|
|
|
5059
|
-
var _UpdateTimeToLiveCommand = class _UpdateTimeToLiveCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
5060
|
-
...commonParams
|
|
5061
|
-
}).m(function(Command, cs, config, o) {
|
|
4947
|
+
var _UpdateTimeToLiveCommand = class _UpdateTimeToLiveCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5062
4948
|
return [
|
|
5063
4949
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5064
4950
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -6,9 +6,7 @@ import { de_BatchExecuteStatementCommand, se_BatchExecuteStatementCommand } from
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class BatchExecuteStatementCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_BatchGetItemCommand, se_BatchGetItemCommand } from "../protocols/Aws
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class BatchGetItemCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|