aws-sdk 2.1395.0 → 2.1397.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 +21 -1
- package/README.md +1 -1
- package/apis/amplifyuibuilder-2021-08-11.min.json +362 -0
- package/apis/amplifyuibuilder-2021-08-11.paginators.json +6 -0
- package/apis/cloudtrail-2013-11-01.min.json +33 -33
- package/apis/codeguru-security-2018-05-10.examples.json +5 -0
- package/apis/codeguru-security-2018-05-10.min.json +703 -0
- package/apis/codeguru-security-2018-05-10.paginators.json +22 -0
- package/apis/drs-2020-02-26.min.json +392 -97
- package/apis/drs-2020-02-26.paginators.json +6 -0
- package/apis/ec2-2016-11-15.min.json +1178 -1013
- package/apis/ec2-2016-11-15.paginators.json +6 -0
- package/apis/fsx-2018-03-01.min.json +82 -75
- package/apis/lightsail-2016-11-28.min.json +4 -2
- package/apis/metadata.json +7 -0
- package/apis/opensearch-2021-01-01.min.json +86 -77
- package/apis/rekognition-2016-06-27.examples.json +286 -109
- package/apis/rekognition-2016-06-27.min.json +530 -217
- package/apis/rekognition-2016-06-27.paginators.json +6 -0
- package/apis/s3-2006-03-01.examples.json +121 -121
- package/apis/securityhub-2018-10-26.examples.json +276 -0
- package/apis/securityhub-2018-10-26.min.json +957 -559
- package/apis/verifiedpermissions-2021-12-01.examples.json +5 -0
- package/apis/verifiedpermissions-2021-12-01.min.json +1215 -0
- package/apis/verifiedpermissions-2021-12-01.paginators.json +28 -0
- package/apis/verifiedpermissions-2021-12-01.waiters2.json +5 -0
- package/apis/wafv2-2019-07-29.min.json +241 -169
- package/apis/wellarchitected-2020-03-31.min.json +655 -75
- package/apis/wellarchitected-2020-03-31.paginators.json +15 -0
- package/clients/all.d.ts +2 -0
- package/clients/all.js +3 -1
- package/clients/amplifyuibuilder.d.ts +358 -2
- package/clients/cloudtrail.d.ts +28 -13
- package/clients/codegurusecurity.d.ts +761 -0
- package/clients/codegurusecurity.js +18 -0
- package/clients/drs.d.ts +354 -3
- package/clients/dynamodb.d.ts +2 -2
- package/clients/dynamodbstreams.d.ts +4 -4
- package/clients/ec2.d.ts +225 -48
- package/clients/fsx.d.ts +44 -24
- package/clients/imagebuilder.d.ts +1 -1
- package/clients/lightsail.d.ts +12 -4
- package/clients/opensearch.d.ts +16 -1
- package/clients/rekognition.d.ts +407 -0
- package/clients/s3.d.ts +1 -1
- package/clients/sagemaker.d.ts +13 -13
- package/clients/securityhub.d.ts +470 -0
- package/clients/simspaceweaver.d.ts +2 -2
- package/clients/verifiedpermissions.d.ts +1392 -0
- package/clients/verifiedpermissions.js +19 -0
- package/clients/wafv2.d.ts +105 -27
- package/clients/wellarchitected.d.ts +533 -7
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +101 -20
- package/dist/aws-sdk.js +1763 -1266
- package/dist/aws-sdk.min.js +80 -80
- package/lib/config_service_placeholders.d.ts +4 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
@@ -12,6 +12,61 @@
|
|
12
12
|
"uid": "rekognition-2016-06-27"
|
13
13
|
},
|
14
14
|
"operations": {
|
15
|
+
"AssociateFaces": {
|
16
|
+
"input": {
|
17
|
+
"type": "structure",
|
18
|
+
"required": [
|
19
|
+
"CollectionId",
|
20
|
+
"UserId",
|
21
|
+
"FaceIds"
|
22
|
+
],
|
23
|
+
"members": {
|
24
|
+
"CollectionId": {},
|
25
|
+
"UserId": {},
|
26
|
+
"FaceIds": {
|
27
|
+
"shape": "S4"
|
28
|
+
},
|
29
|
+
"UserMatchThreshold": {
|
30
|
+
"type": "float"
|
31
|
+
},
|
32
|
+
"ClientRequestToken": {
|
33
|
+
"idempotencyToken": true
|
34
|
+
}
|
35
|
+
}
|
36
|
+
},
|
37
|
+
"output": {
|
38
|
+
"type": "structure",
|
39
|
+
"members": {
|
40
|
+
"AssociatedFaces": {
|
41
|
+
"type": "list",
|
42
|
+
"member": {
|
43
|
+
"type": "structure",
|
44
|
+
"members": {
|
45
|
+
"FaceId": {}
|
46
|
+
}
|
47
|
+
}
|
48
|
+
},
|
49
|
+
"UnsuccessfulFaceAssociations": {
|
50
|
+
"type": "list",
|
51
|
+
"member": {
|
52
|
+
"type": "structure",
|
53
|
+
"members": {
|
54
|
+
"FaceId": {},
|
55
|
+
"UserId": {},
|
56
|
+
"Confidence": {
|
57
|
+
"type": "float"
|
58
|
+
},
|
59
|
+
"Reasons": {
|
60
|
+
"type": "list",
|
61
|
+
"member": {}
|
62
|
+
}
|
63
|
+
}
|
64
|
+
}
|
65
|
+
},
|
66
|
+
"UserStatus": {}
|
67
|
+
}
|
68
|
+
}
|
69
|
+
},
|
15
70
|
"CompareFaces": {
|
16
71
|
"input": {
|
17
72
|
"type": "structure",
|
@@ -21,10 +76,10 @@
|
|
21
76
|
],
|
22
77
|
"members": {
|
23
78
|
"SourceImage": {
|
24
|
-
"shape": "
|
79
|
+
"shape": "Sh"
|
25
80
|
},
|
26
81
|
"TargetImage": {
|
27
|
-
"shape": "
|
82
|
+
"shape": "Sh"
|
28
83
|
},
|
29
84
|
"SimilarityThreshold": {
|
30
85
|
"type": "float"
|
@@ -39,7 +94,7 @@
|
|
39
94
|
"type": "structure",
|
40
95
|
"members": {
|
41
96
|
"BoundingBox": {
|
42
|
-
"shape": "
|
97
|
+
"shape": "Sq"
|
43
98
|
},
|
44
99
|
"Confidence": {
|
45
100
|
"type": "float"
|
@@ -55,7 +110,7 @@
|
|
55
110
|
"type": "float"
|
56
111
|
},
|
57
112
|
"Face": {
|
58
|
-
"shape": "
|
113
|
+
"shape": "Su"
|
59
114
|
}
|
60
115
|
}
|
61
116
|
}
|
@@ -63,7 +118,7 @@
|
|
63
118
|
"UnmatchedFaces": {
|
64
119
|
"type": "list",
|
65
120
|
"member": {
|
66
|
-
"shape": "
|
121
|
+
"shape": "Su"
|
67
122
|
}
|
68
123
|
},
|
69
124
|
"SourceImageOrientationCorrection": {},
|
@@ -87,10 +142,10 @@
|
|
87
142
|
"DestinationProjectArn": {},
|
88
143
|
"VersionName": {},
|
89
144
|
"OutputConfig": {
|
90
|
-
"shape": "
|
145
|
+
"shape": "S1c"
|
91
146
|
},
|
92
147
|
"Tags": {
|
93
|
-
"shape": "
|
148
|
+
"shape": "S1e"
|
94
149
|
},
|
95
150
|
"KmsKeyId": {}
|
96
151
|
}
|
@@ -111,7 +166,7 @@
|
|
111
166
|
"members": {
|
112
167
|
"CollectionId": {},
|
113
168
|
"Tags": {
|
114
|
-
"shape": "
|
169
|
+
"shape": "S1e"
|
115
170
|
}
|
116
171
|
}
|
117
172
|
},
|
@@ -138,7 +193,7 @@
|
|
138
193
|
"type": "structure",
|
139
194
|
"members": {
|
140
195
|
"GroundTruthManifest": {
|
141
|
-
"shape": "
|
196
|
+
"shape": "S1p"
|
142
197
|
},
|
143
198
|
"DatasetArn": {}
|
144
199
|
}
|
@@ -220,16 +275,16 @@
|
|
220
275
|
"ProjectArn": {},
|
221
276
|
"VersionName": {},
|
222
277
|
"OutputConfig": {
|
223
|
-
"shape": "
|
278
|
+
"shape": "S1c"
|
224
279
|
},
|
225
280
|
"TrainingData": {
|
226
|
-
"shape": "
|
281
|
+
"shape": "S24"
|
227
282
|
},
|
228
283
|
"TestingData": {
|
229
|
-
"shape": "
|
284
|
+
"shape": "S27"
|
230
285
|
},
|
231
286
|
"Tags": {
|
232
|
-
"shape": "
|
287
|
+
"shape": "S1e"
|
233
288
|
},
|
234
289
|
"KmsKeyId": {}
|
235
290
|
}
|
@@ -253,28 +308,28 @@
|
|
253
308
|
],
|
254
309
|
"members": {
|
255
310
|
"Input": {
|
256
|
-
"shape": "
|
311
|
+
"shape": "S2a"
|
257
312
|
},
|
258
313
|
"Output": {
|
259
|
-
"shape": "
|
314
|
+
"shape": "S2d"
|
260
315
|
},
|
261
316
|
"Name": {},
|
262
317
|
"Settings": {
|
263
|
-
"shape": "
|
318
|
+
"shape": "S2i"
|
264
319
|
},
|
265
320
|
"RoleArn": {},
|
266
321
|
"Tags": {
|
267
|
-
"shape": "
|
322
|
+
"shape": "S1e"
|
268
323
|
},
|
269
324
|
"NotificationChannel": {
|
270
|
-
"shape": "
|
325
|
+
"shape": "S2o"
|
271
326
|
},
|
272
327
|
"KmsKeyId": {},
|
273
328
|
"RegionsOfInterest": {
|
274
|
-
"shape": "
|
329
|
+
"shape": "S2q"
|
275
330
|
},
|
276
331
|
"DataSharingPreference": {
|
277
|
-
"shape": "
|
332
|
+
"shape": "S2u"
|
278
333
|
}
|
279
334
|
}
|
280
335
|
},
|
@@ -285,6 +340,26 @@
|
|
285
340
|
}
|
286
341
|
}
|
287
342
|
},
|
343
|
+
"CreateUser": {
|
344
|
+
"input": {
|
345
|
+
"type": "structure",
|
346
|
+
"required": [
|
347
|
+
"CollectionId",
|
348
|
+
"UserId"
|
349
|
+
],
|
350
|
+
"members": {
|
351
|
+
"CollectionId": {},
|
352
|
+
"UserId": {},
|
353
|
+
"ClientRequestToken": {
|
354
|
+
"idempotencyToken": true
|
355
|
+
}
|
356
|
+
}
|
357
|
+
},
|
358
|
+
"output": {
|
359
|
+
"type": "structure",
|
360
|
+
"members": {}
|
361
|
+
}
|
362
|
+
},
|
288
363
|
"DeleteCollection": {
|
289
364
|
"input": {
|
290
365
|
"type": "structure",
|
@@ -329,7 +404,7 @@
|
|
329
404
|
"members": {
|
330
405
|
"CollectionId": {},
|
331
406
|
"FaceIds": {
|
332
|
-
"shape": "
|
407
|
+
"shape": "S34"
|
333
408
|
}
|
334
409
|
}
|
335
410
|
},
|
@@ -337,7 +412,21 @@
|
|
337
412
|
"type": "structure",
|
338
413
|
"members": {
|
339
414
|
"DeletedFaces": {
|
340
|
-
"shape": "
|
415
|
+
"shape": "S34"
|
416
|
+
},
|
417
|
+
"UnsuccessfulFaceDeletions": {
|
418
|
+
"type": "list",
|
419
|
+
"member": {
|
420
|
+
"type": "structure",
|
421
|
+
"members": {
|
422
|
+
"FaceId": {},
|
423
|
+
"UserId": {},
|
424
|
+
"Reasons": {
|
425
|
+
"type": "list",
|
426
|
+
"member": {}
|
427
|
+
}
|
428
|
+
}
|
429
|
+
}
|
341
430
|
}
|
342
431
|
}
|
343
432
|
}
|
@@ -409,6 +498,26 @@
|
|
409
498
|
"members": {}
|
410
499
|
}
|
411
500
|
},
|
501
|
+
"DeleteUser": {
|
502
|
+
"input": {
|
503
|
+
"type": "structure",
|
504
|
+
"required": [
|
505
|
+
"CollectionId",
|
506
|
+
"UserId"
|
507
|
+
],
|
508
|
+
"members": {
|
509
|
+
"CollectionId": {},
|
510
|
+
"UserId": {},
|
511
|
+
"ClientRequestToken": {
|
512
|
+
"idempotencyToken": true
|
513
|
+
}
|
514
|
+
}
|
515
|
+
},
|
516
|
+
"output": {
|
517
|
+
"type": "structure",
|
518
|
+
"members": {}
|
519
|
+
}
|
520
|
+
},
|
412
521
|
"DescribeCollection": {
|
413
522
|
"input": {
|
414
523
|
"type": "structure",
|
@@ -429,6 +538,9 @@
|
|
429
538
|
"CollectionARN": {},
|
430
539
|
"CreationTimestamp": {
|
431
540
|
"type": "timestamp"
|
541
|
+
},
|
542
|
+
"UserCount": {
|
543
|
+
"type": "long"
|
432
544
|
}
|
433
545
|
}
|
434
546
|
}
|
@@ -522,19 +634,19 @@
|
|
522
634
|
"type": "timestamp"
|
523
635
|
},
|
524
636
|
"OutputConfig": {
|
525
|
-
"shape": "
|
637
|
+
"shape": "S1c"
|
526
638
|
},
|
527
639
|
"TrainingDataResult": {
|
528
640
|
"type": "structure",
|
529
641
|
"members": {
|
530
642
|
"Input": {
|
531
|
-
"shape": "
|
643
|
+
"shape": "S24"
|
532
644
|
},
|
533
645
|
"Output": {
|
534
|
-
"shape": "
|
646
|
+
"shape": "S24"
|
535
647
|
},
|
536
648
|
"Validation": {
|
537
|
-
"shape": "
|
649
|
+
"shape": "S48"
|
538
650
|
}
|
539
651
|
}
|
540
652
|
},
|
@@ -542,13 +654,13 @@
|
|
542
654
|
"type": "structure",
|
543
655
|
"members": {
|
544
656
|
"Input": {
|
545
|
-
"shape": "
|
657
|
+
"shape": "S27"
|
546
658
|
},
|
547
659
|
"Output": {
|
548
|
-
"shape": "
|
660
|
+
"shape": "S27"
|
549
661
|
},
|
550
662
|
"Validation": {
|
551
|
-
"shape": "
|
663
|
+
"shape": "S48"
|
552
664
|
}
|
553
665
|
}
|
554
666
|
},
|
@@ -562,14 +674,14 @@
|
|
562
674
|
"type": "structure",
|
563
675
|
"members": {
|
564
676
|
"S3Object": {
|
565
|
-
"shape": "
|
677
|
+
"shape": "Sj"
|
566
678
|
}
|
567
679
|
}
|
568
680
|
}
|
569
681
|
}
|
570
682
|
},
|
571
683
|
"ManifestSummary": {
|
572
|
-
"shape": "
|
684
|
+
"shape": "S1p"
|
573
685
|
},
|
574
686
|
"KmsKeyId": {},
|
575
687
|
"MaxInferenceUnits": {
|
@@ -657,24 +769,24 @@
|
|
657
769
|
"type": "timestamp"
|
658
770
|
},
|
659
771
|
"Input": {
|
660
|
-
"shape": "
|
772
|
+
"shape": "S2a"
|
661
773
|
},
|
662
774
|
"Output": {
|
663
|
-
"shape": "
|
775
|
+
"shape": "S2d"
|
664
776
|
},
|
665
777
|
"RoleArn": {},
|
666
778
|
"Settings": {
|
667
|
-
"shape": "
|
779
|
+
"shape": "S2i"
|
668
780
|
},
|
669
781
|
"NotificationChannel": {
|
670
|
-
"shape": "
|
782
|
+
"shape": "S2o"
|
671
783
|
},
|
672
784
|
"KmsKeyId": {},
|
673
785
|
"RegionsOfInterest": {
|
674
|
-
"shape": "
|
786
|
+
"shape": "S2q"
|
675
787
|
},
|
676
788
|
"DataSharingPreference": {
|
677
|
-
"shape": "
|
789
|
+
"shape": "S2u"
|
678
790
|
}
|
679
791
|
}
|
680
792
|
}
|
@@ -689,7 +801,7 @@
|
|
689
801
|
"members": {
|
690
802
|
"ProjectVersionArn": {},
|
691
803
|
"Image": {
|
692
|
-
"shape": "
|
804
|
+
"shape": "Sh"
|
693
805
|
},
|
694
806
|
"MaxResults": {
|
695
807
|
"type": "integer"
|
@@ -712,7 +824,7 @@
|
|
712
824
|
"type": "float"
|
713
825
|
},
|
714
826
|
"Geometry": {
|
715
|
-
"shape": "
|
827
|
+
"shape": "S4r"
|
716
828
|
}
|
717
829
|
}
|
718
830
|
}
|
@@ -728,10 +840,10 @@
|
|
728
840
|
],
|
729
841
|
"members": {
|
730
842
|
"Image": {
|
731
|
-
"shape": "
|
843
|
+
"shape": "Sh"
|
732
844
|
},
|
733
845
|
"Attributes": {
|
734
|
-
"shape": "
|
846
|
+
"shape": "S4t"
|
735
847
|
}
|
736
848
|
}
|
737
849
|
},
|
@@ -741,7 +853,7 @@
|
|
741
853
|
"FaceDetails": {
|
742
854
|
"type": "list",
|
743
855
|
"member": {
|
744
|
-
"shape": "
|
856
|
+
"shape": "S4x"
|
745
857
|
}
|
746
858
|
},
|
747
859
|
"OrientationCorrection": {}
|
@@ -756,7 +868,7 @@
|
|
756
868
|
],
|
757
869
|
"members": {
|
758
870
|
"Image": {
|
759
|
-
"shape": "
|
871
|
+
"shape": "Sh"
|
760
872
|
},
|
761
873
|
"MaxLabels": {
|
762
874
|
"type": "integer"
|
@@ -772,7 +884,7 @@
|
|
772
884
|
"type": "structure",
|
773
885
|
"members": {
|
774
886
|
"GeneralLabels": {
|
775
|
-
"shape": "
|
887
|
+
"shape": "S5d"
|
776
888
|
},
|
777
889
|
"ImageProperties": {
|
778
890
|
"type": "structure",
|
@@ -792,7 +904,7 @@
|
|
792
904
|
"Labels": {
|
793
905
|
"type": "list",
|
794
906
|
"member": {
|
795
|
-
"shape": "
|
907
|
+
"shape": "S5k"
|
796
908
|
}
|
797
909
|
},
|
798
910
|
"OrientationCorrection": {},
|
@@ -801,19 +913,19 @@
|
|
801
913
|
"type": "structure",
|
802
914
|
"members": {
|
803
915
|
"Quality": {
|
804
|
-
"shape": "
|
916
|
+
"shape": "S5w"
|
805
917
|
},
|
806
918
|
"DominantColors": {
|
807
|
-
"shape": "
|
919
|
+
"shape": "S5n"
|
808
920
|
},
|
809
921
|
"Foreground": {
|
810
922
|
"type": "structure",
|
811
923
|
"members": {
|
812
924
|
"Quality": {
|
813
|
-
"shape": "
|
925
|
+
"shape": "S5w"
|
814
926
|
},
|
815
927
|
"DominantColors": {
|
816
|
-
"shape": "
|
928
|
+
"shape": "S5n"
|
817
929
|
}
|
818
930
|
}
|
819
931
|
},
|
@@ -821,10 +933,10 @@
|
|
821
933
|
"type": "structure",
|
822
934
|
"members": {
|
823
935
|
"Quality": {
|
824
|
-
"shape": "
|
936
|
+
"shape": "S5w"
|
825
937
|
},
|
826
938
|
"DominantColors": {
|
827
|
-
"shape": "
|
939
|
+
"shape": "S5n"
|
828
940
|
}
|
829
941
|
}
|
830
942
|
}
|
@@ -841,7 +953,7 @@
|
|
841
953
|
],
|
842
954
|
"members": {
|
843
955
|
"Image": {
|
844
|
-
"shape": "
|
956
|
+
"shape": "Sh"
|
845
957
|
},
|
846
958
|
"MinConfidence": {
|
847
959
|
"type": "float"
|
@@ -874,7 +986,7 @@
|
|
874
986
|
"ModerationLabels": {
|
875
987
|
"type": "list",
|
876
988
|
"member": {
|
877
|
-
"shape": "
|
989
|
+
"shape": "S68"
|
878
990
|
}
|
879
991
|
},
|
880
992
|
"ModerationModelVersion": {},
|
@@ -902,7 +1014,7 @@
|
|
902
1014
|
],
|
903
1015
|
"members": {
|
904
1016
|
"Image": {
|
905
|
-
"shape": "
|
1017
|
+
"shape": "Sh"
|
906
1018
|
},
|
907
1019
|
"SummarizationAttributes": {
|
908
1020
|
"type": "structure",
|
@@ -946,7 +1058,7 @@
|
|
946
1058
|
"type": "structure",
|
947
1059
|
"members": {
|
948
1060
|
"BoundingBox": {
|
949
|
-
"shape": "
|
1061
|
+
"shape": "Sq"
|
950
1062
|
},
|
951
1063
|
"Confidence": {
|
952
1064
|
"type": "float"
|
@@ -970,7 +1082,7 @@
|
|
970
1082
|
}
|
971
1083
|
},
|
972
1084
|
"BoundingBox": {
|
973
|
-
"shape": "
|
1085
|
+
"shape": "Sq"
|
974
1086
|
},
|
975
1087
|
"Confidence": {
|
976
1088
|
"type": "float"
|
@@ -985,13 +1097,13 @@
|
|
985
1097
|
"type": "structure",
|
986
1098
|
"members": {
|
987
1099
|
"PersonsWithRequiredEquipment": {
|
988
|
-
"shape": "
|
1100
|
+
"shape": "S6s"
|
989
1101
|
},
|
990
1102
|
"PersonsWithoutRequiredEquipment": {
|
991
|
-
"shape": "
|
1103
|
+
"shape": "S6s"
|
992
1104
|
},
|
993
1105
|
"PersonsIndeterminate": {
|
994
|
-
"shape": "
|
1106
|
+
"shape": "S6s"
|
995
1107
|
}
|
996
1108
|
}
|
997
1109
|
}
|
@@ -1006,16 +1118,16 @@
|
|
1006
1118
|
],
|
1007
1119
|
"members": {
|
1008
1120
|
"Image": {
|
1009
|
-
"shape": "
|
1121
|
+
"shape": "Sh"
|
1010
1122
|
},
|
1011
1123
|
"Filters": {
|
1012
1124
|
"type": "structure",
|
1013
1125
|
"members": {
|
1014
1126
|
"WordFilter": {
|
1015
|
-
"shape": "
|
1127
|
+
"shape": "S6v"
|
1016
1128
|
},
|
1017
1129
|
"RegionsOfInterest": {
|
1018
|
-
"shape": "
|
1130
|
+
"shape": "S2q"
|
1019
1131
|
}
|
1020
1132
|
}
|
1021
1133
|
}
|
@@ -1027,13 +1139,62 @@
|
|
1027
1139
|
"TextDetections": {
|
1028
1140
|
"type": "list",
|
1029
1141
|
"member": {
|
1030
|
-
"shape": "
|
1142
|
+
"shape": "S70"
|
1031
1143
|
}
|
1032
1144
|
},
|
1033
1145
|
"TextModelVersion": {}
|
1034
1146
|
}
|
1035
1147
|
}
|
1036
1148
|
},
|
1149
|
+
"DisassociateFaces": {
|
1150
|
+
"input": {
|
1151
|
+
"type": "structure",
|
1152
|
+
"required": [
|
1153
|
+
"CollectionId",
|
1154
|
+
"UserId",
|
1155
|
+
"FaceIds"
|
1156
|
+
],
|
1157
|
+
"members": {
|
1158
|
+
"CollectionId": {},
|
1159
|
+
"UserId": {},
|
1160
|
+
"ClientRequestToken": {
|
1161
|
+
"idempotencyToken": true
|
1162
|
+
},
|
1163
|
+
"FaceIds": {
|
1164
|
+
"shape": "S4"
|
1165
|
+
}
|
1166
|
+
}
|
1167
|
+
},
|
1168
|
+
"output": {
|
1169
|
+
"type": "structure",
|
1170
|
+
"members": {
|
1171
|
+
"DisassociatedFaces": {
|
1172
|
+
"type": "list",
|
1173
|
+
"member": {
|
1174
|
+
"type": "structure",
|
1175
|
+
"members": {
|
1176
|
+
"FaceId": {}
|
1177
|
+
}
|
1178
|
+
}
|
1179
|
+
},
|
1180
|
+
"UnsuccessfulFaceDisassociations": {
|
1181
|
+
"type": "list",
|
1182
|
+
"member": {
|
1183
|
+
"type": "structure",
|
1184
|
+
"members": {
|
1185
|
+
"FaceId": {},
|
1186
|
+
"UserId": {},
|
1187
|
+
"Reasons": {
|
1188
|
+
"type": "list",
|
1189
|
+
"member": {}
|
1190
|
+
}
|
1191
|
+
}
|
1192
|
+
}
|
1193
|
+
},
|
1194
|
+
"UserStatus": {}
|
1195
|
+
}
|
1196
|
+
}
|
1197
|
+
},
|
1037
1198
|
"DistributeDatasetEntries": {
|
1038
1199
|
"input": {
|
1039
1200
|
"type": "structure",
|
@@ -1074,11 +1235,11 @@
|
|
1074
1235
|
"type": "structure",
|
1075
1236
|
"members": {
|
1076
1237
|
"Urls": {
|
1077
|
-
"shape": "
|
1238
|
+
"shape": "S7h"
|
1078
1239
|
},
|
1079
1240
|
"Name": {},
|
1080
1241
|
"KnownGender": {
|
1081
|
-
"shape": "
|
1242
|
+
"shape": "S7j"
|
1082
1243
|
}
|
1083
1244
|
}
|
1084
1245
|
}
|
@@ -1104,7 +1265,7 @@
|
|
1104
1265
|
"JobStatus": {},
|
1105
1266
|
"StatusMessage": {},
|
1106
1267
|
"VideoMetadata": {
|
1107
|
-
"shape": "
|
1268
|
+
"shape": "S7s"
|
1108
1269
|
},
|
1109
1270
|
"NextToken": {},
|
1110
1271
|
"Celebrities": {
|
@@ -1119,7 +1280,7 @@
|
|
1119
1280
|
"type": "structure",
|
1120
1281
|
"members": {
|
1121
1282
|
"Urls": {
|
1122
|
-
"shape": "
|
1283
|
+
"shape": "S7h"
|
1123
1284
|
},
|
1124
1285
|
"Name": {},
|
1125
1286
|
"Id": {},
|
@@ -1127,13 +1288,13 @@
|
|
1127
1288
|
"type": "float"
|
1128
1289
|
},
|
1129
1290
|
"BoundingBox": {
|
1130
|
-
"shape": "
|
1291
|
+
"shape": "Sq"
|
1131
1292
|
},
|
1132
1293
|
"Face": {
|
1133
|
-
"shape": "
|
1294
|
+
"shape": "S4x"
|
1134
1295
|
},
|
1135
1296
|
"KnownGender": {
|
1136
|
-
"shape": "
|
1297
|
+
"shape": "S7j"
|
1137
1298
|
}
|
1138
1299
|
}
|
1139
1300
|
}
|
@@ -1142,7 +1303,7 @@
|
|
1142
1303
|
},
|
1143
1304
|
"JobId": {},
|
1144
1305
|
"Video": {
|
1145
|
-
"shape": "
|
1306
|
+
"shape": "S7y"
|
1146
1307
|
},
|
1147
1308
|
"JobTag": {}
|
1148
1309
|
}
|
@@ -1170,7 +1331,7 @@
|
|
1170
1331
|
"JobStatus": {},
|
1171
1332
|
"StatusMessage": {},
|
1172
1333
|
"VideoMetadata": {
|
1173
|
-
"shape": "
|
1334
|
+
"shape": "S7s"
|
1174
1335
|
},
|
1175
1336
|
"ModerationLabels": {
|
1176
1337
|
"type": "list",
|
@@ -1181,7 +1342,7 @@
|
|
1181
1342
|
"type": "long"
|
1182
1343
|
},
|
1183
1344
|
"ModerationLabel": {
|
1184
|
-
"shape": "
|
1345
|
+
"shape": "S68"
|
1185
1346
|
},
|
1186
1347
|
"StartTimestampMillis": {
|
1187
1348
|
"type": "long"
|
@@ -1199,7 +1360,7 @@
|
|
1199
1360
|
"ModerationModelVersion": {},
|
1200
1361
|
"JobId": {},
|
1201
1362
|
"Video": {
|
1202
|
-
"shape": "
|
1363
|
+
"shape": "S7y"
|
1203
1364
|
},
|
1204
1365
|
"JobTag": {},
|
1205
1366
|
"GetRequestMetadata": {
|
@@ -1232,7 +1393,7 @@
|
|
1232
1393
|
"JobStatus": {},
|
1233
1394
|
"StatusMessage": {},
|
1234
1395
|
"VideoMetadata": {
|
1235
|
-
"shape": "
|
1396
|
+
"shape": "S7s"
|
1236
1397
|
},
|
1237
1398
|
"NextToken": {},
|
1238
1399
|
"Faces": {
|
@@ -1244,14 +1405,14 @@
|
|
1244
1405
|
"type": "long"
|
1245
1406
|
},
|
1246
1407
|
"Face": {
|
1247
|
-
"shape": "
|
1408
|
+
"shape": "S4x"
|
1248
1409
|
}
|
1249
1410
|
}
|
1250
1411
|
}
|
1251
1412
|
},
|
1252
1413
|
"JobId": {},
|
1253
1414
|
"Video": {
|
1254
|
-
"shape": "
|
1415
|
+
"shape": "S7y"
|
1255
1416
|
},
|
1256
1417
|
"JobTag": {}
|
1257
1418
|
}
|
@@ -1280,12 +1441,12 @@
|
|
1280
1441
|
"type": "float"
|
1281
1442
|
},
|
1282
1443
|
"ReferenceImage": {
|
1283
|
-
"shape": "
|
1444
|
+
"shape": "S8e"
|
1284
1445
|
},
|
1285
1446
|
"AuditImages": {
|
1286
1447
|
"type": "list",
|
1287
1448
|
"member": {
|
1288
|
-
"shape": "
|
1449
|
+
"shape": "S8e"
|
1289
1450
|
}
|
1290
1451
|
}
|
1291
1452
|
}
|
@@ -1313,7 +1474,7 @@
|
|
1313
1474
|
"StatusMessage": {},
|
1314
1475
|
"NextToken": {},
|
1315
1476
|
"VideoMetadata": {
|
1316
|
-
"shape": "
|
1477
|
+
"shape": "S7s"
|
1317
1478
|
},
|
1318
1479
|
"Persons": {
|
1319
1480
|
"type": "list",
|
@@ -1324,17 +1485,17 @@
|
|
1324
1485
|
"type": "long"
|
1325
1486
|
},
|
1326
1487
|
"Person": {
|
1327
|
-
"shape": "
|
1488
|
+
"shape": "S8m"
|
1328
1489
|
},
|
1329
1490
|
"FaceMatches": {
|
1330
|
-
"shape": "
|
1491
|
+
"shape": "S8o"
|
1331
1492
|
}
|
1332
1493
|
}
|
1333
1494
|
}
|
1334
1495
|
},
|
1335
1496
|
"JobId": {},
|
1336
1497
|
"Video": {
|
1337
|
-
"shape": "
|
1498
|
+
"shape": "S7y"
|
1338
1499
|
},
|
1339
1500
|
"JobTag": {}
|
1340
1501
|
}
|
@@ -1362,7 +1523,7 @@
|
|
1362
1523
|
"JobStatus": {},
|
1363
1524
|
"StatusMessage": {},
|
1364
1525
|
"VideoMetadata": {
|
1365
|
-
"shape": "
|
1526
|
+
"shape": "S7s"
|
1366
1527
|
},
|
1367
1528
|
"NextToken": {},
|
1368
1529
|
"Labels": {
|
@@ -1374,7 +1535,7 @@
|
|
1374
1535
|
"type": "long"
|
1375
1536
|
},
|
1376
1537
|
"Label": {
|
1377
|
-
"shape": "
|
1538
|
+
"shape": "S5k"
|
1378
1539
|
},
|
1379
1540
|
"StartTimestampMillis": {
|
1380
1541
|
"type": "long"
|
@@ -1391,7 +1552,7 @@
|
|
1391
1552
|
"LabelModelVersion": {},
|
1392
1553
|
"JobId": {},
|
1393
1554
|
"Video": {
|
1394
|
-
"shape": "
|
1555
|
+
"shape": "S7y"
|
1395
1556
|
},
|
1396
1557
|
"JobTag": {},
|
1397
1558
|
"GetRequestMetadata": {
|
@@ -1425,7 +1586,7 @@
|
|
1425
1586
|
"JobStatus": {},
|
1426
1587
|
"StatusMessage": {},
|
1427
1588
|
"VideoMetadata": {
|
1428
|
-
"shape": "
|
1589
|
+
"shape": "S7s"
|
1429
1590
|
},
|
1430
1591
|
"NextToken": {},
|
1431
1592
|
"Persons": {
|
@@ -1437,14 +1598,14 @@
|
|
1437
1598
|
"type": "long"
|
1438
1599
|
},
|
1439
1600
|
"Person": {
|
1440
|
-
"shape": "
|
1601
|
+
"shape": "S8m"
|
1441
1602
|
}
|
1442
1603
|
}
|
1443
1604
|
}
|
1444
1605
|
},
|
1445
1606
|
"JobId": {},
|
1446
1607
|
"Video": {
|
1447
|
-
"shape": "
|
1608
|
+
"shape": "S7y"
|
1448
1609
|
},
|
1449
1610
|
"JobTag": {}
|
1450
1611
|
}
|
@@ -1472,7 +1633,7 @@
|
|
1472
1633
|
"VideoMetadata": {
|
1473
1634
|
"type": "list",
|
1474
1635
|
"member": {
|
1475
|
-
"shape": "
|
1636
|
+
"shape": "S7s"
|
1476
1637
|
}
|
1477
1638
|
},
|
1478
1639
|
"AudioMetadata": {
|
@@ -1556,7 +1717,7 @@
|
|
1556
1717
|
},
|
1557
1718
|
"JobId": {},
|
1558
1719
|
"Video": {
|
1559
|
-
"shape": "
|
1720
|
+
"shape": "S7y"
|
1560
1721
|
},
|
1561
1722
|
"JobTag": {}
|
1562
1723
|
}
|
@@ -1582,7 +1743,7 @@
|
|
1582
1743
|
"JobStatus": {},
|
1583
1744
|
"StatusMessage": {},
|
1584
1745
|
"VideoMetadata": {
|
1585
|
-
"shape": "
|
1746
|
+
"shape": "S7s"
|
1586
1747
|
},
|
1587
1748
|
"TextDetections": {
|
1588
1749
|
"type": "list",
|
@@ -1593,7 +1754,7 @@
|
|
1593
1754
|
"type": "long"
|
1594
1755
|
},
|
1595
1756
|
"TextDetection": {
|
1596
|
-
"shape": "
|
1757
|
+
"shape": "S70"
|
1597
1758
|
}
|
1598
1759
|
}
|
1599
1760
|
}
|
@@ -1602,7 +1763,7 @@
|
|
1602
1763
|
"TextModelVersion": {},
|
1603
1764
|
"JobId": {},
|
1604
1765
|
"Video": {
|
1605
|
-
"shape": "
|
1766
|
+
"shape": "S7y"
|
1606
1767
|
},
|
1607
1768
|
"JobTag": {}
|
1608
1769
|
}
|
@@ -1618,11 +1779,11 @@
|
|
1618
1779
|
"members": {
|
1619
1780
|
"CollectionId": {},
|
1620
1781
|
"Image": {
|
1621
|
-
"shape": "
|
1782
|
+
"shape": "Sh"
|
1622
1783
|
},
|
1623
1784
|
"ExternalImageId": {},
|
1624
1785
|
"DetectionAttributes": {
|
1625
|
-
"shape": "
|
1786
|
+
"shape": "S4t"
|
1626
1787
|
},
|
1627
1788
|
"MaxFaces": {
|
1628
1789
|
"type": "integer"
|
@@ -1639,10 +1800,10 @@
|
|
1639
1800
|
"type": "structure",
|
1640
1801
|
"members": {
|
1641
1802
|
"Face": {
|
1642
|
-
"shape": "
|
1803
|
+
"shape": "S8q"
|
1643
1804
|
},
|
1644
1805
|
"FaceDetail": {
|
1645
|
-
"shape": "
|
1806
|
+
"shape": "S4x"
|
1646
1807
|
}
|
1647
1808
|
}
|
1648
1809
|
}
|
@@ -1659,7 +1820,7 @@
|
|
1659
1820
|
"member": {}
|
1660
1821
|
},
|
1661
1822
|
"FaceDetail": {
|
1662
|
-
"shape": "
|
1823
|
+
"shape": "S4x"
|
1663
1824
|
}
|
1664
1825
|
}
|
1665
1826
|
}
|
@@ -1780,6 +1941,10 @@
|
|
1780
1941
|
"NextToken": {},
|
1781
1942
|
"MaxResults": {
|
1782
1943
|
"type": "integer"
|
1944
|
+
},
|
1945
|
+
"UserId": {},
|
1946
|
+
"FaceIds": {
|
1947
|
+
"shape": "S34"
|
1783
1948
|
}
|
1784
1949
|
}
|
1785
1950
|
},
|
@@ -1789,7 +1954,7 @@
|
|
1789
1954
|
"Faces": {
|
1790
1955
|
"type": "list",
|
1791
1956
|
"member": {
|
1792
|
-
"shape": "
|
1957
|
+
"shape": "S8q"
|
1793
1958
|
}
|
1794
1959
|
},
|
1795
1960
|
"NextToken": {},
|
@@ -1877,11 +2042,42 @@
|
|
1877
2042
|
"type": "structure",
|
1878
2043
|
"members": {
|
1879
2044
|
"Tags": {
|
1880
|
-
"shape": "
|
2045
|
+
"shape": "S1e"
|
1881
2046
|
}
|
1882
2047
|
}
|
1883
2048
|
}
|
1884
2049
|
},
|
2050
|
+
"ListUsers": {
|
2051
|
+
"input": {
|
2052
|
+
"type": "structure",
|
2053
|
+
"required": [
|
2054
|
+
"CollectionId"
|
2055
|
+
],
|
2056
|
+
"members": {
|
2057
|
+
"CollectionId": {},
|
2058
|
+
"MaxResults": {
|
2059
|
+
"type": "integer"
|
2060
|
+
},
|
2061
|
+
"NextToken": {}
|
2062
|
+
}
|
2063
|
+
},
|
2064
|
+
"output": {
|
2065
|
+
"type": "structure",
|
2066
|
+
"members": {
|
2067
|
+
"Users": {
|
2068
|
+
"type": "list",
|
2069
|
+
"member": {
|
2070
|
+
"type": "structure",
|
2071
|
+
"members": {
|
2072
|
+
"UserId": {},
|
2073
|
+
"UserStatus": {}
|
2074
|
+
}
|
2075
|
+
}
|
2076
|
+
},
|
2077
|
+
"NextToken": {}
|
2078
|
+
}
|
2079
|
+
}
|
2080
|
+
},
|
1885
2081
|
"PutProjectPolicy": {
|
1886
2082
|
"input": {
|
1887
2083
|
"type": "structure",
|
@@ -1912,7 +2108,7 @@
|
|
1912
2108
|
],
|
1913
2109
|
"members": {
|
1914
2110
|
"Image": {
|
1915
|
-
"shape": "
|
2111
|
+
"shape": "Sh"
|
1916
2112
|
}
|
1917
2113
|
}
|
1918
2114
|
},
|
@@ -1925,18 +2121,18 @@
|
|
1925
2121
|
"type": "structure",
|
1926
2122
|
"members": {
|
1927
2123
|
"Urls": {
|
1928
|
-
"shape": "
|
2124
|
+
"shape": "S7h"
|
1929
2125
|
},
|
1930
2126
|
"Name": {},
|
1931
2127
|
"Id": {},
|
1932
2128
|
"Face": {
|
1933
|
-
"shape": "
|
2129
|
+
"shape": "Su"
|
1934
2130
|
},
|
1935
2131
|
"MatchConfidence": {
|
1936
2132
|
"type": "float"
|
1937
2133
|
},
|
1938
2134
|
"KnownGender": {
|
1939
|
-
"shape": "
|
2135
|
+
"shape": "S7j"
|
1940
2136
|
}
|
1941
2137
|
}
|
1942
2138
|
}
|
@@ -1944,7 +2140,7 @@
|
|
1944
2140
|
"UnrecognizedFaces": {
|
1945
2141
|
"type": "list",
|
1946
2142
|
"member": {
|
1947
|
-
"shape": "
|
2143
|
+
"shape": "Su"
|
1948
2144
|
}
|
1949
2145
|
},
|
1950
2146
|
"OrientationCorrection": {}
|
@@ -1974,7 +2170,7 @@
|
|
1974
2170
|
"members": {
|
1975
2171
|
"SearchedFaceId": {},
|
1976
2172
|
"FaceMatches": {
|
1977
|
-
"shape": "
|
2173
|
+
"shape": "S8o"
|
1978
2174
|
},
|
1979
2175
|
"FaceModelVersion": {}
|
1980
2176
|
}
|
@@ -1990,7 +2186,7 @@
|
|
1990
2186
|
"members": {
|
1991
2187
|
"CollectionId": {},
|
1992
2188
|
"Image": {
|
1993
|
-
"shape": "
|
2189
|
+
"shape": "Sh"
|
1994
2190
|
},
|
1995
2191
|
"MaxFaces": {
|
1996
2192
|
"type": "integer"
|
@@ -2005,18 +2201,112 @@
|
|
2005
2201
|
"type": "structure",
|
2006
2202
|
"members": {
|
2007
2203
|
"SearchedFaceBoundingBox": {
|
2008
|
-
"shape": "
|
2204
|
+
"shape": "Sq"
|
2009
2205
|
},
|
2010
2206
|
"SearchedFaceConfidence": {
|
2011
2207
|
"type": "float"
|
2012
2208
|
},
|
2013
2209
|
"FaceMatches": {
|
2014
|
-
"shape": "
|
2210
|
+
"shape": "S8o"
|
2015
2211
|
},
|
2016
2212
|
"FaceModelVersion": {}
|
2017
2213
|
}
|
2018
2214
|
}
|
2019
2215
|
},
|
2216
|
+
"SearchUsers": {
|
2217
|
+
"input": {
|
2218
|
+
"type": "structure",
|
2219
|
+
"required": [
|
2220
|
+
"CollectionId"
|
2221
|
+
],
|
2222
|
+
"members": {
|
2223
|
+
"CollectionId": {},
|
2224
|
+
"UserId": {},
|
2225
|
+
"FaceId": {},
|
2226
|
+
"UserMatchThreshold": {
|
2227
|
+
"type": "float"
|
2228
|
+
},
|
2229
|
+
"MaxUsers": {
|
2230
|
+
"type": "integer"
|
2231
|
+
}
|
2232
|
+
}
|
2233
|
+
},
|
2234
|
+
"output": {
|
2235
|
+
"type": "structure",
|
2236
|
+
"members": {
|
2237
|
+
"UserMatches": {
|
2238
|
+
"shape": "Sbi"
|
2239
|
+
},
|
2240
|
+
"FaceModelVersion": {},
|
2241
|
+
"SearchedFace": {
|
2242
|
+
"type": "structure",
|
2243
|
+
"members": {
|
2244
|
+
"FaceId": {}
|
2245
|
+
}
|
2246
|
+
},
|
2247
|
+
"SearchedUser": {
|
2248
|
+
"type": "structure",
|
2249
|
+
"members": {
|
2250
|
+
"UserId": {}
|
2251
|
+
}
|
2252
|
+
}
|
2253
|
+
}
|
2254
|
+
}
|
2255
|
+
},
|
2256
|
+
"SearchUsersByImage": {
|
2257
|
+
"input": {
|
2258
|
+
"type": "structure",
|
2259
|
+
"required": [
|
2260
|
+
"CollectionId",
|
2261
|
+
"Image"
|
2262
|
+
],
|
2263
|
+
"members": {
|
2264
|
+
"CollectionId": {},
|
2265
|
+
"Image": {
|
2266
|
+
"shape": "Sh"
|
2267
|
+
},
|
2268
|
+
"UserMatchThreshold": {
|
2269
|
+
"type": "float"
|
2270
|
+
},
|
2271
|
+
"MaxUsers": {
|
2272
|
+
"type": "integer"
|
2273
|
+
},
|
2274
|
+
"QualityFilter": {}
|
2275
|
+
}
|
2276
|
+
},
|
2277
|
+
"output": {
|
2278
|
+
"type": "structure",
|
2279
|
+
"members": {
|
2280
|
+
"UserMatches": {
|
2281
|
+
"shape": "Sbi"
|
2282
|
+
},
|
2283
|
+
"FaceModelVersion": {},
|
2284
|
+
"SearchedFace": {
|
2285
|
+
"type": "structure",
|
2286
|
+
"members": {
|
2287
|
+
"FaceDetail": {
|
2288
|
+
"shape": "S4x"
|
2289
|
+
}
|
2290
|
+
}
|
2291
|
+
},
|
2292
|
+
"UnsearchedFaces": {
|
2293
|
+
"type": "list",
|
2294
|
+
"member": {
|
2295
|
+
"type": "structure",
|
2296
|
+
"members": {
|
2297
|
+
"FaceDetails": {
|
2298
|
+
"shape": "S4x"
|
2299
|
+
},
|
2300
|
+
"Reasons": {
|
2301
|
+
"type": "list",
|
2302
|
+
"member": {}
|
2303
|
+
}
|
2304
|
+
}
|
2305
|
+
}
|
2306
|
+
}
|
2307
|
+
}
|
2308
|
+
}
|
2309
|
+
},
|
2020
2310
|
"StartCelebrityRecognition": {
|
2021
2311
|
"input": {
|
2022
2312
|
"type": "structure",
|
@@ -2025,11 +2315,11 @@
|
|
2025
2315
|
],
|
2026
2316
|
"members": {
|
2027
2317
|
"Video": {
|
2028
|
-
"shape": "
|
2318
|
+
"shape": "S7y"
|
2029
2319
|
},
|
2030
2320
|
"ClientRequestToken": {},
|
2031
2321
|
"NotificationChannel": {
|
2032
|
-
"shape": "
|
2322
|
+
"shape": "Sbv"
|
2033
2323
|
},
|
2034
2324
|
"JobTag": {}
|
2035
2325
|
}
|
@@ -2050,14 +2340,14 @@
|
|
2050
2340
|
],
|
2051
2341
|
"members": {
|
2052
2342
|
"Video": {
|
2053
|
-
"shape": "
|
2343
|
+
"shape": "S7y"
|
2054
2344
|
},
|
2055
2345
|
"MinConfidence": {
|
2056
2346
|
"type": "float"
|
2057
2347
|
},
|
2058
2348
|
"ClientRequestToken": {},
|
2059
2349
|
"NotificationChannel": {
|
2060
|
-
"shape": "
|
2350
|
+
"shape": "Sbv"
|
2061
2351
|
},
|
2062
2352
|
"JobTag": {}
|
2063
2353
|
}
|
@@ -2078,11 +2368,11 @@
|
|
2078
2368
|
],
|
2079
2369
|
"members": {
|
2080
2370
|
"Video": {
|
2081
|
-
"shape": "
|
2371
|
+
"shape": "S7y"
|
2082
2372
|
},
|
2083
2373
|
"ClientRequestToken": {},
|
2084
2374
|
"NotificationChannel": {
|
2085
|
-
"shape": "
|
2375
|
+
"shape": "Sbv"
|
2086
2376
|
},
|
2087
2377
|
"FaceAttributes": {},
|
2088
2378
|
"JobTag": {}
|
@@ -2105,7 +2395,7 @@
|
|
2105
2395
|
],
|
2106
2396
|
"members": {
|
2107
2397
|
"Video": {
|
2108
|
-
"shape": "
|
2398
|
+
"shape": "S7y"
|
2109
2399
|
},
|
2110
2400
|
"ClientRequestToken": {},
|
2111
2401
|
"FaceMatchThreshold": {
|
@@ -2113,7 +2403,7 @@
|
|
2113
2403
|
},
|
2114
2404
|
"CollectionId": {},
|
2115
2405
|
"NotificationChannel": {
|
2116
|
-
"shape": "
|
2406
|
+
"shape": "Sbv"
|
2117
2407
|
},
|
2118
2408
|
"JobTag": {}
|
2119
2409
|
}
|
@@ -2134,14 +2424,14 @@
|
|
2134
2424
|
],
|
2135
2425
|
"members": {
|
2136
2426
|
"Video": {
|
2137
|
-
"shape": "
|
2427
|
+
"shape": "S7y"
|
2138
2428
|
},
|
2139
2429
|
"ClientRequestToken": {},
|
2140
2430
|
"MinConfidence": {
|
2141
2431
|
"type": "float"
|
2142
2432
|
},
|
2143
2433
|
"NotificationChannel": {
|
2144
|
-
"shape": "
|
2434
|
+
"shape": "Sbv"
|
2145
2435
|
},
|
2146
2436
|
"JobTag": {},
|
2147
2437
|
"Features": {
|
@@ -2152,7 +2442,7 @@
|
|
2152
2442
|
"type": "structure",
|
2153
2443
|
"members": {
|
2154
2444
|
"GeneralLabels": {
|
2155
|
-
"shape": "
|
2445
|
+
"shape": "S5d"
|
2156
2446
|
}
|
2157
2447
|
}
|
2158
2448
|
}
|
@@ -2174,11 +2464,11 @@
|
|
2174
2464
|
],
|
2175
2465
|
"members": {
|
2176
2466
|
"Video": {
|
2177
|
-
"shape": "
|
2467
|
+
"shape": "S7y"
|
2178
2468
|
},
|
2179
2469
|
"ClientRequestToken": {},
|
2180
2470
|
"NotificationChannel": {
|
2181
|
-
"shape": "
|
2471
|
+
"shape": "Sbv"
|
2182
2472
|
},
|
2183
2473
|
"JobTag": {}
|
2184
2474
|
}
|
@@ -2224,11 +2514,11 @@
|
|
2224
2514
|
],
|
2225
2515
|
"members": {
|
2226
2516
|
"Video": {
|
2227
|
-
"shape": "
|
2517
|
+
"shape": "S7y"
|
2228
2518
|
},
|
2229
2519
|
"ClientRequestToken": {},
|
2230
2520
|
"NotificationChannel": {
|
2231
|
-
"shape": "
|
2521
|
+
"shape": "Sbv"
|
2232
2522
|
},
|
2233
2523
|
"JobTag": {},
|
2234
2524
|
"Filters": {
|
@@ -2324,21 +2614,21 @@
|
|
2324
2614
|
],
|
2325
2615
|
"members": {
|
2326
2616
|
"Video": {
|
2327
|
-
"shape": "
|
2617
|
+
"shape": "S7y"
|
2328
2618
|
},
|
2329
2619
|
"ClientRequestToken": {},
|
2330
2620
|
"NotificationChannel": {
|
2331
|
-
"shape": "
|
2621
|
+
"shape": "Sbv"
|
2332
2622
|
},
|
2333
2623
|
"JobTag": {},
|
2334
2624
|
"Filters": {
|
2335
2625
|
"type": "structure",
|
2336
2626
|
"members": {
|
2337
2627
|
"WordFilter": {
|
2338
|
-
"shape": "
|
2628
|
+
"shape": "S6v"
|
2339
2629
|
},
|
2340
2630
|
"RegionsOfInterest": {
|
2341
|
-
"shape": "
|
2631
|
+
"shape": "S2q"
|
2342
2632
|
}
|
2343
2633
|
}
|
2344
2634
|
}
|
@@ -2394,7 +2684,7 @@
|
|
2394
2684
|
"members": {
|
2395
2685
|
"ResourceArn": {},
|
2396
2686
|
"Tags": {
|
2397
|
-
"shape": "
|
2687
|
+
"shape": "S1e"
|
2398
2688
|
}
|
2399
2689
|
}
|
2400
2690
|
},
|
@@ -2465,7 +2755,7 @@
|
|
2465
2755
|
"type": "structure",
|
2466
2756
|
"members": {
|
2467
2757
|
"Labels": {
|
2468
|
-
"shape": "
|
2758
|
+
"shape": "S2l"
|
2469
2759
|
},
|
2470
2760
|
"MinConfidence": {
|
2471
2761
|
"type": "float"
|
@@ -2475,10 +2765,10 @@
|
|
2475
2765
|
}
|
2476
2766
|
},
|
2477
2767
|
"RegionsOfInterestForUpdate": {
|
2478
|
-
"shape": "
|
2768
|
+
"shape": "S2q"
|
2479
2769
|
},
|
2480
2770
|
"DataSharingPreferenceForUpdate": {
|
2481
|
-
"shape": "
|
2771
|
+
"shape": "S2u"
|
2482
2772
|
},
|
2483
2773
|
"ParametersToDelete": {
|
2484
2774
|
"type": "list",
|
@@ -2493,18 +2783,22 @@
|
|
2493
2783
|
}
|
2494
2784
|
},
|
2495
2785
|
"shapes": {
|
2496
|
-
"
|
2786
|
+
"S4": {
|
2787
|
+
"type": "list",
|
2788
|
+
"member": {}
|
2789
|
+
},
|
2790
|
+
"Sh": {
|
2497
2791
|
"type": "structure",
|
2498
2792
|
"members": {
|
2499
2793
|
"Bytes": {
|
2500
2794
|
"type": "blob"
|
2501
2795
|
},
|
2502
2796
|
"S3Object": {
|
2503
|
-
"shape": "
|
2797
|
+
"shape": "Sj"
|
2504
2798
|
}
|
2505
2799
|
}
|
2506
2800
|
},
|
2507
|
-
"
|
2801
|
+
"Sj": {
|
2508
2802
|
"type": "structure",
|
2509
2803
|
"members": {
|
2510
2804
|
"Bucket": {},
|
@@ -2512,7 +2806,7 @@
|
|
2512
2806
|
"Version": {}
|
2513
2807
|
}
|
2514
2808
|
},
|
2515
|
-
"
|
2809
|
+
"Sq": {
|
2516
2810
|
"type": "structure",
|
2517
2811
|
"members": {
|
2518
2812
|
"Width": {
|
@@ -2529,33 +2823,33 @@
|
|
2529
2823
|
}
|
2530
2824
|
}
|
2531
2825
|
},
|
2532
|
-
"
|
2826
|
+
"Su": {
|
2533
2827
|
"type": "structure",
|
2534
2828
|
"members": {
|
2535
2829
|
"BoundingBox": {
|
2536
|
-
"shape": "
|
2830
|
+
"shape": "Sq"
|
2537
2831
|
},
|
2538
2832
|
"Confidence": {
|
2539
2833
|
"type": "float"
|
2540
2834
|
},
|
2541
2835
|
"Landmarks": {
|
2542
|
-
"shape": "
|
2836
|
+
"shape": "Sv"
|
2543
2837
|
},
|
2544
2838
|
"Pose": {
|
2545
|
-
"shape": "
|
2839
|
+
"shape": "Sy"
|
2546
2840
|
},
|
2547
2841
|
"Quality": {
|
2548
|
-
"shape": "
|
2842
|
+
"shape": "S10"
|
2549
2843
|
},
|
2550
2844
|
"Emotions": {
|
2551
|
-
"shape": "
|
2845
|
+
"shape": "S11"
|
2552
2846
|
},
|
2553
2847
|
"Smile": {
|
2554
|
-
"shape": "
|
2848
|
+
"shape": "S14"
|
2555
2849
|
}
|
2556
2850
|
}
|
2557
2851
|
},
|
2558
|
-
"
|
2852
|
+
"Sv": {
|
2559
2853
|
"type": "list",
|
2560
2854
|
"member": {
|
2561
2855
|
"type": "structure",
|
@@ -2570,7 +2864,7 @@
|
|
2570
2864
|
}
|
2571
2865
|
}
|
2572
2866
|
},
|
2573
|
-
"
|
2867
|
+
"Sy": {
|
2574
2868
|
"type": "structure",
|
2575
2869
|
"members": {
|
2576
2870
|
"Roll": {
|
@@ -2584,7 +2878,7 @@
|
|
2584
2878
|
}
|
2585
2879
|
}
|
2586
2880
|
},
|
2587
|
-
"
|
2881
|
+
"S10": {
|
2588
2882
|
"type": "structure",
|
2589
2883
|
"members": {
|
2590
2884
|
"Brightness": {
|
@@ -2595,7 +2889,7 @@
|
|
2595
2889
|
}
|
2596
2890
|
}
|
2597
2891
|
},
|
2598
|
-
"
|
2892
|
+
"S11": {
|
2599
2893
|
"type": "list",
|
2600
2894
|
"member": {
|
2601
2895
|
"type": "structure",
|
@@ -2607,7 +2901,7 @@
|
|
2607
2901
|
}
|
2608
2902
|
}
|
2609
2903
|
},
|
2610
|
-
"
|
2904
|
+
"S14": {
|
2611
2905
|
"type": "structure",
|
2612
2906
|
"members": {
|
2613
2907
|
"Value": {
|
@@ -2618,57 +2912,57 @@
|
|
2618
2912
|
}
|
2619
2913
|
}
|
2620
2914
|
},
|
2621
|
-
"
|
2915
|
+
"S1c": {
|
2622
2916
|
"type": "structure",
|
2623
2917
|
"members": {
|
2624
2918
|
"S3Bucket": {},
|
2625
2919
|
"S3KeyPrefix": {}
|
2626
2920
|
}
|
2627
2921
|
},
|
2628
|
-
"
|
2922
|
+
"S1e": {
|
2629
2923
|
"type": "map",
|
2630
2924
|
"key": {},
|
2631
2925
|
"value": {}
|
2632
2926
|
},
|
2633
|
-
"
|
2927
|
+
"S1p": {
|
2634
2928
|
"type": "structure",
|
2635
2929
|
"members": {
|
2636
2930
|
"S3Object": {
|
2637
|
-
"shape": "
|
2931
|
+
"shape": "Sj"
|
2638
2932
|
}
|
2639
2933
|
}
|
2640
2934
|
},
|
2641
|
-
"
|
2935
|
+
"S24": {
|
2642
2936
|
"type": "structure",
|
2643
2937
|
"members": {
|
2644
2938
|
"Assets": {
|
2645
|
-
"shape": "
|
2939
|
+
"shape": "S25"
|
2646
2940
|
}
|
2647
2941
|
}
|
2648
2942
|
},
|
2649
|
-
"
|
2943
|
+
"S25": {
|
2650
2944
|
"type": "list",
|
2651
2945
|
"member": {
|
2652
2946
|
"type": "structure",
|
2653
2947
|
"members": {
|
2654
2948
|
"GroundTruthManifest": {
|
2655
|
-
"shape": "
|
2949
|
+
"shape": "S1p"
|
2656
2950
|
}
|
2657
2951
|
}
|
2658
2952
|
}
|
2659
2953
|
},
|
2660
|
-
"
|
2954
|
+
"S27": {
|
2661
2955
|
"type": "structure",
|
2662
2956
|
"members": {
|
2663
2957
|
"Assets": {
|
2664
|
-
"shape": "
|
2958
|
+
"shape": "S25"
|
2665
2959
|
},
|
2666
2960
|
"AutoCreate": {
|
2667
2961
|
"type": "boolean"
|
2668
2962
|
}
|
2669
2963
|
}
|
2670
2964
|
},
|
2671
|
-
"
|
2965
|
+
"S2a": {
|
2672
2966
|
"type": "structure",
|
2673
2967
|
"members": {
|
2674
2968
|
"KinesisVideoStream": {
|
@@ -2679,7 +2973,7 @@
|
|
2679
2973
|
}
|
2680
2974
|
}
|
2681
2975
|
},
|
2682
|
-
"
|
2976
|
+
"S2d": {
|
2683
2977
|
"type": "structure",
|
2684
2978
|
"members": {
|
2685
2979
|
"KinesisDataStream": {
|
@@ -2697,7 +2991,7 @@
|
|
2697
2991
|
}
|
2698
2992
|
}
|
2699
2993
|
},
|
2700
|
-
"
|
2994
|
+
"S2i": {
|
2701
2995
|
"type": "structure",
|
2702
2996
|
"members": {
|
2703
2997
|
"FaceSearch": {
|
@@ -2716,7 +3010,7 @@
|
|
2716
3010
|
],
|
2717
3011
|
"members": {
|
2718
3012
|
"Labels": {
|
2719
|
-
"shape": "
|
3013
|
+
"shape": "S2l"
|
2720
3014
|
},
|
2721
3015
|
"MinConfidence": {
|
2722
3016
|
"type": "float"
|
@@ -2725,11 +3019,11 @@
|
|
2725
3019
|
}
|
2726
3020
|
}
|
2727
3021
|
},
|
2728
|
-
"
|
3022
|
+
"S2l": {
|
2729
3023
|
"type": "list",
|
2730
3024
|
"member": {}
|
2731
3025
|
},
|
2732
|
-
"
|
3026
|
+
"S2o": {
|
2733
3027
|
"type": "structure",
|
2734
3028
|
"required": [
|
2735
3029
|
"SNSTopicArn"
|
@@ -2738,21 +3032,21 @@
|
|
2738
3032
|
"SNSTopicArn": {}
|
2739
3033
|
}
|
2740
3034
|
},
|
2741
|
-
"
|
3035
|
+
"S2q": {
|
2742
3036
|
"type": "list",
|
2743
3037
|
"member": {
|
2744
3038
|
"type": "structure",
|
2745
3039
|
"members": {
|
2746
3040
|
"BoundingBox": {
|
2747
|
-
"shape": "
|
3041
|
+
"shape": "Sq"
|
2748
3042
|
},
|
2749
3043
|
"Polygon": {
|
2750
|
-
"shape": "
|
3044
|
+
"shape": "S2s"
|
2751
3045
|
}
|
2752
3046
|
}
|
2753
3047
|
}
|
2754
3048
|
},
|
2755
|
-
"
|
3049
|
+
"S2s": {
|
2756
3050
|
"type": "list",
|
2757
3051
|
"member": {
|
2758
3052
|
"type": "structure",
|
@@ -2766,7 +3060,7 @@
|
|
2766
3060
|
}
|
2767
3061
|
}
|
2768
3062
|
},
|
2769
|
-
"
|
3063
|
+
"S2u": {
|
2770
3064
|
"type": "structure",
|
2771
3065
|
"required": [
|
2772
3066
|
"OptIn"
|
@@ -2777,38 +3071,38 @@
|
|
2777
3071
|
}
|
2778
3072
|
}
|
2779
3073
|
},
|
2780
|
-
"
|
3074
|
+
"S34": {
|
2781
3075
|
"type": "list",
|
2782
3076
|
"member": {}
|
2783
3077
|
},
|
2784
|
-
"
|
3078
|
+
"S48": {
|
2785
3079
|
"type": "structure",
|
2786
3080
|
"members": {
|
2787
3081
|
"Assets": {
|
2788
|
-
"shape": "
|
3082
|
+
"shape": "S25"
|
2789
3083
|
}
|
2790
3084
|
}
|
2791
3085
|
},
|
2792
|
-
"
|
3086
|
+
"S4r": {
|
2793
3087
|
"type": "structure",
|
2794
3088
|
"members": {
|
2795
3089
|
"BoundingBox": {
|
2796
|
-
"shape": "
|
3090
|
+
"shape": "Sq"
|
2797
3091
|
},
|
2798
3092
|
"Polygon": {
|
2799
|
-
"shape": "
|
3093
|
+
"shape": "S2s"
|
2800
3094
|
}
|
2801
3095
|
}
|
2802
3096
|
},
|
2803
|
-
"
|
3097
|
+
"S4t": {
|
2804
3098
|
"type": "list",
|
2805
3099
|
"member": {}
|
2806
3100
|
},
|
2807
|
-
"
|
3101
|
+
"S4x": {
|
2808
3102
|
"type": "structure",
|
2809
3103
|
"members": {
|
2810
3104
|
"BoundingBox": {
|
2811
|
-
"shape": "
|
3105
|
+
"shape": "Sq"
|
2812
3106
|
},
|
2813
3107
|
"AgeRange": {
|
2814
3108
|
"type": "structure",
|
@@ -2822,7 +3116,7 @@
|
|
2822
3116
|
}
|
2823
3117
|
},
|
2824
3118
|
"Smile": {
|
2825
|
-
"shape": "
|
3119
|
+
"shape": "S14"
|
2826
3120
|
},
|
2827
3121
|
"Eyeglasses": {
|
2828
3122
|
"type": "structure",
|
@@ -2900,16 +3194,16 @@
|
|
2900
3194
|
}
|
2901
3195
|
},
|
2902
3196
|
"Emotions": {
|
2903
|
-
"shape": "
|
3197
|
+
"shape": "S11"
|
2904
3198
|
},
|
2905
3199
|
"Landmarks": {
|
2906
|
-
"shape": "
|
3200
|
+
"shape": "Sv"
|
2907
3201
|
},
|
2908
3202
|
"Pose": {
|
2909
|
-
"shape": "
|
3203
|
+
"shape": "Sy"
|
2910
3204
|
},
|
2911
3205
|
"Quality": {
|
2912
|
-
"shape": "
|
3206
|
+
"shape": "S10"
|
2913
3207
|
},
|
2914
3208
|
"Confidence": {
|
2915
3209
|
"type": "float"
|
@@ -2941,28 +3235,28 @@
|
|
2941
3235
|
}
|
2942
3236
|
}
|
2943
3237
|
},
|
2944
|
-
"
|
3238
|
+
"S5d": {
|
2945
3239
|
"type": "structure",
|
2946
3240
|
"members": {
|
2947
3241
|
"LabelInclusionFilters": {
|
2948
|
-
"shape": "
|
3242
|
+
"shape": "S5e"
|
2949
3243
|
},
|
2950
3244
|
"LabelExclusionFilters": {
|
2951
|
-
"shape": "
|
3245
|
+
"shape": "S5e"
|
2952
3246
|
},
|
2953
3247
|
"LabelCategoryInclusionFilters": {
|
2954
|
-
"shape": "
|
3248
|
+
"shape": "S5e"
|
2955
3249
|
},
|
2956
3250
|
"LabelCategoryExclusionFilters": {
|
2957
|
-
"shape": "
|
3251
|
+
"shape": "S5e"
|
2958
3252
|
}
|
2959
3253
|
}
|
2960
3254
|
},
|
2961
|
-
"
|
3255
|
+
"S5e": {
|
2962
3256
|
"type": "list",
|
2963
3257
|
"member": {}
|
2964
3258
|
},
|
2965
|
-
"
|
3259
|
+
"S5k": {
|
2966
3260
|
"type": "structure",
|
2967
3261
|
"members": {
|
2968
3262
|
"Name": {},
|
@@ -2975,13 +3269,13 @@
|
|
2975
3269
|
"type": "structure",
|
2976
3270
|
"members": {
|
2977
3271
|
"BoundingBox": {
|
2978
|
-
"shape": "
|
3272
|
+
"shape": "Sq"
|
2979
3273
|
},
|
2980
3274
|
"Confidence": {
|
2981
3275
|
"type": "float"
|
2982
3276
|
},
|
2983
3277
|
"DominantColors": {
|
2984
|
-
"shape": "
|
3278
|
+
"shape": "S5n"
|
2985
3279
|
}
|
2986
3280
|
}
|
2987
3281
|
}
|
@@ -3015,7 +3309,7 @@
|
|
3015
3309
|
}
|
3016
3310
|
}
|
3017
3311
|
},
|
3018
|
-
"
|
3312
|
+
"S5n": {
|
3019
3313
|
"type": "list",
|
3020
3314
|
"member": {
|
3021
3315
|
"type": "structure",
|
@@ -3038,7 +3332,7 @@
|
|
3038
3332
|
}
|
3039
3333
|
}
|
3040
3334
|
},
|
3041
|
-
"
|
3335
|
+
"S5w": {
|
3042
3336
|
"type": "structure",
|
3043
3337
|
"members": {
|
3044
3338
|
"Brightness": {
|
@@ -3052,7 +3346,7 @@
|
|
3052
3346
|
}
|
3053
3347
|
}
|
3054
3348
|
},
|
3055
|
-
"
|
3349
|
+
"S68": {
|
3056
3350
|
"type": "structure",
|
3057
3351
|
"members": {
|
3058
3352
|
"Confidence": {
|
@@ -3062,13 +3356,13 @@
|
|
3062
3356
|
"ParentName": {}
|
3063
3357
|
}
|
3064
3358
|
},
|
3065
|
-
"
|
3359
|
+
"S6s": {
|
3066
3360
|
"type": "list",
|
3067
3361
|
"member": {
|
3068
3362
|
"type": "integer"
|
3069
3363
|
}
|
3070
3364
|
},
|
3071
|
-
"
|
3365
|
+
"S6v": {
|
3072
3366
|
"type": "structure",
|
3073
3367
|
"members": {
|
3074
3368
|
"MinConfidence": {
|
@@ -3082,7 +3376,7 @@
|
|
3082
3376
|
}
|
3083
3377
|
}
|
3084
3378
|
},
|
3085
|
-
"
|
3379
|
+
"S70": {
|
3086
3380
|
"type": "structure",
|
3087
3381
|
"members": {
|
3088
3382
|
"DetectedText": {},
|
@@ -3097,21 +3391,21 @@
|
|
3097
3391
|
"type": "float"
|
3098
3392
|
},
|
3099
3393
|
"Geometry": {
|
3100
|
-
"shape": "
|
3394
|
+
"shape": "S4r"
|
3101
3395
|
}
|
3102
3396
|
}
|
3103
3397
|
},
|
3104
|
-
"
|
3398
|
+
"S7h": {
|
3105
3399
|
"type": "list",
|
3106
3400
|
"member": {}
|
3107
3401
|
},
|
3108
|
-
"
|
3402
|
+
"S7j": {
|
3109
3403
|
"type": "structure",
|
3110
3404
|
"members": {
|
3111
3405
|
"Type": {}
|
3112
3406
|
}
|
3113
3407
|
},
|
3114
|
-
"
|
3408
|
+
"S7s": {
|
3115
3409
|
"type": "structure",
|
3116
3410
|
"members": {
|
3117
3411
|
"Codec": {},
|
@@ -3131,15 +3425,15 @@
|
|
3131
3425
|
"ColorRange": {}
|
3132
3426
|
}
|
3133
3427
|
},
|
3134
|
-
"
|
3428
|
+
"S7y": {
|
3135
3429
|
"type": "structure",
|
3136
3430
|
"members": {
|
3137
3431
|
"S3Object": {
|
3138
|
-
"shape": "
|
3432
|
+
"shape": "Sj"
|
3139
3433
|
}
|
3140
3434
|
}
|
3141
3435
|
},
|
3142
|
-
"
|
3436
|
+
"S8e": {
|
3143
3437
|
"type": "structure",
|
3144
3438
|
"members": {
|
3145
3439
|
"Bytes": {
|
@@ -3147,28 +3441,28 @@
|
|
3147
3441
|
"sensitive": true
|
3148
3442
|
},
|
3149
3443
|
"S3Object": {
|
3150
|
-
"shape": "
|
3444
|
+
"shape": "Sj"
|
3151
3445
|
},
|
3152
3446
|
"BoundingBox": {
|
3153
|
-
"shape": "
|
3447
|
+
"shape": "Sq"
|
3154
3448
|
}
|
3155
3449
|
}
|
3156
3450
|
},
|
3157
|
-
"
|
3451
|
+
"S8m": {
|
3158
3452
|
"type": "structure",
|
3159
3453
|
"members": {
|
3160
3454
|
"Index": {
|
3161
3455
|
"type": "long"
|
3162
3456
|
},
|
3163
3457
|
"BoundingBox": {
|
3164
|
-
"shape": "
|
3458
|
+
"shape": "Sq"
|
3165
3459
|
},
|
3166
3460
|
"Face": {
|
3167
|
-
"shape": "
|
3461
|
+
"shape": "S4x"
|
3168
3462
|
}
|
3169
3463
|
}
|
3170
3464
|
},
|
3171
|
-
"
|
3465
|
+
"S8o": {
|
3172
3466
|
"type": "list",
|
3173
3467
|
"member": {
|
3174
3468
|
"type": "structure",
|
@@ -3177,27 +3471,46 @@
|
|
3177
3471
|
"type": "float"
|
3178
3472
|
},
|
3179
3473
|
"Face": {
|
3180
|
-
"shape": "
|
3474
|
+
"shape": "S8q"
|
3181
3475
|
}
|
3182
3476
|
}
|
3183
3477
|
}
|
3184
3478
|
},
|
3185
|
-
"
|
3479
|
+
"S8q": {
|
3186
3480
|
"type": "structure",
|
3187
3481
|
"members": {
|
3188
3482
|
"FaceId": {},
|
3189
3483
|
"BoundingBox": {
|
3190
|
-
"shape": "
|
3484
|
+
"shape": "Sq"
|
3191
3485
|
},
|
3192
3486
|
"ImageId": {},
|
3193
3487
|
"ExternalImageId": {},
|
3194
3488
|
"Confidence": {
|
3195
3489
|
"type": "float"
|
3196
3490
|
},
|
3197
|
-
"IndexFacesModelVersion": {}
|
3491
|
+
"IndexFacesModelVersion": {},
|
3492
|
+
"UserId": {}
|
3493
|
+
}
|
3494
|
+
},
|
3495
|
+
"Sbi": {
|
3496
|
+
"type": "list",
|
3497
|
+
"member": {
|
3498
|
+
"type": "structure",
|
3499
|
+
"members": {
|
3500
|
+
"Similarity": {
|
3501
|
+
"type": "float"
|
3502
|
+
},
|
3503
|
+
"User": {
|
3504
|
+
"type": "structure",
|
3505
|
+
"members": {
|
3506
|
+
"UserId": {},
|
3507
|
+
"UserStatus": {}
|
3508
|
+
}
|
3509
|
+
}
|
3510
|
+
}
|
3198
3511
|
}
|
3199
3512
|
},
|
3200
|
-
"
|
3513
|
+
"Sbv": {
|
3201
3514
|
"type": "structure",
|
3202
3515
|
"required": [
|
3203
3516
|
"SNSTopicArn",
|