@aws-sdk/client-cognito-sync 3.130.0 → 3.141.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/CHANGELOG.md +30 -0
- package/README.md +1 -1
- package/dist-cjs/commands/BulkPublishCommand.js +2 -2
- package/dist-cjs/commands/DeleteDatasetCommand.js +2 -2
- package/dist-cjs/commands/DescribeDatasetCommand.js +2 -2
- package/dist-cjs/commands/DescribeIdentityPoolUsageCommand.js +2 -2
- package/dist-cjs/commands/DescribeIdentityUsageCommand.js +2 -2
- package/dist-cjs/commands/GetBulkPublishDetailsCommand.js +2 -2
- package/dist-cjs/commands/GetCognitoEventsCommand.js +2 -2
- package/dist-cjs/commands/GetIdentityPoolConfigurationCommand.js +2 -2
- package/dist-cjs/commands/ListDatasetsCommand.js +2 -2
- package/dist-cjs/commands/ListIdentityPoolUsageCommand.js +2 -2
- package/dist-cjs/commands/ListRecordsCommand.js +2 -2
- package/dist-cjs/commands/RegisterDeviceCommand.js +2 -2
- package/dist-cjs/commands/SetCognitoEventsCommand.js +1 -1
- package/dist-cjs/commands/SetIdentityPoolConfigurationCommand.js +2 -2
- package/dist-cjs/commands/SubscribeToDatasetCommand.js +2 -2
- package/dist-cjs/commands/UnsubscribeFromDatasetCommand.js +2 -2
- package/dist-cjs/commands/UpdateRecordsCommand.js +2 -2
- package/dist-cjs/models/models_0.js +162 -242
- package/dist-es/commands/BulkPublishCommand.js +3 -3
- package/dist-es/commands/DeleteDatasetCommand.js +3 -3
- package/dist-es/commands/DescribeDatasetCommand.js +3 -3
- package/dist-es/commands/DescribeIdentityPoolUsageCommand.js +3 -3
- package/dist-es/commands/DescribeIdentityUsageCommand.js +3 -3
- package/dist-es/commands/GetBulkPublishDetailsCommand.js +3 -3
- package/dist-es/commands/GetCognitoEventsCommand.js +3 -3
- package/dist-es/commands/GetIdentityPoolConfigurationCommand.js +3 -3
- package/dist-es/commands/ListDatasetsCommand.js +3 -3
- package/dist-es/commands/ListIdentityPoolUsageCommand.js +3 -3
- package/dist-es/commands/ListRecordsCommand.js +3 -3
- package/dist-es/commands/RegisterDeviceCommand.js +3 -3
- package/dist-es/commands/SetCognitoEventsCommand.js +2 -2
- package/dist-es/commands/SetIdentityPoolConfigurationCommand.js +3 -3
- package/dist-es/commands/SubscribeToDatasetCommand.js +3 -3
- package/dist-es/commands/UnsubscribeFromDatasetCommand.js +3 -3
- package/dist-es/commands/UpdateRecordsCommand.js +3 -3
- package/dist-es/models/models_0.js +40 -160
- package/dist-types/models/models_0.d.ts +160 -240
- package/dist-types/ts3.4/models/models_0.d.ts +80 -160
- package/package.json +7 -7
|
@@ -12,19 +12,11 @@ export interface BulkPublishRequest {
|
|
|
12
12
|
|
|
13
13
|
IdentityPoolId: string | undefined;
|
|
14
14
|
}
|
|
15
|
-
export declare namespace BulkPublishRequest {
|
|
16
|
-
|
|
17
|
-
const filterSensitiveLog: (obj: BulkPublishRequest) => any;
|
|
18
|
-
}
|
|
19
15
|
|
|
20
16
|
export interface BulkPublishResponse {
|
|
21
17
|
|
|
22
18
|
IdentityPoolId?: string;
|
|
23
19
|
}
|
|
24
|
-
export declare namespace BulkPublishResponse {
|
|
25
|
-
|
|
26
|
-
const filterSensitiveLog: (obj: BulkPublishResponse) => any;
|
|
27
|
-
}
|
|
28
20
|
|
|
29
21
|
export declare class DuplicateRequestException extends __BaseException {
|
|
30
22
|
readonly name: "DuplicateRequestException";
|
|
@@ -69,10 +61,6 @@ export interface DeleteDatasetRequest {
|
|
|
69
61
|
|
|
70
62
|
DatasetName: string | undefined;
|
|
71
63
|
}
|
|
72
|
-
export declare namespace DeleteDatasetRequest {
|
|
73
|
-
|
|
74
|
-
const filterSensitiveLog: (obj: DeleteDatasetRequest) => any;
|
|
75
|
-
}
|
|
76
64
|
|
|
77
65
|
export interface Dataset {
|
|
78
66
|
|
|
@@ -90,19 +78,11 @@ export interface Dataset {
|
|
|
90
78
|
|
|
91
79
|
NumRecords?: number;
|
|
92
80
|
}
|
|
93
|
-
export declare namespace Dataset {
|
|
94
|
-
|
|
95
|
-
const filterSensitiveLog: (obj: Dataset) => any;
|
|
96
|
-
}
|
|
97
81
|
|
|
98
82
|
export interface DeleteDatasetResponse {
|
|
99
83
|
|
|
100
84
|
Dataset?: Dataset;
|
|
101
85
|
}
|
|
102
|
-
export declare namespace DeleteDatasetResponse {
|
|
103
|
-
|
|
104
|
-
const filterSensitiveLog: (obj: DeleteDatasetResponse) => any;
|
|
105
|
-
}
|
|
106
86
|
|
|
107
87
|
export declare class ResourceConflictException extends __BaseException {
|
|
108
88
|
readonly name: "ResourceConflictException";
|
|
@@ -126,28 +106,16 @@ export interface DescribeDatasetRequest {
|
|
|
126
106
|
|
|
127
107
|
DatasetName: string | undefined;
|
|
128
108
|
}
|
|
129
|
-
export declare namespace DescribeDatasetRequest {
|
|
130
|
-
|
|
131
|
-
const filterSensitiveLog: (obj: DescribeDatasetRequest) => any;
|
|
132
|
-
}
|
|
133
109
|
|
|
134
110
|
export interface DescribeDatasetResponse {
|
|
135
111
|
|
|
136
112
|
Dataset?: Dataset;
|
|
137
113
|
}
|
|
138
|
-
export declare namespace DescribeDatasetResponse {
|
|
139
|
-
|
|
140
|
-
const filterSensitiveLog: (obj: DescribeDatasetResponse) => any;
|
|
141
|
-
}
|
|
142
114
|
|
|
143
115
|
export interface DescribeIdentityPoolUsageRequest {
|
|
144
116
|
|
|
145
117
|
IdentityPoolId: string | undefined;
|
|
146
118
|
}
|
|
147
|
-
export declare namespace DescribeIdentityPoolUsageRequest {
|
|
148
|
-
|
|
149
|
-
const filterSensitiveLog: (obj: DescribeIdentityPoolUsageRequest) => any;
|
|
150
|
-
}
|
|
151
119
|
|
|
152
120
|
export interface IdentityPoolUsage {
|
|
153
121
|
|
|
@@ -159,19 +127,11 @@ export interface IdentityPoolUsage {
|
|
|
159
127
|
|
|
160
128
|
LastModifiedDate?: Date;
|
|
161
129
|
}
|
|
162
|
-
export declare namespace IdentityPoolUsage {
|
|
163
|
-
|
|
164
|
-
const filterSensitiveLog: (obj: IdentityPoolUsage) => any;
|
|
165
|
-
}
|
|
166
130
|
|
|
167
131
|
export interface DescribeIdentityPoolUsageResponse {
|
|
168
132
|
|
|
169
133
|
IdentityPoolUsage?: IdentityPoolUsage;
|
|
170
134
|
}
|
|
171
|
-
export declare namespace DescribeIdentityPoolUsageResponse {
|
|
172
|
-
|
|
173
|
-
const filterSensitiveLog: (obj: DescribeIdentityPoolUsageResponse) => any;
|
|
174
|
-
}
|
|
175
135
|
|
|
176
136
|
export interface DescribeIdentityUsageRequest {
|
|
177
137
|
|
|
@@ -179,10 +139,6 @@ export interface DescribeIdentityUsageRequest {
|
|
|
179
139
|
|
|
180
140
|
IdentityId: string | undefined;
|
|
181
141
|
}
|
|
182
|
-
export declare namespace DescribeIdentityUsageRequest {
|
|
183
|
-
|
|
184
|
-
const filterSensitiveLog: (obj: DescribeIdentityUsageRequest) => any;
|
|
185
|
-
}
|
|
186
142
|
|
|
187
143
|
export interface IdentityUsage {
|
|
188
144
|
|
|
@@ -196,28 +152,16 @@ export interface IdentityUsage {
|
|
|
196
152
|
|
|
197
153
|
DataStorage?: number;
|
|
198
154
|
}
|
|
199
|
-
export declare namespace IdentityUsage {
|
|
200
|
-
|
|
201
|
-
const filterSensitiveLog: (obj: IdentityUsage) => any;
|
|
202
|
-
}
|
|
203
155
|
|
|
204
156
|
export interface DescribeIdentityUsageResponse {
|
|
205
157
|
|
|
206
158
|
IdentityUsage?: IdentityUsage;
|
|
207
159
|
}
|
|
208
|
-
export declare namespace DescribeIdentityUsageResponse {
|
|
209
|
-
|
|
210
|
-
const filterSensitiveLog: (obj: DescribeIdentityUsageResponse) => any;
|
|
211
|
-
}
|
|
212
160
|
|
|
213
161
|
export interface GetBulkPublishDetailsRequest {
|
|
214
162
|
|
|
215
163
|
IdentityPoolId: string | undefined;
|
|
216
164
|
}
|
|
217
|
-
export declare namespace GetBulkPublishDetailsRequest {
|
|
218
|
-
|
|
219
|
-
const filterSensitiveLog: (obj: GetBulkPublishDetailsRequest) => any;
|
|
220
|
-
}
|
|
221
165
|
export declare enum BulkPublishStatus {
|
|
222
166
|
FAILED = "FAILED",
|
|
223
167
|
IN_PROGRESS = "IN_PROGRESS",
|
|
@@ -237,37 +181,21 @@ export interface GetBulkPublishDetailsResponse {
|
|
|
237
181
|
|
|
238
182
|
FailureMessage?: string;
|
|
239
183
|
}
|
|
240
|
-
export declare namespace GetBulkPublishDetailsResponse {
|
|
241
|
-
|
|
242
|
-
const filterSensitiveLog: (obj: GetBulkPublishDetailsResponse) => any;
|
|
243
|
-
}
|
|
244
184
|
|
|
245
185
|
export interface GetCognitoEventsRequest {
|
|
246
186
|
|
|
247
187
|
IdentityPoolId: string | undefined;
|
|
248
188
|
}
|
|
249
|
-
export declare namespace GetCognitoEventsRequest {
|
|
250
|
-
|
|
251
|
-
const filterSensitiveLog: (obj: GetCognitoEventsRequest) => any;
|
|
252
|
-
}
|
|
253
189
|
|
|
254
190
|
export interface GetCognitoEventsResponse {
|
|
255
191
|
|
|
256
192
|
Events?: Record<string, string>;
|
|
257
193
|
}
|
|
258
|
-
export declare namespace GetCognitoEventsResponse {
|
|
259
|
-
|
|
260
|
-
const filterSensitiveLog: (obj: GetCognitoEventsResponse) => any;
|
|
261
|
-
}
|
|
262
194
|
|
|
263
195
|
export interface GetIdentityPoolConfigurationRequest {
|
|
264
196
|
|
|
265
197
|
IdentityPoolId: string | undefined;
|
|
266
198
|
}
|
|
267
|
-
export declare namespace GetIdentityPoolConfigurationRequest {
|
|
268
|
-
|
|
269
|
-
const filterSensitiveLog: (obj: GetIdentityPoolConfigurationRequest) => any;
|
|
270
|
-
}
|
|
271
199
|
export declare type StreamingStatus = "DISABLED" | "ENABLED";
|
|
272
200
|
|
|
273
201
|
export interface CognitoStreams {
|
|
@@ -278,10 +206,6 @@ export interface CognitoStreams {
|
|
|
278
206
|
|
|
279
207
|
StreamingStatus?: StreamingStatus | string;
|
|
280
208
|
}
|
|
281
|
-
export declare namespace CognitoStreams {
|
|
282
|
-
|
|
283
|
-
const filterSensitiveLog: (obj: CognitoStreams) => any;
|
|
284
|
-
}
|
|
285
209
|
|
|
286
210
|
export interface PushSync {
|
|
287
211
|
|
|
@@ -289,10 +213,6 @@ export interface PushSync {
|
|
|
289
213
|
|
|
290
214
|
RoleArn?: string;
|
|
291
215
|
}
|
|
292
|
-
export declare namespace PushSync {
|
|
293
|
-
|
|
294
|
-
const filterSensitiveLog: (obj: PushSync) => any;
|
|
295
|
-
}
|
|
296
216
|
|
|
297
217
|
export interface GetIdentityPoolConfigurationResponse {
|
|
298
218
|
|
|
@@ -302,10 +222,6 @@ export interface GetIdentityPoolConfigurationResponse {
|
|
|
302
222
|
|
|
303
223
|
CognitoStreams?: CognitoStreams;
|
|
304
224
|
}
|
|
305
|
-
export declare namespace GetIdentityPoolConfigurationResponse {
|
|
306
|
-
|
|
307
|
-
const filterSensitiveLog: (obj: GetIdentityPoolConfigurationResponse) => any;
|
|
308
|
-
}
|
|
309
225
|
|
|
310
226
|
export interface ListDatasetsRequest {
|
|
311
227
|
|
|
@@ -317,10 +233,6 @@ export interface ListDatasetsRequest {
|
|
|
317
233
|
|
|
318
234
|
MaxResults?: number;
|
|
319
235
|
}
|
|
320
|
-
export declare namespace ListDatasetsRequest {
|
|
321
|
-
|
|
322
|
-
const filterSensitiveLog: (obj: ListDatasetsRequest) => any;
|
|
323
|
-
}
|
|
324
236
|
|
|
325
237
|
export interface ListDatasetsResponse {
|
|
326
238
|
|
|
@@ -330,10 +242,6 @@ export interface ListDatasetsResponse {
|
|
|
330
242
|
|
|
331
243
|
NextToken?: string;
|
|
332
244
|
}
|
|
333
|
-
export declare namespace ListDatasetsResponse {
|
|
334
|
-
|
|
335
|
-
const filterSensitiveLog: (obj: ListDatasetsResponse) => any;
|
|
336
|
-
}
|
|
337
245
|
|
|
338
246
|
export interface ListIdentityPoolUsageRequest {
|
|
339
247
|
|
|
@@ -341,10 +249,6 @@ export interface ListIdentityPoolUsageRequest {
|
|
|
341
249
|
|
|
342
250
|
MaxResults?: number;
|
|
343
251
|
}
|
|
344
|
-
export declare namespace ListIdentityPoolUsageRequest {
|
|
345
|
-
|
|
346
|
-
const filterSensitiveLog: (obj: ListIdentityPoolUsageRequest) => any;
|
|
347
|
-
}
|
|
348
252
|
|
|
349
253
|
export interface ListIdentityPoolUsageResponse {
|
|
350
254
|
|
|
@@ -356,10 +260,6 @@ export interface ListIdentityPoolUsageResponse {
|
|
|
356
260
|
|
|
357
261
|
NextToken?: string;
|
|
358
262
|
}
|
|
359
|
-
export declare namespace ListIdentityPoolUsageResponse {
|
|
360
|
-
|
|
361
|
-
const filterSensitiveLog: (obj: ListIdentityPoolUsageResponse) => any;
|
|
362
|
-
}
|
|
363
263
|
|
|
364
264
|
export interface ListRecordsRequest {
|
|
365
265
|
|
|
@@ -377,10 +277,6 @@ export interface ListRecordsRequest {
|
|
|
377
277
|
|
|
378
278
|
SyncSessionToken?: string;
|
|
379
279
|
}
|
|
380
|
-
export declare namespace ListRecordsRequest {
|
|
381
|
-
|
|
382
|
-
const filterSensitiveLog: (obj: ListRecordsRequest) => any;
|
|
383
|
-
}
|
|
384
280
|
|
|
385
281
|
export interface _Record {
|
|
386
282
|
|
|
@@ -396,10 +292,6 @@ export interface _Record {
|
|
|
396
292
|
|
|
397
293
|
DeviceLastModifiedDate?: Date;
|
|
398
294
|
}
|
|
399
|
-
export declare namespace _Record {
|
|
400
|
-
|
|
401
|
-
const filterSensitiveLog: (obj: _Record) => any;
|
|
402
|
-
}
|
|
403
295
|
|
|
404
296
|
export interface ListRecordsResponse {
|
|
405
297
|
|
|
@@ -421,10 +313,6 @@ export interface ListRecordsResponse {
|
|
|
421
313
|
|
|
422
314
|
SyncSessionToken?: string;
|
|
423
315
|
}
|
|
424
|
-
export declare namespace ListRecordsResponse {
|
|
425
|
-
|
|
426
|
-
const filterSensitiveLog: (obj: ListRecordsResponse) => any;
|
|
427
|
-
}
|
|
428
316
|
export declare class InvalidConfigurationException extends __BaseException {
|
|
429
317
|
readonly name: "InvalidConfigurationException";
|
|
430
318
|
readonly $fault: "client";
|
|
@@ -443,19 +331,11 @@ export interface RegisterDeviceRequest {
|
|
|
443
331
|
|
|
444
332
|
Token: string | undefined;
|
|
445
333
|
}
|
|
446
|
-
export declare namespace RegisterDeviceRequest {
|
|
447
|
-
|
|
448
|
-
const filterSensitiveLog: (obj: RegisterDeviceRequest) => any;
|
|
449
|
-
}
|
|
450
334
|
|
|
451
335
|
export interface RegisterDeviceResponse {
|
|
452
336
|
|
|
453
337
|
DeviceId?: string;
|
|
454
338
|
}
|
|
455
|
-
export declare namespace RegisterDeviceResponse {
|
|
456
|
-
|
|
457
|
-
const filterSensitiveLog: (obj: RegisterDeviceResponse) => any;
|
|
458
|
-
}
|
|
459
339
|
|
|
460
340
|
export interface SetCognitoEventsRequest {
|
|
461
341
|
|
|
@@ -463,10 +343,6 @@ export interface SetCognitoEventsRequest {
|
|
|
463
343
|
|
|
464
344
|
Events: Record<string, string> | undefined;
|
|
465
345
|
}
|
|
466
|
-
export declare namespace SetCognitoEventsRequest {
|
|
467
|
-
|
|
468
|
-
const filterSensitiveLog: (obj: SetCognitoEventsRequest) => any;
|
|
469
|
-
}
|
|
470
346
|
|
|
471
347
|
export declare class ConcurrentModificationException extends __BaseException {
|
|
472
348
|
readonly name: "ConcurrentModificationException";
|
|
@@ -483,10 +359,6 @@ export interface SetIdentityPoolConfigurationRequest {
|
|
|
483
359
|
|
|
484
360
|
CognitoStreams?: CognitoStreams;
|
|
485
361
|
}
|
|
486
|
-
export declare namespace SetIdentityPoolConfigurationRequest {
|
|
487
|
-
|
|
488
|
-
const filterSensitiveLog: (obj: SetIdentityPoolConfigurationRequest) => any;
|
|
489
|
-
}
|
|
490
362
|
|
|
491
363
|
export interface SetIdentityPoolConfigurationResponse {
|
|
492
364
|
|
|
@@ -496,10 +368,6 @@ export interface SetIdentityPoolConfigurationResponse {
|
|
|
496
368
|
|
|
497
369
|
CognitoStreams?: CognitoStreams;
|
|
498
370
|
}
|
|
499
|
-
export declare namespace SetIdentityPoolConfigurationResponse {
|
|
500
|
-
|
|
501
|
-
const filterSensitiveLog: (obj: SetIdentityPoolConfigurationResponse) => any;
|
|
502
|
-
}
|
|
503
371
|
|
|
504
372
|
export interface SubscribeToDatasetRequest {
|
|
505
373
|
|
|
@@ -511,17 +379,9 @@ export interface SubscribeToDatasetRequest {
|
|
|
511
379
|
|
|
512
380
|
DeviceId: string | undefined;
|
|
513
381
|
}
|
|
514
|
-
export declare namespace SubscribeToDatasetRequest {
|
|
515
|
-
|
|
516
|
-
const filterSensitiveLog: (obj: SubscribeToDatasetRequest) => any;
|
|
517
|
-
}
|
|
518
382
|
|
|
519
383
|
export interface SubscribeToDatasetResponse {
|
|
520
384
|
}
|
|
521
|
-
export declare namespace SubscribeToDatasetResponse {
|
|
522
|
-
|
|
523
|
-
const filterSensitiveLog: (obj: SubscribeToDatasetResponse) => any;
|
|
524
|
-
}
|
|
525
385
|
|
|
526
386
|
export interface UnsubscribeFromDatasetRequest {
|
|
527
387
|
|
|
@@ -533,17 +393,9 @@ export interface UnsubscribeFromDatasetRequest {
|
|
|
533
393
|
|
|
534
394
|
DeviceId: string | undefined;
|
|
535
395
|
}
|
|
536
|
-
export declare namespace UnsubscribeFromDatasetRequest {
|
|
537
|
-
|
|
538
|
-
const filterSensitiveLog: (obj: UnsubscribeFromDatasetRequest) => any;
|
|
539
|
-
}
|
|
540
396
|
|
|
541
397
|
export interface UnsubscribeFromDatasetResponse {
|
|
542
398
|
}
|
|
543
|
-
export declare namespace UnsubscribeFromDatasetResponse {
|
|
544
|
-
|
|
545
|
-
const filterSensitiveLog: (obj: UnsubscribeFromDatasetResponse) => any;
|
|
546
|
-
}
|
|
547
399
|
|
|
548
400
|
export declare class InvalidLambdaFunctionOutputException extends __BaseException {
|
|
549
401
|
readonly name: "InvalidLambdaFunctionOutputException";
|
|
@@ -579,10 +431,6 @@ export interface RecordPatch {
|
|
|
579
431
|
|
|
580
432
|
DeviceLastModifiedDate?: Date;
|
|
581
433
|
}
|
|
582
|
-
export declare namespace RecordPatch {
|
|
583
|
-
|
|
584
|
-
const filterSensitiveLog: (obj: RecordPatch) => any;
|
|
585
|
-
}
|
|
586
434
|
|
|
587
435
|
export interface UpdateRecordsRequest {
|
|
588
436
|
|
|
@@ -600,16 +448,88 @@ export interface UpdateRecordsRequest {
|
|
|
600
448
|
|
|
601
449
|
ClientContext?: string;
|
|
602
450
|
}
|
|
603
|
-
export declare namespace UpdateRecordsRequest {
|
|
604
|
-
|
|
605
|
-
const filterSensitiveLog: (obj: UpdateRecordsRequest) => any;
|
|
606
|
-
}
|
|
607
451
|
|
|
608
452
|
export interface UpdateRecordsResponse {
|
|
609
453
|
|
|
610
454
|
Records?: _Record[];
|
|
611
455
|
}
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
456
|
+
|
|
457
|
+
export declare const BulkPublishRequestFilterSensitiveLog: (obj: BulkPublishRequest) => any;
|
|
458
|
+
|
|
459
|
+
export declare const BulkPublishResponseFilterSensitiveLog: (obj: BulkPublishResponse) => any;
|
|
460
|
+
|
|
461
|
+
export declare const DeleteDatasetRequestFilterSensitiveLog: (obj: DeleteDatasetRequest) => any;
|
|
462
|
+
|
|
463
|
+
export declare const DatasetFilterSensitiveLog: (obj: Dataset) => any;
|
|
464
|
+
|
|
465
|
+
export declare const DeleteDatasetResponseFilterSensitiveLog: (obj: DeleteDatasetResponse) => any;
|
|
466
|
+
|
|
467
|
+
export declare const DescribeDatasetRequestFilterSensitiveLog: (obj: DescribeDatasetRequest) => any;
|
|
468
|
+
|
|
469
|
+
export declare const DescribeDatasetResponseFilterSensitiveLog: (obj: DescribeDatasetResponse) => any;
|
|
470
|
+
|
|
471
|
+
export declare const DescribeIdentityPoolUsageRequestFilterSensitiveLog: (obj: DescribeIdentityPoolUsageRequest) => any;
|
|
472
|
+
|
|
473
|
+
export declare const IdentityPoolUsageFilterSensitiveLog: (obj: IdentityPoolUsage) => any;
|
|
474
|
+
|
|
475
|
+
export declare const DescribeIdentityPoolUsageResponseFilterSensitiveLog: (obj: DescribeIdentityPoolUsageResponse) => any;
|
|
476
|
+
|
|
477
|
+
export declare const DescribeIdentityUsageRequestFilterSensitiveLog: (obj: DescribeIdentityUsageRequest) => any;
|
|
478
|
+
|
|
479
|
+
export declare const IdentityUsageFilterSensitiveLog: (obj: IdentityUsage) => any;
|
|
480
|
+
|
|
481
|
+
export declare const DescribeIdentityUsageResponseFilterSensitiveLog: (obj: DescribeIdentityUsageResponse) => any;
|
|
482
|
+
|
|
483
|
+
export declare const GetBulkPublishDetailsRequestFilterSensitiveLog: (obj: GetBulkPublishDetailsRequest) => any;
|
|
484
|
+
|
|
485
|
+
export declare const GetBulkPublishDetailsResponseFilterSensitiveLog: (obj: GetBulkPublishDetailsResponse) => any;
|
|
486
|
+
|
|
487
|
+
export declare const GetCognitoEventsRequestFilterSensitiveLog: (obj: GetCognitoEventsRequest) => any;
|
|
488
|
+
|
|
489
|
+
export declare const GetCognitoEventsResponseFilterSensitiveLog: (obj: GetCognitoEventsResponse) => any;
|
|
490
|
+
|
|
491
|
+
export declare const GetIdentityPoolConfigurationRequestFilterSensitiveLog: (obj: GetIdentityPoolConfigurationRequest) => any;
|
|
492
|
+
|
|
493
|
+
export declare const CognitoStreamsFilterSensitiveLog: (obj: CognitoStreams) => any;
|
|
494
|
+
|
|
495
|
+
export declare const PushSyncFilterSensitiveLog: (obj: PushSync) => any;
|
|
496
|
+
|
|
497
|
+
export declare const GetIdentityPoolConfigurationResponseFilterSensitiveLog: (obj: GetIdentityPoolConfigurationResponse) => any;
|
|
498
|
+
|
|
499
|
+
export declare const ListDatasetsRequestFilterSensitiveLog: (obj: ListDatasetsRequest) => any;
|
|
500
|
+
|
|
501
|
+
export declare const ListDatasetsResponseFilterSensitiveLog: (obj: ListDatasetsResponse) => any;
|
|
502
|
+
|
|
503
|
+
export declare const ListIdentityPoolUsageRequestFilterSensitiveLog: (obj: ListIdentityPoolUsageRequest) => any;
|
|
504
|
+
|
|
505
|
+
export declare const ListIdentityPoolUsageResponseFilterSensitiveLog: (obj: ListIdentityPoolUsageResponse) => any;
|
|
506
|
+
|
|
507
|
+
export declare const ListRecordsRequestFilterSensitiveLog: (obj: ListRecordsRequest) => any;
|
|
508
|
+
|
|
509
|
+
export declare const _RecordFilterSensitiveLog: (obj: _Record) => any;
|
|
510
|
+
|
|
511
|
+
export declare const ListRecordsResponseFilterSensitiveLog: (obj: ListRecordsResponse) => any;
|
|
512
|
+
|
|
513
|
+
export declare const RegisterDeviceRequestFilterSensitiveLog: (obj: RegisterDeviceRequest) => any;
|
|
514
|
+
|
|
515
|
+
export declare const RegisterDeviceResponseFilterSensitiveLog: (obj: RegisterDeviceResponse) => any;
|
|
516
|
+
|
|
517
|
+
export declare const SetCognitoEventsRequestFilterSensitiveLog: (obj: SetCognitoEventsRequest) => any;
|
|
518
|
+
|
|
519
|
+
export declare const SetIdentityPoolConfigurationRequestFilterSensitiveLog: (obj: SetIdentityPoolConfigurationRequest) => any;
|
|
520
|
+
|
|
521
|
+
export declare const SetIdentityPoolConfigurationResponseFilterSensitiveLog: (obj: SetIdentityPoolConfigurationResponse) => any;
|
|
522
|
+
|
|
523
|
+
export declare const SubscribeToDatasetRequestFilterSensitiveLog: (obj: SubscribeToDatasetRequest) => any;
|
|
524
|
+
|
|
525
|
+
export declare const SubscribeToDatasetResponseFilterSensitiveLog: (obj: SubscribeToDatasetResponse) => any;
|
|
526
|
+
|
|
527
|
+
export declare const UnsubscribeFromDatasetRequestFilterSensitiveLog: (obj: UnsubscribeFromDatasetRequest) => any;
|
|
528
|
+
|
|
529
|
+
export declare const UnsubscribeFromDatasetResponseFilterSensitiveLog: (obj: UnsubscribeFromDatasetResponse) => any;
|
|
530
|
+
|
|
531
|
+
export declare const RecordPatchFilterSensitiveLog: (obj: RecordPatch) => any;
|
|
532
|
+
|
|
533
|
+
export declare const UpdateRecordsRequestFilterSensitiveLog: (obj: UpdateRecordsRequest) => any;
|
|
534
|
+
|
|
535
|
+
export declare const UpdateRecordsResponseFilterSensitiveLog: (obj: UpdateRecordsResponse) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cognito-sync",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cognito Sync Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.141.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.141.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.130.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.141.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.131.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.127.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
27
27
|
"@aws-sdk/middleware-content-length": "3.127.0",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"@aws-sdk/node-config-provider": "3.127.0",
|
|
37
37
|
"@aws-sdk/node-http-handler": "3.127.0",
|
|
38
38
|
"@aws-sdk/protocol-http": "3.127.0",
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
+
"@aws-sdk/smithy-client": "3.137.0",
|
|
40
40
|
"@aws-sdk/types": "3.127.0",
|
|
41
41
|
"@aws-sdk/url-parser": "3.127.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.137.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.137.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
49
|
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|