@aws-sdk/client-timestream-write 3.181.0 → 3.183.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.
Files changed (29) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-es/TimestreamWrite.js +62 -69
  3. package/dist-es/TimestreamWriteClient.js +23 -29
  4. package/dist-es/commands/CreateDatabaseCommand.js +22 -29
  5. package/dist-es/commands/CreateTableCommand.js +22 -29
  6. package/dist-es/commands/DeleteDatabaseCommand.js +23 -30
  7. package/dist-es/commands/DeleteTableCommand.js +23 -30
  8. package/dist-es/commands/DescribeDatabaseCommand.js +22 -29
  9. package/dist-es/commands/DescribeEndpointsCommand.js +21 -28
  10. package/dist-es/commands/DescribeTableCommand.js +22 -29
  11. package/dist-es/commands/ListDatabasesCommand.js +22 -29
  12. package/dist-es/commands/ListTablesCommand.js +22 -29
  13. package/dist-es/commands/ListTagsForResourceCommand.js +22 -29
  14. package/dist-es/commands/TagResourceCommand.js +22 -29
  15. package/dist-es/commands/UntagResourceCommand.js +22 -29
  16. package/dist-es/commands/UpdateDatabaseCommand.js +22 -29
  17. package/dist-es/commands/UpdateTableCommand.js +22 -29
  18. package/dist-es/commands/WriteRecordsCommand.js +22 -29
  19. package/dist-es/endpoints.js +8 -8
  20. package/dist-es/models/TimestreamWriteServiceException.js +5 -10
  21. package/dist-es/models/models_0.js +232 -151
  22. package/dist-es/pagination/ListDatabasesPaginator.js +25 -68
  23. package/dist-es/pagination/ListTablesPaginator.js +25 -68
  24. package/dist-es/protocols/Aws_json1_0.js +1175 -1496
  25. package/dist-es/runtimeConfig.browser.js +27 -12
  26. package/dist-es/runtimeConfig.js +31 -12
  27. package/dist-es/runtimeConfig.native.js +8 -5
  28. package/dist-es/runtimeConfig.shared.js +8 -11
  29. package/package.json +34 -34
@@ -1,41 +1,34 @@
1
- import { __extends } from "tslib";
2
1
  import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery";
3
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
4
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
5
4
  import { UpdateTableRequestFilterSensitiveLog, UpdateTableResponseFilterSensitiveLog, } from "../models/models_0";
6
5
  import { deserializeAws_json1_0UpdateTableCommand, serializeAws_json1_0UpdateTableCommand, } from "../protocols/Aws_json1_0";
7
- var UpdateTableCommand = (function (_super) {
8
- __extends(UpdateTableCommand, _super);
9
- function UpdateTableCommand(input) {
10
- var _this = _super.call(this) || this;
11
- _this.input = input;
12
- return _this;
6
+ export class UpdateTableCommand extends $Command {
7
+ constructor(input) {
8
+ super();
9
+ this.input = input;
13
10
  }
14
- UpdateTableCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
+ resolveMiddleware(clientStack, configuration, options) {
15
12
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
16
- this.middlewareStack.use(getEndpointDiscoveryPlugin(configuration, { clientStack: clientStack, options: options, isDiscoveredEndpointRequired: true }));
17
- var stack = clientStack.concat(this.middlewareStack);
18
- var logger = configuration.logger;
19
- var clientName = "TimestreamWriteClient";
20
- var commandName = "UpdateTableCommand";
21
- var handlerExecutionContext = {
22
- logger: logger,
23
- clientName: clientName,
24
- commandName: commandName,
13
+ this.middlewareStack.use(getEndpointDiscoveryPlugin(configuration, { clientStack, options, isDiscoveredEndpointRequired: true }));
14
+ const stack = clientStack.concat(this.middlewareStack);
15
+ const { logger } = configuration;
16
+ const clientName = "TimestreamWriteClient";
17
+ const commandName = "UpdateTableCommand";
18
+ const handlerExecutionContext = {
19
+ logger,
20
+ clientName,
21
+ commandName,
25
22
  inputFilterSensitiveLog: UpdateTableRequestFilterSensitiveLog,
26
23
  outputFilterSensitiveLog: UpdateTableResponseFilterSensitiveLog,
27
24
  };
28
- var requestHandler = configuration.requestHandler;
29
- return stack.resolve(function (request) {
30
- return requestHandler.handle(request.request, options || {});
31
- }, handlerExecutionContext);
32
- };
33
- UpdateTableCommand.prototype.serialize = function (input, context) {
25
+ const { requestHandler } = configuration;
26
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
27
+ }
28
+ serialize(input, context) {
34
29
  return serializeAws_json1_0UpdateTableCommand(input, context);
35
- };
36
- UpdateTableCommand.prototype.deserialize = function (output, context) {
30
+ }
31
+ deserialize(output, context) {
37
32
  return deserializeAws_json1_0UpdateTableCommand(output, context);
38
- };
39
- return UpdateTableCommand;
40
- }($Command));
41
- export { UpdateTableCommand };
33
+ }
34
+ }
@@ -1,41 +1,34 @@
1
- import { __extends } from "tslib";
2
1
  import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery";
3
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
4
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
5
4
  import { WriteRecordsRequestFilterSensitiveLog, WriteRecordsResponseFilterSensitiveLog, } from "../models/models_0";
6
5
  import { deserializeAws_json1_0WriteRecordsCommand, serializeAws_json1_0WriteRecordsCommand, } from "../protocols/Aws_json1_0";
7
- var WriteRecordsCommand = (function (_super) {
8
- __extends(WriteRecordsCommand, _super);
9
- function WriteRecordsCommand(input) {
10
- var _this = _super.call(this) || this;
11
- _this.input = input;
12
- return _this;
6
+ export class WriteRecordsCommand extends $Command {
7
+ constructor(input) {
8
+ super();
9
+ this.input = input;
13
10
  }
14
- WriteRecordsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
+ resolveMiddleware(clientStack, configuration, options) {
15
12
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
16
- this.middlewareStack.use(getEndpointDiscoveryPlugin(configuration, { clientStack: clientStack, options: options, isDiscoveredEndpointRequired: true }));
17
- var stack = clientStack.concat(this.middlewareStack);
18
- var logger = configuration.logger;
19
- var clientName = "TimestreamWriteClient";
20
- var commandName = "WriteRecordsCommand";
21
- var handlerExecutionContext = {
22
- logger: logger,
23
- clientName: clientName,
24
- commandName: commandName,
13
+ this.middlewareStack.use(getEndpointDiscoveryPlugin(configuration, { clientStack, options, isDiscoveredEndpointRequired: true }));
14
+ const stack = clientStack.concat(this.middlewareStack);
15
+ const { logger } = configuration;
16
+ const clientName = "TimestreamWriteClient";
17
+ const commandName = "WriteRecordsCommand";
18
+ const handlerExecutionContext = {
19
+ logger,
20
+ clientName,
21
+ commandName,
25
22
  inputFilterSensitiveLog: WriteRecordsRequestFilterSensitiveLog,
26
23
  outputFilterSensitiveLog: WriteRecordsResponseFilterSensitiveLog,
27
24
  };
28
- var requestHandler = configuration.requestHandler;
29
- return stack.resolve(function (request) {
30
- return requestHandler.handle(request.request, options || {});
31
- }, handlerExecutionContext);
32
- };
33
- WriteRecordsCommand.prototype.serialize = function (input, context) {
25
+ const { requestHandler } = configuration;
26
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
27
+ }
28
+ serialize(input, context) {
34
29
  return serializeAws_json1_0WriteRecordsCommand(input, context);
35
- };
36
- WriteRecordsCommand.prototype.deserialize = function (output, context) {
30
+ }
31
+ deserialize(output, context) {
37
32
  return deserializeAws_json1_0WriteRecordsCommand(output, context);
38
- };
39
- return WriteRecordsCommand;
40
- }($Command));
41
- export { WriteRecordsCommand };
33
+ }
34
+ }
@@ -1,7 +1,6 @@
1
- import { __assign, __awaiter, __generator } from "tslib";
2
1
  import { getRegionInfo } from "@aws-sdk/config-resolver";
3
- var regionHash = {};
4
- var partitionHash = {
2
+ const regionHash = {};
3
+ const partitionHash = {
5
4
  aws: {
6
5
  regions: [
7
6
  "af-south-1",
@@ -121,8 +120,9 @@ var partitionHash = {
121
120
  ],
122
121
  },
123
122
  };
124
- export var defaultRegionInfoProvider = function (region, options) { return __awaiter(void 0, void 0, void 0, function () {
125
- return __generator(this, function (_a) {
126
- return [2, getRegionInfo(region, __assign(__assign({}, options), { signingService: "timestream", regionHash: regionHash, partitionHash: partitionHash }))];
127
- });
128
- }); };
123
+ export const defaultRegionInfoProvider = async (region, options) => getRegionInfo(region, {
124
+ ...options,
125
+ signingService: "timestream",
126
+ regionHash,
127
+ partitionHash,
128
+ });
@@ -1,12 +1,7 @@
1
- import { __extends } from "tslib";
2
1
  import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
3
- var TimestreamWriteServiceException = (function (_super) {
4
- __extends(TimestreamWriteServiceException, _super);
5
- function TimestreamWriteServiceException(options) {
6
- var _this = _super.call(this, options) || this;
7
- Object.setPrototypeOf(_this, TimestreamWriteServiceException.prototype);
8
- return _this;
2
+ export class TimestreamWriteServiceException extends __ServiceException {
3
+ constructor(options) {
4
+ super(options);
5
+ Object.setPrototypeOf(this, TimestreamWriteServiceException.prototype);
9
6
  }
10
- return TimestreamWriteServiceException;
11
- }(__ServiceException));
12
- export { TimestreamWriteServiceException };
7
+ }
@@ -1,96 +1,95 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { TimestreamWriteServiceException as __BaseException } from "./TimestreamWriteServiceException";
3
- var AccessDeniedException = (function (_super) {
4
- __extends(AccessDeniedException, _super);
5
- function AccessDeniedException(opts) {
6
- var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
7
- _this.name = "AccessDeniedException";
8
- _this.$fault = "client";
9
- Object.setPrototypeOf(_this, AccessDeniedException.prototype);
10
- _this.Message = opts.Message;
11
- return _this;
2
+ export class AccessDeniedException extends __BaseException {
3
+ constructor(opts) {
4
+ super({
5
+ name: "AccessDeniedException",
6
+ $fault: "client",
7
+ ...opts,
8
+ });
9
+ this.name = "AccessDeniedException";
10
+ this.$fault = "client";
11
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
12
+ this.Message = opts.Message;
12
13
  }
13
- return AccessDeniedException;
14
- }(__BaseException));
15
- export { AccessDeniedException };
16
- var ConflictException = (function (_super) {
17
- __extends(ConflictException, _super);
18
- function ConflictException(opts) {
19
- var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
20
- _this.name = "ConflictException";
21
- _this.$fault = "client";
22
- Object.setPrototypeOf(_this, ConflictException.prototype);
23
- _this.Message = opts.Message;
24
- return _this;
14
+ }
15
+ export class ConflictException extends __BaseException {
16
+ constructor(opts) {
17
+ super({
18
+ name: "ConflictException",
19
+ $fault: "client",
20
+ ...opts,
21
+ });
22
+ this.name = "ConflictException";
23
+ this.$fault = "client";
24
+ Object.setPrototypeOf(this, ConflictException.prototype);
25
+ this.Message = opts.Message;
25
26
  }
26
- return ConflictException;
27
- }(__BaseException));
28
- export { ConflictException };
29
- var InternalServerException = (function (_super) {
30
- __extends(InternalServerException, _super);
31
- function InternalServerException(opts) {
32
- var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
33
- _this.name = "InternalServerException";
34
- _this.$fault = "server";
35
- Object.setPrototypeOf(_this, InternalServerException.prototype);
36
- _this.Message = opts.Message;
37
- return _this;
27
+ }
28
+ export class InternalServerException extends __BaseException {
29
+ constructor(opts) {
30
+ super({
31
+ name: "InternalServerException",
32
+ $fault: "server",
33
+ ...opts,
34
+ });
35
+ this.name = "InternalServerException";
36
+ this.$fault = "server";
37
+ Object.setPrototypeOf(this, InternalServerException.prototype);
38
+ this.Message = opts.Message;
38
39
  }
39
- return InternalServerException;
40
- }(__BaseException));
41
- export { InternalServerException };
42
- var InvalidEndpointException = (function (_super) {
43
- __extends(InvalidEndpointException, _super);
44
- function InvalidEndpointException(opts) {
45
- var _this = _super.call(this, __assign({ name: "InvalidEndpointException", $fault: "client" }, opts)) || this;
46
- _this.name = "InvalidEndpointException";
47
- _this.$fault = "client";
48
- Object.setPrototypeOf(_this, InvalidEndpointException.prototype);
49
- _this.Message = opts.Message;
50
- return _this;
40
+ }
41
+ export class InvalidEndpointException extends __BaseException {
42
+ constructor(opts) {
43
+ super({
44
+ name: "InvalidEndpointException",
45
+ $fault: "client",
46
+ ...opts,
47
+ });
48
+ this.name = "InvalidEndpointException";
49
+ this.$fault = "client";
50
+ Object.setPrototypeOf(this, InvalidEndpointException.prototype);
51
+ this.Message = opts.Message;
51
52
  }
52
- return InvalidEndpointException;
53
- }(__BaseException));
54
- export { InvalidEndpointException };
55
- var ServiceQuotaExceededException = (function (_super) {
56
- __extends(ServiceQuotaExceededException, _super);
57
- function ServiceQuotaExceededException(opts) {
58
- var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
59
- _this.name = "ServiceQuotaExceededException";
60
- _this.$fault = "client";
61
- Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
62
- _this.Message = opts.Message;
63
- return _this;
53
+ }
54
+ export class ServiceQuotaExceededException extends __BaseException {
55
+ constructor(opts) {
56
+ super({
57
+ name: "ServiceQuotaExceededException",
58
+ $fault: "client",
59
+ ...opts,
60
+ });
61
+ this.name = "ServiceQuotaExceededException";
62
+ this.$fault = "client";
63
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
64
+ this.Message = opts.Message;
64
65
  }
65
- return ServiceQuotaExceededException;
66
- }(__BaseException));
67
- export { ServiceQuotaExceededException };
68
- var ThrottlingException = (function (_super) {
69
- __extends(ThrottlingException, _super);
70
- function ThrottlingException(opts) {
71
- var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
72
- _this.name = "ThrottlingException";
73
- _this.$fault = "client";
74
- Object.setPrototypeOf(_this, ThrottlingException.prototype);
75
- _this.Message = opts.Message;
76
- return _this;
66
+ }
67
+ export class ThrottlingException extends __BaseException {
68
+ constructor(opts) {
69
+ super({
70
+ name: "ThrottlingException",
71
+ $fault: "client",
72
+ ...opts,
73
+ });
74
+ this.name = "ThrottlingException";
75
+ this.$fault = "client";
76
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
77
+ this.Message = opts.Message;
77
78
  }
78
- return ThrottlingException;
79
- }(__BaseException));
80
- export { ThrottlingException };
81
- var ValidationException = (function (_super) {
82
- __extends(ValidationException, _super);
83
- function ValidationException(opts) {
84
- var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
85
- _this.name = "ValidationException";
86
- _this.$fault = "client";
87
- Object.setPrototypeOf(_this, ValidationException.prototype);
88
- _this.Message = opts.Message;
89
- return _this;
79
+ }
80
+ export class ValidationException extends __BaseException {
81
+ constructor(opts) {
82
+ super({
83
+ name: "ValidationException",
84
+ $fault: "client",
85
+ ...opts,
86
+ });
87
+ this.name = "ValidationException";
88
+ this.$fault = "client";
89
+ Object.setPrototypeOf(this, ValidationException.prototype);
90
+ this.Message = opts.Message;
90
91
  }
91
- return ValidationException;
92
- }(__BaseException));
93
- export { ValidationException };
92
+ }
94
93
  export var S3EncryptionOption;
95
94
  (function (S3EncryptionOption) {
96
95
  S3EncryptionOption["SSE_KMS"] = "SSE_KMS";
@@ -101,19 +100,19 @@ export var TableStatus;
101
100
  TableStatus["ACTIVE"] = "ACTIVE";
102
101
  TableStatus["DELETING"] = "DELETING";
103
102
  })(TableStatus || (TableStatus = {}));
104
- var ResourceNotFoundException = (function (_super) {
105
- __extends(ResourceNotFoundException, _super);
106
- function ResourceNotFoundException(opts) {
107
- var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
108
- _this.name = "ResourceNotFoundException";
109
- _this.$fault = "client";
110
- Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
111
- _this.Message = opts.Message;
112
- return _this;
103
+ export class ResourceNotFoundException extends __BaseException {
104
+ constructor(opts) {
105
+ super({
106
+ name: "ResourceNotFoundException",
107
+ $fault: "client",
108
+ ...opts,
109
+ });
110
+ this.name = "ResourceNotFoundException";
111
+ this.$fault = "client";
112
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
113
+ this.Message = opts.Message;
113
114
  }
114
- return ResourceNotFoundException;
115
- }(__BaseException));
116
- export { ResourceNotFoundException };
115
+ }
117
116
  export var DimensionValueType;
118
117
  (function (DimensionValueType) {
119
118
  DimensionValueType["VARCHAR"] = "VARCHAR";
@@ -134,58 +133,140 @@ export var TimeUnit;
134
133
  TimeUnit["NANOSECONDS"] = "NANOSECONDS";
135
134
  TimeUnit["SECONDS"] = "SECONDS";
136
135
  })(TimeUnit || (TimeUnit = {}));
137
- var RejectedRecordsException = (function (_super) {
138
- __extends(RejectedRecordsException, _super);
139
- function RejectedRecordsException(opts) {
140
- var _this = _super.call(this, __assign({ name: "RejectedRecordsException", $fault: "client" }, opts)) || this;
141
- _this.name = "RejectedRecordsException";
142
- _this.$fault = "client";
143
- Object.setPrototypeOf(_this, RejectedRecordsException.prototype);
144
- _this.Message = opts.Message;
145
- _this.RejectedRecords = opts.RejectedRecords;
146
- return _this;
136
+ export class RejectedRecordsException extends __BaseException {
137
+ constructor(opts) {
138
+ super({
139
+ name: "RejectedRecordsException",
140
+ $fault: "client",
141
+ ...opts,
142
+ });
143
+ this.name = "RejectedRecordsException";
144
+ this.$fault = "client";
145
+ Object.setPrototypeOf(this, RejectedRecordsException.prototype);
146
+ this.Message = opts.Message;
147
+ this.RejectedRecords = opts.RejectedRecords;
147
148
  }
148
- return RejectedRecordsException;
149
- }(__BaseException));
150
- export { RejectedRecordsException };
151
- export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
152
- export var CreateDatabaseRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
153
- export var DatabaseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
154
- export var CreateDatabaseResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
155
- export var S3ConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
156
- export var MagneticStoreRejectedDataLocationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
157
- export var MagneticStoreWritePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
158
- export var RetentionPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
159
- export var CreateTableRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
160
- export var TableFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
161
- export var CreateTableResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
162
- export var DeleteDatabaseRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
163
- export var DeleteTableRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
164
- export var DescribeDatabaseRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
165
- export var DescribeDatabaseResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
166
- export var DescribeEndpointsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
167
- export var EndpointFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
168
- export var DescribeEndpointsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
169
- export var DescribeTableRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
170
- export var DescribeTableResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
171
- export var DimensionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
172
- export var ListDatabasesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
173
- export var ListDatabasesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
174
- export var ListTablesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
175
- export var ListTablesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
176
- export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
177
- export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
178
- export var MeasureValueFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
179
- export var _RecordFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
180
- export var RecordsIngestedFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
181
- export var RejectedRecordFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
182
- export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
183
- export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
184
- export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
185
- export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
186
- export var UpdateDatabaseRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
187
- export var UpdateDatabaseResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
188
- export var UpdateTableRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
189
- export var UpdateTableResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
190
- export var WriteRecordsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
191
- export var WriteRecordsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
149
+ }
150
+ export const TagFilterSensitiveLog = (obj) => ({
151
+ ...obj,
152
+ });
153
+ export const CreateDatabaseRequestFilterSensitiveLog = (obj) => ({
154
+ ...obj,
155
+ });
156
+ export const DatabaseFilterSensitiveLog = (obj) => ({
157
+ ...obj,
158
+ });
159
+ export const CreateDatabaseResponseFilterSensitiveLog = (obj) => ({
160
+ ...obj,
161
+ });
162
+ export const S3ConfigurationFilterSensitiveLog = (obj) => ({
163
+ ...obj,
164
+ });
165
+ export const MagneticStoreRejectedDataLocationFilterSensitiveLog = (obj) => ({
166
+ ...obj,
167
+ });
168
+ export const MagneticStoreWritePropertiesFilterSensitiveLog = (obj) => ({
169
+ ...obj,
170
+ });
171
+ export const RetentionPropertiesFilterSensitiveLog = (obj) => ({
172
+ ...obj,
173
+ });
174
+ export const CreateTableRequestFilterSensitiveLog = (obj) => ({
175
+ ...obj,
176
+ });
177
+ export const TableFilterSensitiveLog = (obj) => ({
178
+ ...obj,
179
+ });
180
+ export const CreateTableResponseFilterSensitiveLog = (obj) => ({
181
+ ...obj,
182
+ });
183
+ export const DeleteDatabaseRequestFilterSensitiveLog = (obj) => ({
184
+ ...obj,
185
+ });
186
+ export const DeleteTableRequestFilterSensitiveLog = (obj) => ({
187
+ ...obj,
188
+ });
189
+ export const DescribeDatabaseRequestFilterSensitiveLog = (obj) => ({
190
+ ...obj,
191
+ });
192
+ export const DescribeDatabaseResponseFilterSensitiveLog = (obj) => ({
193
+ ...obj,
194
+ });
195
+ export const DescribeEndpointsRequestFilterSensitiveLog = (obj) => ({
196
+ ...obj,
197
+ });
198
+ export const EndpointFilterSensitiveLog = (obj) => ({
199
+ ...obj,
200
+ });
201
+ export const DescribeEndpointsResponseFilterSensitiveLog = (obj) => ({
202
+ ...obj,
203
+ });
204
+ export const DescribeTableRequestFilterSensitiveLog = (obj) => ({
205
+ ...obj,
206
+ });
207
+ export const DescribeTableResponseFilterSensitiveLog = (obj) => ({
208
+ ...obj,
209
+ });
210
+ export const DimensionFilterSensitiveLog = (obj) => ({
211
+ ...obj,
212
+ });
213
+ export const ListDatabasesRequestFilterSensitiveLog = (obj) => ({
214
+ ...obj,
215
+ });
216
+ export const ListDatabasesResponseFilterSensitiveLog = (obj) => ({
217
+ ...obj,
218
+ });
219
+ export const ListTablesRequestFilterSensitiveLog = (obj) => ({
220
+ ...obj,
221
+ });
222
+ export const ListTablesResponseFilterSensitiveLog = (obj) => ({
223
+ ...obj,
224
+ });
225
+ export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
226
+ ...obj,
227
+ });
228
+ export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
229
+ ...obj,
230
+ });
231
+ export const MeasureValueFilterSensitiveLog = (obj) => ({
232
+ ...obj,
233
+ });
234
+ export const _RecordFilterSensitiveLog = (obj) => ({
235
+ ...obj,
236
+ });
237
+ export const RecordsIngestedFilterSensitiveLog = (obj) => ({
238
+ ...obj,
239
+ });
240
+ export const RejectedRecordFilterSensitiveLog = (obj) => ({
241
+ ...obj,
242
+ });
243
+ export const TagResourceRequestFilterSensitiveLog = (obj) => ({
244
+ ...obj,
245
+ });
246
+ export const TagResourceResponseFilterSensitiveLog = (obj) => ({
247
+ ...obj,
248
+ });
249
+ export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
250
+ ...obj,
251
+ });
252
+ export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
253
+ ...obj,
254
+ });
255
+ export const UpdateDatabaseRequestFilterSensitiveLog = (obj) => ({
256
+ ...obj,
257
+ });
258
+ export const UpdateDatabaseResponseFilterSensitiveLog = (obj) => ({
259
+ ...obj,
260
+ });
261
+ export const UpdateTableRequestFilterSensitiveLog = (obj) => ({
262
+ ...obj,
263
+ });
264
+ export const UpdateTableResponseFilterSensitiveLog = (obj) => ({
265
+ ...obj,
266
+ });
267
+ export const WriteRecordsRequestFilterSensitiveLog = (obj) => ({
268
+ ...obj,
269
+ });
270
+ export const WriteRecordsResponseFilterSensitiveLog = (obj) => ({
271
+ ...obj,
272
+ });