@aws-sdk/client-cognito-sync 3.180.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 (30) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist-cjs/protocols/Aws_restJson1.js +23 -17
  3. package/dist-es/CognitoSync.js +70 -77
  4. package/dist-es/CognitoSyncClient.js +22 -28
  5. package/dist-es/commands/BulkPublishCommand.js +21 -28
  6. package/dist-es/commands/DeleteDatasetCommand.js +21 -28
  7. package/dist-es/commands/DescribeDatasetCommand.js +21 -28
  8. package/dist-es/commands/DescribeIdentityPoolUsageCommand.js +21 -28
  9. package/dist-es/commands/DescribeIdentityUsageCommand.js +21 -28
  10. package/dist-es/commands/GetBulkPublishDetailsCommand.js +21 -28
  11. package/dist-es/commands/GetCognitoEventsCommand.js +21 -28
  12. package/dist-es/commands/GetIdentityPoolConfigurationCommand.js +21 -28
  13. package/dist-es/commands/ListDatasetsCommand.js +21 -28
  14. package/dist-es/commands/ListIdentityPoolUsageCommand.js +21 -28
  15. package/dist-es/commands/ListRecordsCommand.js +21 -28
  16. package/dist-es/commands/RegisterDeviceCommand.js +21 -28
  17. package/dist-es/commands/SetCognitoEventsCommand.js +22 -29
  18. package/dist-es/commands/SetIdentityPoolConfigurationCommand.js +21 -28
  19. package/dist-es/commands/SubscribeToDatasetCommand.js +21 -28
  20. package/dist-es/commands/UnsubscribeFromDatasetCommand.js +21 -28
  21. package/dist-es/commands/UpdateRecordsCommand.js +21 -28
  22. package/dist-es/endpoints.js +8 -8
  23. package/dist-es/models/CognitoSyncServiceException.js +5 -10
  24. package/dist-es/models/models_0.js +263 -184
  25. package/dist-es/protocols/Aws_restJson1.js +1389 -1929
  26. package/dist-es/runtimeConfig.browser.js +26 -12
  27. package/dist-es/runtimeConfig.js +30 -12
  28. package/dist-es/runtimeConfig.native.js +8 -5
  29. package/dist-es/runtimeConfig.shared.js +8 -11
  30. package/package.json +33 -33
@@ -1,101 +1,100 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { CognitoSyncServiceException as __BaseException } from "./CognitoSyncServiceException";
3
- var AlreadyStreamedException = (function (_super) {
4
- __extends(AlreadyStreamedException, _super);
5
- function AlreadyStreamedException(opts) {
6
- var _this = _super.call(this, __assign({ name: "AlreadyStreamedException", $fault: "client" }, opts)) || this;
7
- _this.name = "AlreadyStreamedException";
8
- _this.$fault = "client";
9
- Object.setPrototypeOf(_this, AlreadyStreamedException.prototype);
10
- return _this;
2
+ export class AlreadyStreamedException extends __BaseException {
3
+ constructor(opts) {
4
+ super({
5
+ name: "AlreadyStreamedException",
6
+ $fault: "client",
7
+ ...opts,
8
+ });
9
+ this.name = "AlreadyStreamedException";
10
+ this.$fault = "client";
11
+ Object.setPrototypeOf(this, AlreadyStreamedException.prototype);
11
12
  }
12
- return AlreadyStreamedException;
13
- }(__BaseException));
14
- export { AlreadyStreamedException };
15
- var DuplicateRequestException = (function (_super) {
16
- __extends(DuplicateRequestException, _super);
17
- function DuplicateRequestException(opts) {
18
- var _this = _super.call(this, __assign({ name: "DuplicateRequestException", $fault: "client" }, opts)) || this;
19
- _this.name = "DuplicateRequestException";
20
- _this.$fault = "client";
21
- Object.setPrototypeOf(_this, DuplicateRequestException.prototype);
22
- return _this;
13
+ }
14
+ export class DuplicateRequestException extends __BaseException {
15
+ constructor(opts) {
16
+ super({
17
+ name: "DuplicateRequestException",
18
+ $fault: "client",
19
+ ...opts,
20
+ });
21
+ this.name = "DuplicateRequestException";
22
+ this.$fault = "client";
23
+ Object.setPrototypeOf(this, DuplicateRequestException.prototype);
23
24
  }
24
- return DuplicateRequestException;
25
- }(__BaseException));
26
- export { DuplicateRequestException };
27
- var InternalErrorException = (function (_super) {
28
- __extends(InternalErrorException, _super);
29
- function InternalErrorException(opts) {
30
- var _this = _super.call(this, __assign({ name: "InternalErrorException", $fault: "server" }, opts)) || this;
31
- _this.name = "InternalErrorException";
32
- _this.$fault = "server";
33
- Object.setPrototypeOf(_this, InternalErrorException.prototype);
34
- return _this;
25
+ }
26
+ export class InternalErrorException extends __BaseException {
27
+ constructor(opts) {
28
+ super({
29
+ name: "InternalErrorException",
30
+ $fault: "server",
31
+ ...opts,
32
+ });
33
+ this.name = "InternalErrorException";
34
+ this.$fault = "server";
35
+ Object.setPrototypeOf(this, InternalErrorException.prototype);
35
36
  }
36
- return InternalErrorException;
37
- }(__BaseException));
38
- export { InternalErrorException };
39
- var InvalidParameterException = (function (_super) {
40
- __extends(InvalidParameterException, _super);
41
- function InvalidParameterException(opts) {
42
- var _this = _super.call(this, __assign({ name: "InvalidParameterException", $fault: "client" }, opts)) || this;
43
- _this.name = "InvalidParameterException";
44
- _this.$fault = "client";
45
- Object.setPrototypeOf(_this, InvalidParameterException.prototype);
46
- return _this;
37
+ }
38
+ export class InvalidParameterException extends __BaseException {
39
+ constructor(opts) {
40
+ super({
41
+ name: "InvalidParameterException",
42
+ $fault: "client",
43
+ ...opts,
44
+ });
45
+ this.name = "InvalidParameterException";
46
+ this.$fault = "client";
47
+ Object.setPrototypeOf(this, InvalidParameterException.prototype);
47
48
  }
48
- return InvalidParameterException;
49
- }(__BaseException));
50
- export { InvalidParameterException };
51
- var NotAuthorizedException = (function (_super) {
52
- __extends(NotAuthorizedException, _super);
53
- function NotAuthorizedException(opts) {
54
- var _this = _super.call(this, __assign({ name: "NotAuthorizedException", $fault: "client" }, opts)) || this;
55
- _this.name = "NotAuthorizedException";
56
- _this.$fault = "client";
57
- Object.setPrototypeOf(_this, NotAuthorizedException.prototype);
58
- return _this;
49
+ }
50
+ export class NotAuthorizedException extends __BaseException {
51
+ constructor(opts) {
52
+ super({
53
+ name: "NotAuthorizedException",
54
+ $fault: "client",
55
+ ...opts,
56
+ });
57
+ this.name = "NotAuthorizedException";
58
+ this.$fault = "client";
59
+ Object.setPrototypeOf(this, NotAuthorizedException.prototype);
59
60
  }
60
- return NotAuthorizedException;
61
- }(__BaseException));
62
- export { NotAuthorizedException };
63
- var ResourceNotFoundException = (function (_super) {
64
- __extends(ResourceNotFoundException, _super);
65
- function ResourceNotFoundException(opts) {
66
- var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
67
- _this.name = "ResourceNotFoundException";
68
- _this.$fault = "client";
69
- Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
70
- return _this;
61
+ }
62
+ export class ResourceNotFoundException extends __BaseException {
63
+ constructor(opts) {
64
+ super({
65
+ name: "ResourceNotFoundException",
66
+ $fault: "client",
67
+ ...opts,
68
+ });
69
+ this.name = "ResourceNotFoundException";
70
+ this.$fault = "client";
71
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
71
72
  }
72
- return ResourceNotFoundException;
73
- }(__BaseException));
74
- export { ResourceNotFoundException };
75
- var ResourceConflictException = (function (_super) {
76
- __extends(ResourceConflictException, _super);
77
- function ResourceConflictException(opts) {
78
- var _this = _super.call(this, __assign({ name: "ResourceConflictException", $fault: "client" }, opts)) || this;
79
- _this.name = "ResourceConflictException";
80
- _this.$fault = "client";
81
- Object.setPrototypeOf(_this, ResourceConflictException.prototype);
82
- return _this;
73
+ }
74
+ export class ResourceConflictException extends __BaseException {
75
+ constructor(opts) {
76
+ super({
77
+ name: "ResourceConflictException",
78
+ $fault: "client",
79
+ ...opts,
80
+ });
81
+ this.name = "ResourceConflictException";
82
+ this.$fault = "client";
83
+ Object.setPrototypeOf(this, ResourceConflictException.prototype);
83
84
  }
84
- return ResourceConflictException;
85
- }(__BaseException));
86
- export { ResourceConflictException };
87
- var TooManyRequestsException = (function (_super) {
88
- __extends(TooManyRequestsException, _super);
89
- function TooManyRequestsException(opts) {
90
- var _this = _super.call(this, __assign({ name: "TooManyRequestsException", $fault: "client" }, opts)) || this;
91
- _this.name = "TooManyRequestsException";
92
- _this.$fault = "client";
93
- Object.setPrototypeOf(_this, TooManyRequestsException.prototype);
94
- return _this;
85
+ }
86
+ export class TooManyRequestsException extends __BaseException {
87
+ constructor(opts) {
88
+ super({
89
+ name: "TooManyRequestsException",
90
+ $fault: "client",
91
+ ...opts,
92
+ });
93
+ this.name = "TooManyRequestsException";
94
+ this.$fault = "client";
95
+ Object.setPrototypeOf(this, TooManyRequestsException.prototype);
95
96
  }
96
- return TooManyRequestsException;
97
- }(__BaseException));
98
- export { TooManyRequestsException };
97
+ }
99
98
  export var BulkPublishStatus;
100
99
  (function (BulkPublishStatus) {
101
100
  BulkPublishStatus["FAILED"] = "FAILED";
@@ -103,103 +102,183 @@ export var BulkPublishStatus;
103
102
  BulkPublishStatus["NOT_STARTED"] = "NOT_STARTED";
104
103
  BulkPublishStatus["SUCCEEDED"] = "SUCCEEDED";
105
104
  })(BulkPublishStatus || (BulkPublishStatus = {}));
106
- var InvalidConfigurationException = (function (_super) {
107
- __extends(InvalidConfigurationException, _super);
108
- function InvalidConfigurationException(opts) {
109
- var _this = _super.call(this, __assign({ name: "InvalidConfigurationException", $fault: "client" }, opts)) || this;
110
- _this.name = "InvalidConfigurationException";
111
- _this.$fault = "client";
112
- Object.setPrototypeOf(_this, InvalidConfigurationException.prototype);
113
- return _this;
105
+ export class InvalidConfigurationException extends __BaseException {
106
+ constructor(opts) {
107
+ super({
108
+ name: "InvalidConfigurationException",
109
+ $fault: "client",
110
+ ...opts,
111
+ });
112
+ this.name = "InvalidConfigurationException";
113
+ this.$fault = "client";
114
+ Object.setPrototypeOf(this, InvalidConfigurationException.prototype);
114
115
  }
115
- return InvalidConfigurationException;
116
- }(__BaseException));
117
- export { InvalidConfigurationException };
118
- var ConcurrentModificationException = (function (_super) {
119
- __extends(ConcurrentModificationException, _super);
120
- function ConcurrentModificationException(opts) {
121
- var _this = _super.call(this, __assign({ name: "ConcurrentModificationException", $fault: "client" }, opts)) || this;
122
- _this.name = "ConcurrentModificationException";
123
- _this.$fault = "client";
124
- Object.setPrototypeOf(_this, ConcurrentModificationException.prototype);
125
- return _this;
116
+ }
117
+ export class ConcurrentModificationException extends __BaseException {
118
+ constructor(opts) {
119
+ super({
120
+ name: "ConcurrentModificationException",
121
+ $fault: "client",
122
+ ...opts,
123
+ });
124
+ this.name = "ConcurrentModificationException";
125
+ this.$fault = "client";
126
+ Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
126
127
  }
127
- return ConcurrentModificationException;
128
- }(__BaseException));
129
- export { ConcurrentModificationException };
130
- var InvalidLambdaFunctionOutputException = (function (_super) {
131
- __extends(InvalidLambdaFunctionOutputException, _super);
132
- function InvalidLambdaFunctionOutputException(opts) {
133
- var _this = _super.call(this, __assign({ name: "InvalidLambdaFunctionOutputException", $fault: "client" }, opts)) || this;
134
- _this.name = "InvalidLambdaFunctionOutputException";
135
- _this.$fault = "client";
136
- Object.setPrototypeOf(_this, InvalidLambdaFunctionOutputException.prototype);
137
- return _this;
128
+ }
129
+ export class InvalidLambdaFunctionOutputException extends __BaseException {
130
+ constructor(opts) {
131
+ super({
132
+ name: "InvalidLambdaFunctionOutputException",
133
+ $fault: "client",
134
+ ...opts,
135
+ });
136
+ this.name = "InvalidLambdaFunctionOutputException";
137
+ this.$fault = "client";
138
+ Object.setPrototypeOf(this, InvalidLambdaFunctionOutputException.prototype);
138
139
  }
139
- return InvalidLambdaFunctionOutputException;
140
- }(__BaseException));
141
- export { InvalidLambdaFunctionOutputException };
142
- var LambdaThrottledException = (function (_super) {
143
- __extends(LambdaThrottledException, _super);
144
- function LambdaThrottledException(opts) {
145
- var _this = _super.call(this, __assign({ name: "LambdaThrottledException", $fault: "client" }, opts)) || this;
146
- _this.name = "LambdaThrottledException";
147
- _this.$fault = "client";
148
- Object.setPrototypeOf(_this, LambdaThrottledException.prototype);
149
- return _this;
140
+ }
141
+ export class LambdaThrottledException extends __BaseException {
142
+ constructor(opts) {
143
+ super({
144
+ name: "LambdaThrottledException",
145
+ $fault: "client",
146
+ ...opts,
147
+ });
148
+ this.name = "LambdaThrottledException";
149
+ this.$fault = "client";
150
+ Object.setPrototypeOf(this, LambdaThrottledException.prototype);
150
151
  }
151
- return LambdaThrottledException;
152
- }(__BaseException));
153
- export { LambdaThrottledException };
154
- var LimitExceededException = (function (_super) {
155
- __extends(LimitExceededException, _super);
156
- function LimitExceededException(opts) {
157
- var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
158
- _this.name = "LimitExceededException";
159
- _this.$fault = "client";
160
- Object.setPrototypeOf(_this, LimitExceededException.prototype);
161
- return _this;
152
+ }
153
+ export class LimitExceededException extends __BaseException {
154
+ constructor(opts) {
155
+ super({
156
+ name: "LimitExceededException",
157
+ $fault: "client",
158
+ ...opts,
159
+ });
160
+ this.name = "LimitExceededException";
161
+ this.$fault = "client";
162
+ Object.setPrototypeOf(this, LimitExceededException.prototype);
162
163
  }
163
- return LimitExceededException;
164
- }(__BaseException));
165
- export { LimitExceededException };
166
- export var BulkPublishRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
167
- export var BulkPublishResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
168
- export var DeleteDatasetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
169
- export var DatasetFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
170
- export var DeleteDatasetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
171
- export var DescribeDatasetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
172
- export var DescribeDatasetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
173
- export var DescribeIdentityPoolUsageRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
174
- export var IdentityPoolUsageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
175
- export var DescribeIdentityPoolUsageResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
176
- export var DescribeIdentityUsageRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
177
- export var IdentityUsageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
178
- export var DescribeIdentityUsageResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
179
- export var GetBulkPublishDetailsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
180
- export var GetBulkPublishDetailsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
181
- export var GetCognitoEventsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
182
- export var GetCognitoEventsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
183
- export var GetIdentityPoolConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
184
- export var CognitoStreamsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
185
- export var PushSyncFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
186
- export var GetIdentityPoolConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
187
- export var ListDatasetsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
188
- export var ListDatasetsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
189
- export var ListIdentityPoolUsageRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
190
- export var ListIdentityPoolUsageResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
191
- export var ListRecordsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
192
- export var _RecordFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
193
- export var ListRecordsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
194
- export var RegisterDeviceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
195
- export var RegisterDeviceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
196
- export var SetCognitoEventsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
197
- export var SetIdentityPoolConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
198
- export var SetIdentityPoolConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
199
- export var SubscribeToDatasetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
200
- export var SubscribeToDatasetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
201
- export var UnsubscribeFromDatasetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
202
- export var UnsubscribeFromDatasetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
203
- export var RecordPatchFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
204
- export var UpdateRecordsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
205
- export var UpdateRecordsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
164
+ }
165
+ export const BulkPublishRequestFilterSensitiveLog = (obj) => ({
166
+ ...obj,
167
+ });
168
+ export const BulkPublishResponseFilterSensitiveLog = (obj) => ({
169
+ ...obj,
170
+ });
171
+ export const DeleteDatasetRequestFilterSensitiveLog = (obj) => ({
172
+ ...obj,
173
+ });
174
+ export const DatasetFilterSensitiveLog = (obj) => ({
175
+ ...obj,
176
+ });
177
+ export const DeleteDatasetResponseFilterSensitiveLog = (obj) => ({
178
+ ...obj,
179
+ });
180
+ export const DescribeDatasetRequestFilterSensitiveLog = (obj) => ({
181
+ ...obj,
182
+ });
183
+ export const DescribeDatasetResponseFilterSensitiveLog = (obj) => ({
184
+ ...obj,
185
+ });
186
+ export const DescribeIdentityPoolUsageRequestFilterSensitiveLog = (obj) => ({
187
+ ...obj,
188
+ });
189
+ export const IdentityPoolUsageFilterSensitiveLog = (obj) => ({
190
+ ...obj,
191
+ });
192
+ export const DescribeIdentityPoolUsageResponseFilterSensitiveLog = (obj) => ({
193
+ ...obj,
194
+ });
195
+ export const DescribeIdentityUsageRequestFilterSensitiveLog = (obj) => ({
196
+ ...obj,
197
+ });
198
+ export const IdentityUsageFilterSensitiveLog = (obj) => ({
199
+ ...obj,
200
+ });
201
+ export const DescribeIdentityUsageResponseFilterSensitiveLog = (obj) => ({
202
+ ...obj,
203
+ });
204
+ export const GetBulkPublishDetailsRequestFilterSensitiveLog = (obj) => ({
205
+ ...obj,
206
+ });
207
+ export const GetBulkPublishDetailsResponseFilterSensitiveLog = (obj) => ({
208
+ ...obj,
209
+ });
210
+ export const GetCognitoEventsRequestFilterSensitiveLog = (obj) => ({
211
+ ...obj,
212
+ });
213
+ export const GetCognitoEventsResponseFilterSensitiveLog = (obj) => ({
214
+ ...obj,
215
+ });
216
+ export const GetIdentityPoolConfigurationRequestFilterSensitiveLog = (obj) => ({
217
+ ...obj,
218
+ });
219
+ export const CognitoStreamsFilterSensitiveLog = (obj) => ({
220
+ ...obj,
221
+ });
222
+ export const PushSyncFilterSensitiveLog = (obj) => ({
223
+ ...obj,
224
+ });
225
+ export const GetIdentityPoolConfigurationResponseFilterSensitiveLog = (obj) => ({
226
+ ...obj,
227
+ });
228
+ export const ListDatasetsRequestFilterSensitiveLog = (obj) => ({
229
+ ...obj,
230
+ });
231
+ export const ListDatasetsResponseFilterSensitiveLog = (obj) => ({
232
+ ...obj,
233
+ });
234
+ export const ListIdentityPoolUsageRequestFilterSensitiveLog = (obj) => ({
235
+ ...obj,
236
+ });
237
+ export const ListIdentityPoolUsageResponseFilterSensitiveLog = (obj) => ({
238
+ ...obj,
239
+ });
240
+ export const ListRecordsRequestFilterSensitiveLog = (obj) => ({
241
+ ...obj,
242
+ });
243
+ export const _RecordFilterSensitiveLog = (obj) => ({
244
+ ...obj,
245
+ });
246
+ export const ListRecordsResponseFilterSensitiveLog = (obj) => ({
247
+ ...obj,
248
+ });
249
+ export const RegisterDeviceRequestFilterSensitiveLog = (obj) => ({
250
+ ...obj,
251
+ });
252
+ export const RegisterDeviceResponseFilterSensitiveLog = (obj) => ({
253
+ ...obj,
254
+ });
255
+ export const SetCognitoEventsRequestFilterSensitiveLog = (obj) => ({
256
+ ...obj,
257
+ });
258
+ export const SetIdentityPoolConfigurationRequestFilterSensitiveLog = (obj) => ({
259
+ ...obj,
260
+ });
261
+ export const SetIdentityPoolConfigurationResponseFilterSensitiveLog = (obj) => ({
262
+ ...obj,
263
+ });
264
+ export const SubscribeToDatasetRequestFilterSensitiveLog = (obj) => ({
265
+ ...obj,
266
+ });
267
+ export const SubscribeToDatasetResponseFilterSensitiveLog = (obj) => ({
268
+ ...obj,
269
+ });
270
+ export const UnsubscribeFromDatasetRequestFilterSensitiveLog = (obj) => ({
271
+ ...obj,
272
+ });
273
+ export const UnsubscribeFromDatasetResponseFilterSensitiveLog = (obj) => ({
274
+ ...obj,
275
+ });
276
+ export const RecordPatchFilterSensitiveLog = (obj) => ({
277
+ ...obj,
278
+ });
279
+ export const UpdateRecordsRequestFilterSensitiveLog = (obj) => ({
280
+ ...obj,
281
+ });
282
+ export const UpdateRecordsResponseFilterSensitiveLog = (obj) => ({
283
+ ...obj,
284
+ });