@aws-sdk/client-athena 3.52.0 → 3.54.1
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/CHANGELOG.md +30 -0
- package/dist-cjs/Athena.js +15 -0
- package/dist-cjs/commands/UpdateNamedQueryCommand.js +36 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/AthenaServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +99 -3
- package/dist-cjs/protocols/Aws_json1_1.js +349 -856
- package/dist-es/Athena.js +15 -0
- package/dist-es/commands/UpdateNamedQueryCommand.js +39 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/AthenaServiceException.js +12 -0
- package/dist-es/models/models_0.js +86 -1
- package/dist-es/protocols/Aws_json1_1.js +710 -986
- package/dist-types/Athena.d.ts +7 -0
- package/dist-types/AthenaClient.d.ts +5 -4
- package/dist-types/commands/UpdateNamedQueryCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/AthenaServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +127 -23
- package/dist-types/protocols/Aws_json1_1.d.ts +3 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/Athena.d.ts +5 -0
- package/dist-types/ts3.4/AthenaClient.d.ts +5 -4
- package/dist-types/ts3.4/commands/UpdateNamedQueryCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/AthenaServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +65 -16
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +3 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +27 -27
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,36 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.54.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.54.0...v3.54.1) (2022-03-15)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-athena
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.54.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.53.1...v3.54.0) (2022-03-11)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **clients:** update clients as of 2022/03/10 ([#3411](https://github.com/aws/aws-sdk-js-v3/issues/3411)) ([8fa517a](https://github.com/aws/aws-sdk-js-v3/commit/8fa517a2c56d2f98a2e4a9c4ea6fd99b6ce61a71))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.53.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.52.0...v3.53.0) (2022-02-24)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Features
|
|
29
|
+
|
|
30
|
+
* **clients:** generate service exceptions as classes ([#3267](https://github.com/aws/aws-sdk-js-v3/issues/3267)) ([ca64fee](https://github.com/aws/aws-sdk-js-v3/commit/ca64feed3351c394c07dc26b782a5760a396a074))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
6
36
|
# [3.52.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.51.0...v3.52.0) (2022-02-18)
|
|
7
37
|
|
|
8
38
|
|
package/dist-cjs/Athena.js
CHANGED
|
@@ -34,6 +34,7 @@ const StopQueryExecutionCommand_1 = require("./commands/StopQueryExecutionComman
|
|
|
34
34
|
const TagResourceCommand_1 = require("./commands/TagResourceCommand");
|
|
35
35
|
const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
|
|
36
36
|
const UpdateDataCatalogCommand_1 = require("./commands/UpdateDataCatalogCommand");
|
|
37
|
+
const UpdateNamedQueryCommand_1 = require("./commands/UpdateNamedQueryCommand");
|
|
37
38
|
const UpdatePreparedStatementCommand_1 = require("./commands/UpdatePreparedStatementCommand");
|
|
38
39
|
const UpdateWorkGroupCommand_1 = require("./commands/UpdateWorkGroupCommand");
|
|
39
40
|
class Athena extends AthenaClient_1.AthenaClient {
|
|
@@ -485,6 +486,20 @@ class Athena extends AthenaClient_1.AthenaClient {
|
|
|
485
486
|
return this.send(command, optionsOrCb);
|
|
486
487
|
}
|
|
487
488
|
}
|
|
489
|
+
updateNamedQuery(args, optionsOrCb, cb) {
|
|
490
|
+
const command = new UpdateNamedQueryCommand_1.UpdateNamedQueryCommand(args);
|
|
491
|
+
if (typeof optionsOrCb === "function") {
|
|
492
|
+
this.send(command, optionsOrCb);
|
|
493
|
+
}
|
|
494
|
+
else if (typeof cb === "function") {
|
|
495
|
+
if (typeof optionsOrCb !== "object")
|
|
496
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
497
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
498
|
+
}
|
|
499
|
+
else {
|
|
500
|
+
return this.send(command, optionsOrCb);
|
|
501
|
+
}
|
|
502
|
+
}
|
|
488
503
|
updatePreparedStatement(args, optionsOrCb, cb) {
|
|
489
504
|
const command = new UpdatePreparedStatementCommand_1.UpdatePreparedStatementCommand(args);
|
|
490
505
|
if (typeof optionsOrCb === "function") {
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateNamedQueryCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
8
|
+
class UpdateNamedQueryCommand extends smithy_client_1.Command {
|
|
9
|
+
constructor(input) {
|
|
10
|
+
super();
|
|
11
|
+
this.input = input;
|
|
12
|
+
}
|
|
13
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(middleware_serde_1.getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
const { logger } = configuration;
|
|
17
|
+
const clientName = "AthenaClient";
|
|
18
|
+
const commandName = "UpdateNamedQueryCommand";
|
|
19
|
+
const handlerExecutionContext = {
|
|
20
|
+
logger,
|
|
21
|
+
clientName,
|
|
22
|
+
commandName,
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.UpdateNamedQueryInput.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.UpdateNamedQueryOutput.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
const { requestHandler } = configuration;
|
|
27
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
|
+
}
|
|
29
|
+
serialize(input, context) {
|
|
30
|
+
return Aws_json1_1_1.serializeAws_json1_1UpdateNamedQueryCommand(input, context);
|
|
31
|
+
}
|
|
32
|
+
deserialize(output, context) {
|
|
33
|
+
return Aws_json1_1_1.deserializeAws_json1_1UpdateNamedQueryCommand(output, context);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.UpdateNamedQueryCommand = UpdateNamedQueryCommand;
|
|
@@ -33,5 +33,6 @@ tslib_1.__exportStar(require("./StopQueryExecutionCommand"), exports);
|
|
|
33
33
|
tslib_1.__exportStar(require("./TagResourceCommand"), exports);
|
|
34
34
|
tslib_1.__exportStar(require("./UntagResourceCommand"), exports);
|
|
35
35
|
tslib_1.__exportStar(require("./UpdateDataCatalogCommand"), exports);
|
|
36
|
+
tslib_1.__exportStar(require("./UpdateNamedQueryCommand"), exports);
|
|
36
37
|
tslib_1.__exportStar(require("./UpdatePreparedStatementCommand"), exports);
|
|
37
38
|
tslib_1.__exportStar(require("./UpdateWorkGroupCommand"), exports);
|
package/dist-cjs/index.js
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AthenaServiceException = void 0;
|
|
3
4
|
const tslib_1 = require("tslib");
|
|
4
5
|
tslib_1.__exportStar(require("./Athena"), exports);
|
|
5
6
|
tslib_1.__exportStar(require("./AthenaClient"), exports);
|
|
6
7
|
tslib_1.__exportStar(require("./commands"), exports);
|
|
7
8
|
tslib_1.__exportStar(require("./models"), exports);
|
|
8
9
|
tslib_1.__exportStar(require("./pagination"), exports);
|
|
10
|
+
var AthenaServiceException_1 = require("./models/AthenaServiceException");
|
|
11
|
+
Object.defineProperty(exports, "AthenaServiceException", { enumerable: true, get: function () { return AthenaServiceException_1.AthenaServiceException; } });
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AthenaServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
5
|
+
class AthenaServiceException extends smithy_client_1.ServiceException {
|
|
6
|
+
constructor(options) {
|
|
7
|
+
super(options);
|
|
8
|
+
Object.setPrototypeOf(this, AthenaServiceException.prototype);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.AthenaServiceException = AthenaServiceException;
|
|
@@ -1,8 +1,19 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.UpdateWorkGroupOutput = exports.UpdateWorkGroupInput = exports.WorkGroupConfigurationUpdates = exports.ResultConfigurationUpdates = void 0;
|
|
3
|
+
exports.GetNamedQueryInput = exports.GetDataCatalogOutput = exports.DataCatalog = exports.GetDataCatalogInput = exports.MetadataException = exports.GetDatabaseOutput = exports.Database = exports.GetDatabaseInput = exports.DeleteWorkGroupOutput = exports.DeleteWorkGroupInput = exports.ResourceNotFoundException = exports.DeletePreparedStatementOutput = exports.DeletePreparedStatementInput = exports.DeleteNamedQueryOutput = exports.DeleteNamedQueryInput = exports.DeleteDataCatalogOutput = exports.DeleteDataCatalogInput = exports.CreateWorkGroupOutput = exports.CreateWorkGroupInput = exports.WorkGroupConfiguration = exports.CreatePreparedStatementOutput = exports.CreatePreparedStatementInput = exports.CreateNamedQueryOutput = exports.CreateNamedQueryInput = exports.CreateDataCatalogOutput = exports.CreateDataCatalogInput = exports.DataCatalogType = exports.Tag = exports.BatchGetQueryExecutionOutput = exports.UnprocessedQueryExecutionId = exports.QueryExecution = exports.QueryExecutionStatus = exports.QueryExecutionState = exports.AthenaError = exports.QueryExecutionStatistics = exports.StatementType = exports.ResultConfiguration = exports.EncryptionConfiguration = exports.EncryptionOption = exports.QueryExecutionContext = exports.EngineVersion = exports.BatchGetQueryExecutionInput = exports.InvalidRequestException = exports.InternalServerException = exports.BatchGetNamedQueryOutput = exports.UnprocessedNamedQueryId = exports.NamedQuery = exports.BatchGetNamedQueryInput = exports.AclConfiguration = exports.S3AclOption = void 0;
|
|
4
|
+
exports.TagResourceInput = exports.StopQueryExecutionOutput = exports.StopQueryExecutionInput = exports.TooManyRequestsException = exports.ThrottleReason = exports.StartQueryExecutionOutput = exports.StartQueryExecutionInput = exports.ListWorkGroupsOutput = exports.WorkGroupSummary = exports.ListWorkGroupsInput = exports.ListTagsForResourceOutput = exports.ListTagsForResourceInput = exports.ListTableMetadataOutput = exports.ListTableMetadataInput = exports.ListQueryExecutionsOutput = exports.ListQueryExecutionsInput = exports.ListPreparedStatementsOutput = exports.PreparedStatementSummary = exports.ListPreparedStatementsInput = exports.ListNamedQueriesOutput = exports.ListNamedQueriesInput = exports.ListEngineVersionsOutput = exports.ListEngineVersionsInput = exports.ListDataCatalogsOutput = exports.DataCatalogSummary = exports.ListDataCatalogsInput = exports.ListDatabasesOutput = exports.ListDatabasesInput = exports.GetWorkGroupOutput = exports.WorkGroup = exports.WorkGroupState = exports.GetWorkGroupInput = exports.GetTableMetadataOutput = exports.TableMetadata = exports.Column = exports.GetTableMetadataInput = exports.GetQueryResultsOutput = exports.ResultSet = exports.Row = exports.Datum = exports.ResultSetMetadata = exports.ColumnInfo = exports.ColumnNullable = exports.GetQueryResultsInput = exports.GetQueryExecutionOutput = exports.GetQueryExecutionInput = exports.GetPreparedStatementOutput = exports.PreparedStatement = exports.GetPreparedStatementInput = exports.GetNamedQueryOutput = void 0;
|
|
5
|
+
exports.UpdateWorkGroupOutput = exports.UpdateWorkGroupInput = exports.WorkGroupConfigurationUpdates = exports.ResultConfigurationUpdates = exports.UpdatePreparedStatementOutput = exports.UpdatePreparedStatementInput = exports.UpdateNamedQueryOutput = exports.UpdateNamedQueryInput = exports.UpdateDataCatalogOutput = exports.UpdateDataCatalogInput = exports.UntagResourceOutput = exports.UntagResourceInput = exports.TagResourceOutput = void 0;
|
|
6
|
+
const AthenaServiceException_1 = require("./AthenaServiceException");
|
|
7
|
+
var S3AclOption;
|
|
8
|
+
(function (S3AclOption) {
|
|
9
|
+
S3AclOption["BUCKET_OWNER_FULL_CONTROL"] = "BUCKET_OWNER_FULL_CONTROL";
|
|
10
|
+
})(S3AclOption = exports.S3AclOption || (exports.S3AclOption = {}));
|
|
11
|
+
var AclConfiguration;
|
|
12
|
+
(function (AclConfiguration) {
|
|
13
|
+
AclConfiguration.filterSensitiveLog = (obj) => ({
|
|
14
|
+
...obj,
|
|
15
|
+
});
|
|
16
|
+
})(AclConfiguration = exports.AclConfiguration || (exports.AclConfiguration = {}));
|
|
6
17
|
var BatchGetNamedQueryInput;
|
|
7
18
|
(function (BatchGetNamedQueryInput) {
|
|
8
19
|
BatchGetNamedQueryInput.filterSensitiveLog = (obj) => ({
|
|
@@ -27,6 +38,35 @@ var BatchGetNamedQueryOutput;
|
|
|
27
38
|
...obj,
|
|
28
39
|
});
|
|
29
40
|
})(BatchGetNamedQueryOutput = exports.BatchGetNamedQueryOutput || (exports.BatchGetNamedQueryOutput = {}));
|
|
41
|
+
class InternalServerException extends AthenaServiceException_1.AthenaServiceException {
|
|
42
|
+
constructor(opts) {
|
|
43
|
+
super({
|
|
44
|
+
name: "InternalServerException",
|
|
45
|
+
$fault: "server",
|
|
46
|
+
...opts,
|
|
47
|
+
});
|
|
48
|
+
this.name = "InternalServerException";
|
|
49
|
+
this.$fault = "server";
|
|
50
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
51
|
+
this.Message = opts.Message;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
exports.InternalServerException = InternalServerException;
|
|
55
|
+
class InvalidRequestException extends AthenaServiceException_1.AthenaServiceException {
|
|
56
|
+
constructor(opts) {
|
|
57
|
+
super({
|
|
58
|
+
name: "InvalidRequestException",
|
|
59
|
+
$fault: "client",
|
|
60
|
+
...opts,
|
|
61
|
+
});
|
|
62
|
+
this.name = "InvalidRequestException";
|
|
63
|
+
this.$fault = "client";
|
|
64
|
+
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
65
|
+
this.AthenaErrorCode = opts.AthenaErrorCode;
|
|
66
|
+
this.Message = opts.Message;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
exports.InvalidRequestException = InvalidRequestException;
|
|
30
70
|
var BatchGetQueryExecutionInput;
|
|
31
71
|
(function (BatchGetQueryExecutionInput) {
|
|
32
72
|
BatchGetQueryExecutionInput.filterSensitiveLog = (obj) => ({
|
|
@@ -215,6 +255,21 @@ var DeletePreparedStatementOutput;
|
|
|
215
255
|
...obj,
|
|
216
256
|
});
|
|
217
257
|
})(DeletePreparedStatementOutput = exports.DeletePreparedStatementOutput || (exports.DeletePreparedStatementOutput = {}));
|
|
258
|
+
class ResourceNotFoundException extends AthenaServiceException_1.AthenaServiceException {
|
|
259
|
+
constructor(opts) {
|
|
260
|
+
super({
|
|
261
|
+
name: "ResourceNotFoundException",
|
|
262
|
+
$fault: "client",
|
|
263
|
+
...opts,
|
|
264
|
+
});
|
|
265
|
+
this.name = "ResourceNotFoundException";
|
|
266
|
+
this.$fault = "client";
|
|
267
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
268
|
+
this.Message = opts.Message;
|
|
269
|
+
this.ResourceName = opts.ResourceName;
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
218
273
|
var DeleteWorkGroupInput;
|
|
219
274
|
(function (DeleteWorkGroupInput) {
|
|
220
275
|
DeleteWorkGroupInput.filterSensitiveLog = (obj) => ({
|
|
@@ -245,6 +300,20 @@ var GetDatabaseOutput;
|
|
|
245
300
|
...obj,
|
|
246
301
|
});
|
|
247
302
|
})(GetDatabaseOutput = exports.GetDatabaseOutput || (exports.GetDatabaseOutput = {}));
|
|
303
|
+
class MetadataException extends AthenaServiceException_1.AthenaServiceException {
|
|
304
|
+
constructor(opts) {
|
|
305
|
+
super({
|
|
306
|
+
name: "MetadataException",
|
|
307
|
+
$fault: "client",
|
|
308
|
+
...opts,
|
|
309
|
+
});
|
|
310
|
+
this.name = "MetadataException";
|
|
311
|
+
this.$fault = "client";
|
|
312
|
+
Object.setPrototypeOf(this, MetadataException.prototype);
|
|
313
|
+
this.Message = opts.Message;
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
exports.MetadataException = MetadataException;
|
|
248
317
|
var GetDataCatalogInput;
|
|
249
318
|
(function (GetDataCatalogInput) {
|
|
250
319
|
GetDataCatalogInput.filterSensitiveLog = (obj) => ({
|
|
@@ -542,6 +611,21 @@ var ThrottleReason;
|
|
|
542
611
|
(function (ThrottleReason) {
|
|
543
612
|
ThrottleReason["CONCURRENT_QUERY_LIMIT_EXCEEDED"] = "CONCURRENT_QUERY_LIMIT_EXCEEDED";
|
|
544
613
|
})(ThrottleReason = exports.ThrottleReason || (exports.ThrottleReason = {}));
|
|
614
|
+
class TooManyRequestsException extends AthenaServiceException_1.AthenaServiceException {
|
|
615
|
+
constructor(opts) {
|
|
616
|
+
super({
|
|
617
|
+
name: "TooManyRequestsException",
|
|
618
|
+
$fault: "client",
|
|
619
|
+
...opts,
|
|
620
|
+
});
|
|
621
|
+
this.name = "TooManyRequestsException";
|
|
622
|
+
this.$fault = "client";
|
|
623
|
+
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
624
|
+
this.Message = opts.Message;
|
|
625
|
+
this.Reason = opts.Reason;
|
|
626
|
+
}
|
|
627
|
+
}
|
|
628
|
+
exports.TooManyRequestsException = TooManyRequestsException;
|
|
545
629
|
var StopQueryExecutionInput;
|
|
546
630
|
(function (StopQueryExecutionInput) {
|
|
547
631
|
StopQueryExecutionInput.filterSensitiveLog = (obj) => ({
|
|
@@ -590,6 +674,18 @@ var UpdateDataCatalogOutput;
|
|
|
590
674
|
...obj,
|
|
591
675
|
});
|
|
592
676
|
})(UpdateDataCatalogOutput = exports.UpdateDataCatalogOutput || (exports.UpdateDataCatalogOutput = {}));
|
|
677
|
+
var UpdateNamedQueryInput;
|
|
678
|
+
(function (UpdateNamedQueryInput) {
|
|
679
|
+
UpdateNamedQueryInput.filterSensitiveLog = (obj) => ({
|
|
680
|
+
...obj,
|
|
681
|
+
});
|
|
682
|
+
})(UpdateNamedQueryInput = exports.UpdateNamedQueryInput || (exports.UpdateNamedQueryInput = {}));
|
|
683
|
+
var UpdateNamedQueryOutput;
|
|
684
|
+
(function (UpdateNamedQueryOutput) {
|
|
685
|
+
UpdateNamedQueryOutput.filterSensitiveLog = (obj) => ({
|
|
686
|
+
...obj,
|
|
687
|
+
});
|
|
688
|
+
})(UpdateNamedQueryOutput = exports.UpdateNamedQueryOutput || (exports.UpdateNamedQueryOutput = {}));
|
|
593
689
|
var UpdatePreparedStatementInput;
|
|
594
690
|
(function (UpdatePreparedStatementInput) {
|
|
595
691
|
UpdatePreparedStatementInput.filterSensitiveLog = (obj) => ({
|