@aws-sdk/client-cognito-sync 3.131.0 → 3.142.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 +33 -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-cjs/protocols/Aws_restJson1.js +248 -636
- 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-es/protocols/Aws_restJson1.js +317 -640
- 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 +6 -6
|
@@ -22,12 +22,6 @@ export interface BulkPublishRequest {
|
|
|
22
22
|
*/
|
|
23
23
|
IdentityPoolId: string | undefined;
|
|
24
24
|
}
|
|
25
|
-
export declare namespace BulkPublishRequest {
|
|
26
|
-
/**
|
|
27
|
-
* @internal
|
|
28
|
-
*/
|
|
29
|
-
const filterSensitiveLog: (obj: BulkPublishRequest) => any;
|
|
30
|
-
}
|
|
31
25
|
/**
|
|
32
26
|
* The output for the BulkPublish operation.
|
|
33
27
|
*/
|
|
@@ -39,12 +33,6 @@ export interface BulkPublishResponse {
|
|
|
39
33
|
*/
|
|
40
34
|
IdentityPoolId?: string;
|
|
41
35
|
}
|
|
42
|
-
export declare namespace BulkPublishResponse {
|
|
43
|
-
/**
|
|
44
|
-
* @internal
|
|
45
|
-
*/
|
|
46
|
-
const filterSensitiveLog: (obj: BulkPublishResponse) => any;
|
|
47
|
-
}
|
|
48
36
|
/**
|
|
49
37
|
* An exception thrown when there is an IN_PROGRESS bulk publish operation for the given identity pool.
|
|
50
38
|
*/
|
|
@@ -128,12 +116,6 @@ export interface DeleteDatasetRequest {
|
|
|
128
116
|
*/
|
|
129
117
|
DatasetName: string | undefined;
|
|
130
118
|
}
|
|
131
|
-
export declare namespace DeleteDatasetRequest {
|
|
132
|
-
/**
|
|
133
|
-
* @internal
|
|
134
|
-
*/
|
|
135
|
-
const filterSensitiveLog: (obj: DeleteDatasetRequest) => any;
|
|
136
|
-
}
|
|
137
119
|
/**
|
|
138
120
|
* A collection of data for an identity pool. An identity pool can
|
|
139
121
|
* have multiple datasets. A dataset is per identity and can be general or associated with a
|
|
@@ -178,12 +160,6 @@ export interface Dataset {
|
|
|
178
160
|
*/
|
|
179
161
|
NumRecords?: number;
|
|
180
162
|
}
|
|
181
|
-
export declare namespace Dataset {
|
|
182
|
-
/**
|
|
183
|
-
* @internal
|
|
184
|
-
*/
|
|
185
|
-
const filterSensitiveLog: (obj: Dataset) => any;
|
|
186
|
-
}
|
|
187
163
|
/**
|
|
188
164
|
* Response to a successful DeleteDataset
|
|
189
165
|
* request.
|
|
@@ -198,12 +174,6 @@ export interface DeleteDatasetResponse {
|
|
|
198
174
|
*/
|
|
199
175
|
Dataset?: Dataset;
|
|
200
176
|
}
|
|
201
|
-
export declare namespace DeleteDatasetResponse {
|
|
202
|
-
/**
|
|
203
|
-
* @internal
|
|
204
|
-
*/
|
|
205
|
-
const filterSensitiveLog: (obj: DeleteDatasetResponse) => any;
|
|
206
|
-
}
|
|
207
177
|
/**
|
|
208
178
|
* Thrown if an update can't be applied because
|
|
209
179
|
* the resource was changed by another call and this would result in a conflict.
|
|
@@ -252,12 +222,6 @@ export interface DescribeDatasetRequest {
|
|
|
252
222
|
*/
|
|
253
223
|
DatasetName: string | undefined;
|
|
254
224
|
}
|
|
255
|
-
export declare namespace DescribeDatasetRequest {
|
|
256
|
-
/**
|
|
257
|
-
* @internal
|
|
258
|
-
*/
|
|
259
|
-
const filterSensitiveLog: (obj: DescribeDatasetRequest) => any;
|
|
260
|
-
}
|
|
261
225
|
/**
|
|
262
226
|
* Response to a successful DescribeDataset
|
|
263
227
|
* request.
|
|
@@ -272,12 +236,6 @@ export interface DescribeDatasetResponse {
|
|
|
272
236
|
*/
|
|
273
237
|
Dataset?: Dataset;
|
|
274
238
|
}
|
|
275
|
-
export declare namespace DescribeDatasetResponse {
|
|
276
|
-
/**
|
|
277
|
-
* @internal
|
|
278
|
-
*/
|
|
279
|
-
const filterSensitiveLog: (obj: DescribeDatasetResponse) => any;
|
|
280
|
-
}
|
|
281
239
|
/**
|
|
282
240
|
* A request for usage information about
|
|
283
241
|
* the identity pool.
|
|
@@ -290,12 +248,6 @@ export interface DescribeIdentityPoolUsageRequest {
|
|
|
290
248
|
*/
|
|
291
249
|
IdentityPoolId: string | undefined;
|
|
292
250
|
}
|
|
293
|
-
export declare namespace DescribeIdentityPoolUsageRequest {
|
|
294
|
-
/**
|
|
295
|
-
* @internal
|
|
296
|
-
*/
|
|
297
|
-
const filterSensitiveLog: (obj: DescribeIdentityPoolUsageRequest) => any;
|
|
298
|
-
}
|
|
299
251
|
/**
|
|
300
252
|
* Usage information for the identity
|
|
301
253
|
* pool.
|
|
@@ -323,12 +275,6 @@ export interface IdentityPoolUsage {
|
|
|
323
275
|
*/
|
|
324
276
|
LastModifiedDate?: Date;
|
|
325
277
|
}
|
|
326
|
-
export declare namespace IdentityPoolUsage {
|
|
327
|
-
/**
|
|
328
|
-
* @internal
|
|
329
|
-
*/
|
|
330
|
-
const filterSensitiveLog: (obj: IdentityPoolUsage) => any;
|
|
331
|
-
}
|
|
332
278
|
/**
|
|
333
279
|
* Response to a successful
|
|
334
280
|
* DescribeIdentityPoolUsage request.
|
|
@@ -340,12 +286,6 @@ export interface DescribeIdentityPoolUsageResponse {
|
|
|
340
286
|
*/
|
|
341
287
|
IdentityPoolUsage?: IdentityPoolUsage;
|
|
342
288
|
}
|
|
343
|
-
export declare namespace DescribeIdentityPoolUsageResponse {
|
|
344
|
-
/**
|
|
345
|
-
* @internal
|
|
346
|
-
*/
|
|
347
|
-
const filterSensitiveLog: (obj: DescribeIdentityPoolUsageResponse) => any;
|
|
348
|
-
}
|
|
349
289
|
/**
|
|
350
290
|
* A request for information about the usage of
|
|
351
291
|
* an identity pool.
|
|
@@ -364,12 +304,6 @@ export interface DescribeIdentityUsageRequest {
|
|
|
364
304
|
*/
|
|
365
305
|
IdentityId: string | undefined;
|
|
366
306
|
}
|
|
367
|
-
export declare namespace DescribeIdentityUsageRequest {
|
|
368
|
-
/**
|
|
369
|
-
* @internal
|
|
370
|
-
*/
|
|
371
|
-
const filterSensitiveLog: (obj: DescribeIdentityUsageRequest) => any;
|
|
372
|
-
}
|
|
373
307
|
/**
|
|
374
308
|
* Usage information for the identity.
|
|
375
309
|
*/
|
|
@@ -402,12 +336,6 @@ export interface IdentityUsage {
|
|
|
402
336
|
*/
|
|
403
337
|
DataStorage?: number;
|
|
404
338
|
}
|
|
405
|
-
export declare namespace IdentityUsage {
|
|
406
|
-
/**
|
|
407
|
-
* @internal
|
|
408
|
-
*/
|
|
409
|
-
const filterSensitiveLog: (obj: IdentityUsage) => any;
|
|
410
|
-
}
|
|
411
339
|
/**
|
|
412
340
|
* The response to a successful
|
|
413
341
|
* DescribeIdentityUsage request.
|
|
@@ -419,12 +347,6 @@ export interface DescribeIdentityUsageResponse {
|
|
|
419
347
|
*/
|
|
420
348
|
IdentityUsage?: IdentityUsage;
|
|
421
349
|
}
|
|
422
|
-
export declare namespace DescribeIdentityUsageResponse {
|
|
423
|
-
/**
|
|
424
|
-
* @internal
|
|
425
|
-
*/
|
|
426
|
-
const filterSensitiveLog: (obj: DescribeIdentityUsageResponse) => any;
|
|
427
|
-
}
|
|
428
350
|
/**
|
|
429
351
|
* The input for the GetBulkPublishDetails operation.
|
|
430
352
|
*/
|
|
@@ -436,12 +358,6 @@ export interface GetBulkPublishDetailsRequest {
|
|
|
436
358
|
*/
|
|
437
359
|
IdentityPoolId: string | undefined;
|
|
438
360
|
}
|
|
439
|
-
export declare namespace GetBulkPublishDetailsRequest {
|
|
440
|
-
/**
|
|
441
|
-
* @internal
|
|
442
|
-
*/
|
|
443
|
-
const filterSensitiveLog: (obj: GetBulkPublishDetailsRequest) => any;
|
|
444
|
-
}
|
|
445
361
|
export declare enum BulkPublishStatus {
|
|
446
362
|
FAILED = "FAILED",
|
|
447
363
|
IN_PROGRESS = "IN_PROGRESS",
|
|
@@ -479,12 +395,6 @@ export interface GetBulkPublishDetailsResponse {
|
|
|
479
395
|
*/
|
|
480
396
|
FailureMessage?: string;
|
|
481
397
|
}
|
|
482
|
-
export declare namespace GetBulkPublishDetailsResponse {
|
|
483
|
-
/**
|
|
484
|
-
* @internal
|
|
485
|
-
*/
|
|
486
|
-
const filterSensitiveLog: (obj: GetBulkPublishDetailsResponse) => any;
|
|
487
|
-
}
|
|
488
398
|
/**
|
|
489
399
|
* <p>A request for a list of the configured Cognito Events</p>
|
|
490
400
|
*/
|
|
@@ -494,12 +404,6 @@ export interface GetCognitoEventsRequest {
|
|
|
494
404
|
*/
|
|
495
405
|
IdentityPoolId: string | undefined;
|
|
496
406
|
}
|
|
497
|
-
export declare namespace GetCognitoEventsRequest {
|
|
498
|
-
/**
|
|
499
|
-
* @internal
|
|
500
|
-
*/
|
|
501
|
-
const filterSensitiveLog: (obj: GetCognitoEventsRequest) => any;
|
|
502
|
-
}
|
|
503
407
|
/**
|
|
504
408
|
* <p>The response from the GetCognitoEvents request</p>
|
|
505
409
|
*/
|
|
@@ -509,12 +413,6 @@ export interface GetCognitoEventsResponse {
|
|
|
509
413
|
*/
|
|
510
414
|
Events?: Record<string, string>;
|
|
511
415
|
}
|
|
512
|
-
export declare namespace GetCognitoEventsResponse {
|
|
513
|
-
/**
|
|
514
|
-
* @internal
|
|
515
|
-
*/
|
|
516
|
-
const filterSensitiveLog: (obj: GetCognitoEventsResponse) => any;
|
|
517
|
-
}
|
|
518
416
|
/**
|
|
519
417
|
* <p>The input for the GetIdentityPoolConfiguration operation.</p>
|
|
520
418
|
*/
|
|
@@ -525,12 +423,6 @@ export interface GetIdentityPoolConfigurationRequest {
|
|
|
525
423
|
*/
|
|
526
424
|
IdentityPoolId: string | undefined;
|
|
527
425
|
}
|
|
528
|
-
export declare namespace GetIdentityPoolConfigurationRequest {
|
|
529
|
-
/**
|
|
530
|
-
* @internal
|
|
531
|
-
*/
|
|
532
|
-
const filterSensitiveLog: (obj: GetIdentityPoolConfigurationRequest) => any;
|
|
533
|
-
}
|
|
534
426
|
export declare type StreamingStatus = "DISABLED" | "ENABLED";
|
|
535
427
|
/**
|
|
536
428
|
* Configuration options for configure Cognito streams.
|
|
@@ -551,12 +443,6 @@ export interface CognitoStreams {
|
|
|
551
443
|
*/
|
|
552
444
|
StreamingStatus?: StreamingStatus | string;
|
|
553
445
|
}
|
|
554
|
-
export declare namespace CognitoStreams {
|
|
555
|
-
/**
|
|
556
|
-
* @internal
|
|
557
|
-
*/
|
|
558
|
-
const filterSensitiveLog: (obj: CognitoStreams) => any;
|
|
559
|
-
}
|
|
560
446
|
/**
|
|
561
447
|
* <p>Configuration options to be applied to the identity pool.</p>
|
|
562
448
|
*/
|
|
@@ -570,12 +456,6 @@ export interface PushSync {
|
|
|
570
456
|
*/
|
|
571
457
|
RoleArn?: string;
|
|
572
458
|
}
|
|
573
|
-
export declare namespace PushSync {
|
|
574
|
-
/**
|
|
575
|
-
* @internal
|
|
576
|
-
*/
|
|
577
|
-
const filterSensitiveLog: (obj: PushSync) => any;
|
|
578
|
-
}
|
|
579
459
|
/**
|
|
580
460
|
* <p>The output for the GetIdentityPoolConfiguration operation.</p>
|
|
581
461
|
*/
|
|
@@ -594,12 +474,6 @@ export interface GetIdentityPoolConfigurationResponse {
|
|
|
594
474
|
*/
|
|
595
475
|
CognitoStreams?: CognitoStreams;
|
|
596
476
|
}
|
|
597
|
-
export declare namespace GetIdentityPoolConfigurationResponse {
|
|
598
|
-
/**
|
|
599
|
-
* @internal
|
|
600
|
-
*/
|
|
601
|
-
const filterSensitiveLog: (obj: GetIdentityPoolConfigurationResponse) => any;
|
|
602
|
-
}
|
|
603
477
|
/**
|
|
604
478
|
* Request for a list of datasets for an
|
|
605
479
|
* identity.
|
|
@@ -628,12 +502,6 @@ export interface ListDatasetsRequest {
|
|
|
628
502
|
*/
|
|
629
503
|
MaxResults?: number;
|
|
630
504
|
}
|
|
631
|
-
export declare namespace ListDatasetsRequest {
|
|
632
|
-
/**
|
|
633
|
-
* @internal
|
|
634
|
-
*/
|
|
635
|
-
const filterSensitiveLog: (obj: ListDatasetsRequest) => any;
|
|
636
|
-
}
|
|
637
505
|
/**
|
|
638
506
|
* Returned for a successful ListDatasets
|
|
639
507
|
* request.
|
|
@@ -653,12 +521,6 @@ export interface ListDatasetsResponse {
|
|
|
653
521
|
*/
|
|
654
522
|
NextToken?: string;
|
|
655
523
|
}
|
|
656
|
-
export declare namespace ListDatasetsResponse {
|
|
657
|
-
/**
|
|
658
|
-
* @internal
|
|
659
|
-
*/
|
|
660
|
-
const filterSensitiveLog: (obj: ListDatasetsResponse) => any;
|
|
661
|
-
}
|
|
662
524
|
/**
|
|
663
525
|
* A request for usage information on an
|
|
664
526
|
* identity pool.
|
|
@@ -675,12 +537,6 @@ export interface ListIdentityPoolUsageRequest {
|
|
|
675
537
|
*/
|
|
676
538
|
MaxResults?: number;
|
|
677
539
|
}
|
|
678
|
-
export declare namespace ListIdentityPoolUsageRequest {
|
|
679
|
-
/**
|
|
680
|
-
* @internal
|
|
681
|
-
*/
|
|
682
|
-
const filterSensitiveLog: (obj: ListIdentityPoolUsageRequest) => any;
|
|
683
|
-
}
|
|
684
540
|
/**
|
|
685
541
|
* Returned for a successful
|
|
686
542
|
* ListIdentityPoolUsage request.
|
|
@@ -707,12 +563,6 @@ export interface ListIdentityPoolUsageResponse {
|
|
|
707
563
|
*/
|
|
708
564
|
NextToken?: string;
|
|
709
565
|
}
|
|
710
|
-
export declare namespace ListIdentityPoolUsageResponse {
|
|
711
|
-
/**
|
|
712
|
-
* @internal
|
|
713
|
-
*/
|
|
714
|
-
const filterSensitiveLog: (obj: ListIdentityPoolUsageResponse) => any;
|
|
715
|
-
}
|
|
716
566
|
/**
|
|
717
567
|
* A request for a list of records.
|
|
718
568
|
*/
|
|
@@ -755,12 +605,6 @@ export interface ListRecordsRequest {
|
|
|
755
605
|
*/
|
|
756
606
|
SyncSessionToken?: string;
|
|
757
607
|
}
|
|
758
|
-
export declare namespace ListRecordsRequest {
|
|
759
|
-
/**
|
|
760
|
-
* @internal
|
|
761
|
-
*/
|
|
762
|
-
const filterSensitiveLog: (obj: ListRecordsRequest) => any;
|
|
763
|
-
}
|
|
764
608
|
/**
|
|
765
609
|
* The basic data structure of a dataset.
|
|
766
610
|
*/
|
|
@@ -793,12 +637,6 @@ export interface _Record {
|
|
|
793
637
|
*/
|
|
794
638
|
DeviceLastModifiedDate?: Date;
|
|
795
639
|
}
|
|
796
|
-
export declare namespace _Record {
|
|
797
|
-
/**
|
|
798
|
-
* @internal
|
|
799
|
-
*/
|
|
800
|
-
const filterSensitiveLog: (obj: _Record) => any;
|
|
801
|
-
}
|
|
802
640
|
/**
|
|
803
641
|
* Returned for a successful
|
|
804
642
|
* ListRecordsRequest.
|
|
@@ -848,12 +686,6 @@ export interface ListRecordsResponse {
|
|
|
848
686
|
*/
|
|
849
687
|
SyncSessionToken?: string;
|
|
850
688
|
}
|
|
851
|
-
export declare namespace ListRecordsResponse {
|
|
852
|
-
/**
|
|
853
|
-
* @internal
|
|
854
|
-
*/
|
|
855
|
-
const filterSensitiveLog: (obj: ListRecordsResponse) => any;
|
|
856
|
-
}
|
|
857
689
|
export declare class InvalidConfigurationException extends __BaseException {
|
|
858
690
|
readonly name: "InvalidConfigurationException";
|
|
859
691
|
readonly $fault: "client";
|
|
@@ -885,12 +717,6 @@ export interface RegisterDeviceRequest {
|
|
|
885
717
|
*/
|
|
886
718
|
Token: string | undefined;
|
|
887
719
|
}
|
|
888
|
-
export declare namespace RegisterDeviceRequest {
|
|
889
|
-
/**
|
|
890
|
-
* @internal
|
|
891
|
-
*/
|
|
892
|
-
const filterSensitiveLog: (obj: RegisterDeviceRequest) => any;
|
|
893
|
-
}
|
|
894
720
|
/**
|
|
895
721
|
* <p>Response to a RegisterDevice request.</p>
|
|
896
722
|
*/
|
|
@@ -900,12 +726,6 @@ export interface RegisterDeviceResponse {
|
|
|
900
726
|
*/
|
|
901
727
|
DeviceId?: string;
|
|
902
728
|
}
|
|
903
|
-
export declare namespace RegisterDeviceResponse {
|
|
904
|
-
/**
|
|
905
|
-
* @internal
|
|
906
|
-
*/
|
|
907
|
-
const filterSensitiveLog: (obj: RegisterDeviceResponse) => any;
|
|
908
|
-
}
|
|
909
729
|
/**
|
|
910
730
|
* <p>A request to configure Cognito Events"</p>"
|
|
911
731
|
*/
|
|
@@ -919,12 +739,6 @@ export interface SetCognitoEventsRequest {
|
|
|
919
739
|
*/
|
|
920
740
|
Events: Record<string, string> | undefined;
|
|
921
741
|
}
|
|
922
|
-
export declare namespace SetCognitoEventsRequest {
|
|
923
|
-
/**
|
|
924
|
-
* @internal
|
|
925
|
-
*/
|
|
926
|
-
const filterSensitiveLog: (obj: SetCognitoEventsRequest) => any;
|
|
927
|
-
}
|
|
928
742
|
/**
|
|
929
743
|
* <p>Thrown if there are parallel requests to modify a resource.</p>
|
|
930
744
|
*/
|
|
@@ -954,12 +768,6 @@ export interface SetIdentityPoolConfigurationRequest {
|
|
|
954
768
|
*/
|
|
955
769
|
CognitoStreams?: CognitoStreams;
|
|
956
770
|
}
|
|
957
|
-
export declare namespace SetIdentityPoolConfigurationRequest {
|
|
958
|
-
/**
|
|
959
|
-
* @internal
|
|
960
|
-
*/
|
|
961
|
-
const filterSensitiveLog: (obj: SetIdentityPoolConfigurationRequest) => any;
|
|
962
|
-
}
|
|
963
771
|
/**
|
|
964
772
|
* <p>The output for the SetIdentityPoolConfiguration operation</p>
|
|
965
773
|
*/
|
|
@@ -978,12 +786,6 @@ export interface SetIdentityPoolConfigurationResponse {
|
|
|
978
786
|
*/
|
|
979
787
|
CognitoStreams?: CognitoStreams;
|
|
980
788
|
}
|
|
981
|
-
export declare namespace SetIdentityPoolConfigurationResponse {
|
|
982
|
-
/**
|
|
983
|
-
* @internal
|
|
984
|
-
*/
|
|
985
|
-
const filterSensitiveLog: (obj: SetIdentityPoolConfigurationResponse) => any;
|
|
986
|
-
}
|
|
987
789
|
/**
|
|
988
790
|
* <p>A request to SubscribeToDatasetRequest.</p>
|
|
989
791
|
*/
|
|
@@ -1006,23 +808,11 @@ export interface SubscribeToDatasetRequest {
|
|
|
1006
808
|
*/
|
|
1007
809
|
DeviceId: string | undefined;
|
|
1008
810
|
}
|
|
1009
|
-
export declare namespace SubscribeToDatasetRequest {
|
|
1010
|
-
/**
|
|
1011
|
-
* @internal
|
|
1012
|
-
*/
|
|
1013
|
-
const filterSensitiveLog: (obj: SubscribeToDatasetRequest) => any;
|
|
1014
|
-
}
|
|
1015
811
|
/**
|
|
1016
812
|
* <p>Response to a SubscribeToDataset request.</p>
|
|
1017
813
|
*/
|
|
1018
814
|
export interface SubscribeToDatasetResponse {
|
|
1019
815
|
}
|
|
1020
|
-
export declare namespace SubscribeToDatasetResponse {
|
|
1021
|
-
/**
|
|
1022
|
-
* @internal
|
|
1023
|
-
*/
|
|
1024
|
-
const filterSensitiveLog: (obj: SubscribeToDatasetResponse) => any;
|
|
1025
|
-
}
|
|
1026
816
|
/**
|
|
1027
817
|
* <p>A request to UnsubscribeFromDataset.</p>
|
|
1028
818
|
*/
|
|
@@ -1045,23 +835,11 @@ export interface UnsubscribeFromDatasetRequest {
|
|
|
1045
835
|
*/
|
|
1046
836
|
DeviceId: string | undefined;
|
|
1047
837
|
}
|
|
1048
|
-
export declare namespace UnsubscribeFromDatasetRequest {
|
|
1049
|
-
/**
|
|
1050
|
-
* @internal
|
|
1051
|
-
*/
|
|
1052
|
-
const filterSensitiveLog: (obj: UnsubscribeFromDatasetRequest) => any;
|
|
1053
|
-
}
|
|
1054
838
|
/**
|
|
1055
839
|
* <p>Response to an UnsubscribeFromDataset request.</p>
|
|
1056
840
|
*/
|
|
1057
841
|
export interface UnsubscribeFromDatasetResponse {
|
|
1058
842
|
}
|
|
1059
|
-
export declare namespace UnsubscribeFromDatasetResponse {
|
|
1060
|
-
/**
|
|
1061
|
-
* @internal
|
|
1062
|
-
*/
|
|
1063
|
-
const filterSensitiveLog: (obj: UnsubscribeFromDatasetResponse) => any;
|
|
1064
|
-
}
|
|
1065
843
|
/**
|
|
1066
844
|
* <p>The AWS Lambda function returned invalid output or an exception.</p>
|
|
1067
845
|
*/
|
|
@@ -1125,12 +903,6 @@ export interface RecordPatch {
|
|
|
1125
903
|
*/
|
|
1126
904
|
DeviceLastModifiedDate?: Date;
|
|
1127
905
|
}
|
|
1128
|
-
export declare namespace RecordPatch {
|
|
1129
|
-
/**
|
|
1130
|
-
* @internal
|
|
1131
|
-
*/
|
|
1132
|
-
const filterSensitiveLog: (obj: RecordPatch) => any;
|
|
1133
|
-
}
|
|
1134
906
|
/**
|
|
1135
907
|
* A request to post updates to records or add and
|
|
1136
908
|
* delete records for a dataset and user.
|
|
@@ -1175,12 +947,6 @@ export interface UpdateRecordsRequest {
|
|
|
1175
947
|
*/
|
|
1176
948
|
ClientContext?: string;
|
|
1177
949
|
}
|
|
1178
|
-
export declare namespace UpdateRecordsRequest {
|
|
1179
|
-
/**
|
|
1180
|
-
* @internal
|
|
1181
|
-
*/
|
|
1182
|
-
const filterSensitiveLog: (obj: UpdateRecordsRequest) => any;
|
|
1183
|
-
}
|
|
1184
950
|
/**
|
|
1185
951
|
* Returned for a successful
|
|
1186
952
|
* UpdateRecordsRequest.
|
|
@@ -1192,9 +958,163 @@ export interface UpdateRecordsResponse {
|
|
|
1192
958
|
*/
|
|
1193
959
|
Records?: _Record[];
|
|
1194
960
|
}
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
961
|
+
/**
|
|
962
|
+
* @internal
|
|
963
|
+
*/
|
|
964
|
+
export declare const BulkPublishRequestFilterSensitiveLog: (obj: BulkPublishRequest) => any;
|
|
965
|
+
/**
|
|
966
|
+
* @internal
|
|
967
|
+
*/
|
|
968
|
+
export declare const BulkPublishResponseFilterSensitiveLog: (obj: BulkPublishResponse) => any;
|
|
969
|
+
/**
|
|
970
|
+
* @internal
|
|
971
|
+
*/
|
|
972
|
+
export declare const DeleteDatasetRequestFilterSensitiveLog: (obj: DeleteDatasetRequest) => any;
|
|
973
|
+
/**
|
|
974
|
+
* @internal
|
|
975
|
+
*/
|
|
976
|
+
export declare const DatasetFilterSensitiveLog: (obj: Dataset) => any;
|
|
977
|
+
/**
|
|
978
|
+
* @internal
|
|
979
|
+
*/
|
|
980
|
+
export declare const DeleteDatasetResponseFilterSensitiveLog: (obj: DeleteDatasetResponse) => any;
|
|
981
|
+
/**
|
|
982
|
+
* @internal
|
|
983
|
+
*/
|
|
984
|
+
export declare const DescribeDatasetRequestFilterSensitiveLog: (obj: DescribeDatasetRequest) => any;
|
|
985
|
+
/**
|
|
986
|
+
* @internal
|
|
987
|
+
*/
|
|
988
|
+
export declare const DescribeDatasetResponseFilterSensitiveLog: (obj: DescribeDatasetResponse) => any;
|
|
989
|
+
/**
|
|
990
|
+
* @internal
|
|
991
|
+
*/
|
|
992
|
+
export declare const DescribeIdentityPoolUsageRequestFilterSensitiveLog: (obj: DescribeIdentityPoolUsageRequest) => any;
|
|
993
|
+
/**
|
|
994
|
+
* @internal
|
|
995
|
+
*/
|
|
996
|
+
export declare const IdentityPoolUsageFilterSensitiveLog: (obj: IdentityPoolUsage) => any;
|
|
997
|
+
/**
|
|
998
|
+
* @internal
|
|
999
|
+
*/
|
|
1000
|
+
export declare const DescribeIdentityPoolUsageResponseFilterSensitiveLog: (obj: DescribeIdentityPoolUsageResponse) => any;
|
|
1001
|
+
/**
|
|
1002
|
+
* @internal
|
|
1003
|
+
*/
|
|
1004
|
+
export declare const DescribeIdentityUsageRequestFilterSensitiveLog: (obj: DescribeIdentityUsageRequest) => any;
|
|
1005
|
+
/**
|
|
1006
|
+
* @internal
|
|
1007
|
+
*/
|
|
1008
|
+
export declare const IdentityUsageFilterSensitiveLog: (obj: IdentityUsage) => any;
|
|
1009
|
+
/**
|
|
1010
|
+
* @internal
|
|
1011
|
+
*/
|
|
1012
|
+
export declare const DescribeIdentityUsageResponseFilterSensitiveLog: (obj: DescribeIdentityUsageResponse) => any;
|
|
1013
|
+
/**
|
|
1014
|
+
* @internal
|
|
1015
|
+
*/
|
|
1016
|
+
export declare const GetBulkPublishDetailsRequestFilterSensitiveLog: (obj: GetBulkPublishDetailsRequest) => any;
|
|
1017
|
+
/**
|
|
1018
|
+
* @internal
|
|
1019
|
+
*/
|
|
1020
|
+
export declare const GetBulkPublishDetailsResponseFilterSensitiveLog: (obj: GetBulkPublishDetailsResponse) => any;
|
|
1021
|
+
/**
|
|
1022
|
+
* @internal
|
|
1023
|
+
*/
|
|
1024
|
+
export declare const GetCognitoEventsRequestFilterSensitiveLog: (obj: GetCognitoEventsRequest) => any;
|
|
1025
|
+
/**
|
|
1026
|
+
* @internal
|
|
1027
|
+
*/
|
|
1028
|
+
export declare const GetCognitoEventsResponseFilterSensitiveLog: (obj: GetCognitoEventsResponse) => any;
|
|
1029
|
+
/**
|
|
1030
|
+
* @internal
|
|
1031
|
+
*/
|
|
1032
|
+
export declare const GetIdentityPoolConfigurationRequestFilterSensitiveLog: (obj: GetIdentityPoolConfigurationRequest) => any;
|
|
1033
|
+
/**
|
|
1034
|
+
* @internal
|
|
1035
|
+
*/
|
|
1036
|
+
export declare const CognitoStreamsFilterSensitiveLog: (obj: CognitoStreams) => any;
|
|
1037
|
+
/**
|
|
1038
|
+
* @internal
|
|
1039
|
+
*/
|
|
1040
|
+
export declare const PushSyncFilterSensitiveLog: (obj: PushSync) => any;
|
|
1041
|
+
/**
|
|
1042
|
+
* @internal
|
|
1043
|
+
*/
|
|
1044
|
+
export declare const GetIdentityPoolConfigurationResponseFilterSensitiveLog: (obj: GetIdentityPoolConfigurationResponse) => any;
|
|
1045
|
+
/**
|
|
1046
|
+
* @internal
|
|
1047
|
+
*/
|
|
1048
|
+
export declare const ListDatasetsRequestFilterSensitiveLog: (obj: ListDatasetsRequest) => any;
|
|
1049
|
+
/**
|
|
1050
|
+
* @internal
|
|
1051
|
+
*/
|
|
1052
|
+
export declare const ListDatasetsResponseFilterSensitiveLog: (obj: ListDatasetsResponse) => any;
|
|
1053
|
+
/**
|
|
1054
|
+
* @internal
|
|
1055
|
+
*/
|
|
1056
|
+
export declare const ListIdentityPoolUsageRequestFilterSensitiveLog: (obj: ListIdentityPoolUsageRequest) => any;
|
|
1057
|
+
/**
|
|
1058
|
+
* @internal
|
|
1059
|
+
*/
|
|
1060
|
+
export declare const ListIdentityPoolUsageResponseFilterSensitiveLog: (obj: ListIdentityPoolUsageResponse) => any;
|
|
1061
|
+
/**
|
|
1062
|
+
* @internal
|
|
1063
|
+
*/
|
|
1064
|
+
export declare const ListRecordsRequestFilterSensitiveLog: (obj: ListRecordsRequest) => any;
|
|
1065
|
+
/**
|
|
1066
|
+
* @internal
|
|
1067
|
+
*/
|
|
1068
|
+
export declare const _RecordFilterSensitiveLog: (obj: _Record) => any;
|
|
1069
|
+
/**
|
|
1070
|
+
* @internal
|
|
1071
|
+
*/
|
|
1072
|
+
export declare const ListRecordsResponseFilterSensitiveLog: (obj: ListRecordsResponse) => any;
|
|
1073
|
+
/**
|
|
1074
|
+
* @internal
|
|
1075
|
+
*/
|
|
1076
|
+
export declare const RegisterDeviceRequestFilterSensitiveLog: (obj: RegisterDeviceRequest) => any;
|
|
1077
|
+
/**
|
|
1078
|
+
* @internal
|
|
1079
|
+
*/
|
|
1080
|
+
export declare const RegisterDeviceResponseFilterSensitiveLog: (obj: RegisterDeviceResponse) => any;
|
|
1081
|
+
/**
|
|
1082
|
+
* @internal
|
|
1083
|
+
*/
|
|
1084
|
+
export declare const SetCognitoEventsRequestFilterSensitiveLog: (obj: SetCognitoEventsRequest) => any;
|
|
1085
|
+
/**
|
|
1086
|
+
* @internal
|
|
1087
|
+
*/
|
|
1088
|
+
export declare const SetIdentityPoolConfigurationRequestFilterSensitiveLog: (obj: SetIdentityPoolConfigurationRequest) => any;
|
|
1089
|
+
/**
|
|
1090
|
+
* @internal
|
|
1091
|
+
*/
|
|
1092
|
+
export declare const SetIdentityPoolConfigurationResponseFilterSensitiveLog: (obj: SetIdentityPoolConfigurationResponse) => any;
|
|
1093
|
+
/**
|
|
1094
|
+
* @internal
|
|
1095
|
+
*/
|
|
1096
|
+
export declare const SubscribeToDatasetRequestFilterSensitiveLog: (obj: SubscribeToDatasetRequest) => any;
|
|
1097
|
+
/**
|
|
1098
|
+
* @internal
|
|
1099
|
+
*/
|
|
1100
|
+
export declare const SubscribeToDatasetResponseFilterSensitiveLog: (obj: SubscribeToDatasetResponse) => any;
|
|
1101
|
+
/**
|
|
1102
|
+
* @internal
|
|
1103
|
+
*/
|
|
1104
|
+
export declare const UnsubscribeFromDatasetRequestFilterSensitiveLog: (obj: UnsubscribeFromDatasetRequest) => any;
|
|
1105
|
+
/**
|
|
1106
|
+
* @internal
|
|
1107
|
+
*/
|
|
1108
|
+
export declare const UnsubscribeFromDatasetResponseFilterSensitiveLog: (obj: UnsubscribeFromDatasetResponse) => any;
|
|
1109
|
+
/**
|
|
1110
|
+
* @internal
|
|
1111
|
+
*/
|
|
1112
|
+
export declare const RecordPatchFilterSensitiveLog: (obj: RecordPatch) => any;
|
|
1113
|
+
/**
|
|
1114
|
+
* @internal
|
|
1115
|
+
*/
|
|
1116
|
+
export declare const UpdateRecordsRequestFilterSensitiveLog: (obj: UpdateRecordsRequest) => any;
|
|
1117
|
+
/**
|
|
1118
|
+
* @internal
|
|
1119
|
+
*/
|
|
1120
|
+
export declare const UpdateRecordsResponseFilterSensitiveLog: (obj: UpdateRecordsResponse) => any;
|