cdk-comprehend-s3olap 2.0.121 → 2.0.122
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/.jsii +4 -4
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/@esbuild/linux-x64/bin/esbuild +0 -0
- package/node_modules/@esbuild/linux-x64/package.json +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +9 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +196 -187
- package/node_modules/aws-sdk/apis/marketplace-catalog-2018-09-17.min.json +82 -15
- package/node_modules/aws-sdk/apis/mediaconvert-2017-08-29.min.json +56 -32
- package/node_modules/aws-sdk/apis/rekognition-2016-06-27.min.json +224 -138
- package/node_modules/aws-sdk/clients/connect.d.ts +15 -4
- package/node_modules/aws-sdk/clients/ecs.d.ts +24 -24
- package/node_modules/aws-sdk/clients/marketplacecatalog.d.ts +67 -7
- package/node_modules/aws-sdk/clients/mediaconvert.d.ts +20 -1
- package/node_modules/aws-sdk/clients/omics.d.ts +2 -2
- package/node_modules/aws-sdk/clients/rekognition.d.ts +114 -16
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +2532 -875
- package/node_modules/aws-sdk/dist/aws-sdk.js +505 -343
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +79 -79
- package/node_modules/aws-sdk/dist/xml2js.js +2579 -922
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +2 -2
- package/node_modules/esbuild/bin/esbuild +1 -1
- package/node_modules/esbuild/lib/main.js +8 -8
- package/node_modules/esbuild/package.json +23 -23
- package/node_modules/xml2js/README.md +108 -7
- package/node_modules/xml2js/lib/parser.js +35 -7
- package/node_modules/xml2js/lib/xml2js.js +2 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/CHANGELOG.md +47 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/LICENSE +21 -21
- package/node_modules/xml2js/node_modules/xmlbuilder/README.md +86 -85
- package/node_modules/xml2js/node_modules/xmlbuilder/appveyor.yml +20 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/Derivation.js +10 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/DocumentPosition.js +12 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/NodeType.js +23 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/OperationType.js +11 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/Utility.js +11 -1
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/WriterState.js +10 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLAttribute.js +86 -9
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLCData.js +10 -6
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLCharacterData.js +79 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLComment.js +10 -6
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMConfiguration.js +64 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMErrorHandler.js +16 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMImplementation.js +32 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDOMStringList.js +28 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDAttList.js +16 -11
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDElement.js +7 -4
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDEntity.js +49 -8
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDTDNotation.js +20 -5
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDeclaration.js +5 -2
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocType.js +84 -5
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocument.js +199 -5
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocumentCB.js +165 -39
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDocumentFragment.js +24 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLDummy.js +31 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLElement.js +207 -20
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNamedNodeMap.js +58 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNode.js +403 -50
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNodeFilter.js +48 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLNodeList.js +28 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLProcessingInstruction.js +19 -5
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLRaw.js +6 -3
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLStreamWriter.js +94 -197
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLStringWriter.js +6 -305
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLStringifier.js +109 -32
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLText.js +43 -6
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLTypeInfo.js +21 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLUserDataHandler.js +16 -0
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/XMLWriterBase.js +397 -59
- package/node_modules/xml2js/node_modules/xmlbuilder/lib/index.js +15 -3
- package/node_modules/xml2js/node_modules/xmlbuilder/package.json +5 -3
- package/node_modules/xml2js/node_modules/xmlbuilder/typings/index.d.ts +153 -0
- package/node_modules/xml2js/package.json +11 -5
- package/package.json +4 -4
- package/node_modules/xml2js/node_modules/xmlbuilder/.npmignore +0 -5
@@ -154,6 +154,43 @@
|
|
154
154
|
}
|
155
155
|
}
|
156
156
|
},
|
157
|
+
"CreateFaceLivenessSession": {
|
158
|
+
"input": {
|
159
|
+
"type": "structure",
|
160
|
+
"members": {
|
161
|
+
"KmsKeyId": {},
|
162
|
+
"Settings": {
|
163
|
+
"type": "structure",
|
164
|
+
"members": {
|
165
|
+
"OutputConfig": {
|
166
|
+
"type": "structure",
|
167
|
+
"required": [
|
168
|
+
"S3Bucket"
|
169
|
+
],
|
170
|
+
"members": {
|
171
|
+
"S3Bucket": {},
|
172
|
+
"S3KeyPrefix": {}
|
173
|
+
}
|
174
|
+
},
|
175
|
+
"AuditImagesLimit": {
|
176
|
+
"type": "integer"
|
177
|
+
}
|
178
|
+
}
|
179
|
+
},
|
180
|
+
"ClientRequestToken": {}
|
181
|
+
}
|
182
|
+
},
|
183
|
+
"output": {
|
184
|
+
"type": "structure",
|
185
|
+
"required": [
|
186
|
+
"SessionId"
|
187
|
+
],
|
188
|
+
"members": {
|
189
|
+
"SessionId": {}
|
190
|
+
}
|
191
|
+
},
|
192
|
+
"idempotent": true
|
193
|
+
},
|
157
194
|
"CreateProject": {
|
158
195
|
"input": {
|
159
196
|
"type": "structure",
|
@@ -186,10 +223,10 @@
|
|
186
223
|
"shape": "Sy"
|
187
224
|
},
|
188
225
|
"TrainingData": {
|
189
|
-
"shape": "
|
226
|
+
"shape": "S1s"
|
190
227
|
},
|
191
228
|
"TestingData": {
|
192
|
-
"shape": "
|
229
|
+
"shape": "S1v"
|
193
230
|
},
|
194
231
|
"Tags": {
|
195
232
|
"shape": "S10"
|
@@ -216,28 +253,28 @@
|
|
216
253
|
],
|
217
254
|
"members": {
|
218
255
|
"Input": {
|
219
|
-
"shape": "
|
256
|
+
"shape": "S1y"
|
220
257
|
},
|
221
258
|
"Output": {
|
222
|
-
"shape": "
|
259
|
+
"shape": "S21"
|
223
260
|
},
|
224
261
|
"Name": {},
|
225
262
|
"Settings": {
|
226
|
-
"shape": "
|
263
|
+
"shape": "S26"
|
227
264
|
},
|
228
265
|
"RoleArn": {},
|
229
266
|
"Tags": {
|
230
267
|
"shape": "S10"
|
231
268
|
},
|
232
269
|
"NotificationChannel": {
|
233
|
-
"shape": "
|
270
|
+
"shape": "S2c"
|
234
271
|
},
|
235
272
|
"KmsKeyId": {},
|
236
273
|
"RegionsOfInterest": {
|
237
|
-
"shape": "
|
274
|
+
"shape": "S2e"
|
238
275
|
},
|
239
276
|
"DataSharingPreference": {
|
240
|
-
"shape": "
|
277
|
+
"shape": "S2i"
|
241
278
|
}
|
242
279
|
}
|
243
280
|
},
|
@@ -292,7 +329,7 @@
|
|
292
329
|
"members": {
|
293
330
|
"CollectionId": {},
|
294
331
|
"FaceIds": {
|
295
|
-
"shape": "
|
332
|
+
"shape": "S2q"
|
296
333
|
}
|
297
334
|
}
|
298
335
|
},
|
@@ -300,7 +337,7 @@
|
|
300
337
|
"type": "structure",
|
301
338
|
"members": {
|
302
339
|
"DeletedFaces": {
|
303
|
-
"shape": "
|
340
|
+
"shape": "S2q"
|
304
341
|
}
|
305
342
|
}
|
306
343
|
}
|
@@ -491,13 +528,13 @@
|
|
491
528
|
"type": "structure",
|
492
529
|
"members": {
|
493
530
|
"Input": {
|
494
|
-
"shape": "
|
531
|
+
"shape": "S1s"
|
495
532
|
},
|
496
533
|
"Output": {
|
497
|
-
"shape": "
|
534
|
+
"shape": "S1s"
|
498
535
|
},
|
499
536
|
"Validation": {
|
500
|
-
"shape": "
|
537
|
+
"shape": "S3p"
|
501
538
|
}
|
502
539
|
}
|
503
540
|
},
|
@@ -505,13 +542,13 @@
|
|
505
542
|
"type": "structure",
|
506
543
|
"members": {
|
507
544
|
"Input": {
|
508
|
-
"shape": "
|
545
|
+
"shape": "S1v"
|
509
546
|
},
|
510
547
|
"Output": {
|
511
|
-
"shape": "
|
548
|
+
"shape": "S1v"
|
512
549
|
},
|
513
550
|
"Validation": {
|
514
|
-
"shape": "
|
551
|
+
"shape": "S3p"
|
515
552
|
}
|
516
553
|
}
|
517
554
|
},
|
@@ -620,24 +657,24 @@
|
|
620
657
|
"type": "timestamp"
|
621
658
|
},
|
622
659
|
"Input": {
|
623
|
-
"shape": "
|
660
|
+
"shape": "S1y"
|
624
661
|
},
|
625
662
|
"Output": {
|
626
|
-
"shape": "
|
663
|
+
"shape": "S21"
|
627
664
|
},
|
628
665
|
"RoleArn": {},
|
629
666
|
"Settings": {
|
630
|
-
"shape": "
|
667
|
+
"shape": "S26"
|
631
668
|
},
|
632
669
|
"NotificationChannel": {
|
633
|
-
"shape": "
|
670
|
+
"shape": "S2c"
|
634
671
|
},
|
635
672
|
"KmsKeyId": {},
|
636
673
|
"RegionsOfInterest": {
|
637
|
-
"shape": "
|
674
|
+
"shape": "S2e"
|
638
675
|
},
|
639
676
|
"DataSharingPreference": {
|
640
|
-
"shape": "
|
677
|
+
"shape": "S2i"
|
641
678
|
}
|
642
679
|
}
|
643
680
|
}
|
@@ -675,7 +712,7 @@
|
|
675
712
|
"type": "float"
|
676
713
|
},
|
677
714
|
"Geometry": {
|
678
|
-
"shape": "
|
715
|
+
"shape": "S48"
|
679
716
|
}
|
680
717
|
}
|
681
718
|
}
|
@@ -694,7 +731,7 @@
|
|
694
731
|
"shape": "S2"
|
695
732
|
},
|
696
733
|
"Attributes": {
|
697
|
-
"shape": "
|
734
|
+
"shape": "S4a"
|
698
735
|
}
|
699
736
|
}
|
700
737
|
},
|
@@ -704,7 +741,7 @@
|
|
704
741
|
"FaceDetails": {
|
705
742
|
"type": "list",
|
706
743
|
"member": {
|
707
|
-
"shape": "
|
744
|
+
"shape": "S4e"
|
708
745
|
}
|
709
746
|
},
|
710
747
|
"OrientationCorrection": {}
|
@@ -735,7 +772,7 @@
|
|
735
772
|
"type": "structure",
|
736
773
|
"members": {
|
737
774
|
"GeneralLabels": {
|
738
|
-
"shape": "
|
775
|
+
"shape": "S4s"
|
739
776
|
},
|
740
777
|
"ImageProperties": {
|
741
778
|
"type": "structure",
|
@@ -755,7 +792,7 @@
|
|
755
792
|
"Labels": {
|
756
793
|
"type": "list",
|
757
794
|
"member": {
|
758
|
-
"shape": "
|
795
|
+
"shape": "S4z"
|
759
796
|
}
|
760
797
|
},
|
761
798
|
"OrientationCorrection": {},
|
@@ -764,19 +801,19 @@
|
|
764
801
|
"type": "structure",
|
765
802
|
"members": {
|
766
803
|
"Quality": {
|
767
|
-
"shape": "
|
804
|
+
"shape": "S5b"
|
768
805
|
},
|
769
806
|
"DominantColors": {
|
770
|
-
"shape": "
|
807
|
+
"shape": "S52"
|
771
808
|
},
|
772
809
|
"Foreground": {
|
773
810
|
"type": "structure",
|
774
811
|
"members": {
|
775
812
|
"Quality": {
|
776
|
-
"shape": "
|
813
|
+
"shape": "S5b"
|
777
814
|
},
|
778
815
|
"DominantColors": {
|
779
|
-
"shape": "
|
816
|
+
"shape": "S52"
|
780
817
|
}
|
781
818
|
}
|
782
819
|
},
|
@@ -784,10 +821,10 @@
|
|
784
821
|
"type": "structure",
|
785
822
|
"members": {
|
786
823
|
"Quality": {
|
787
|
-
"shape": "
|
824
|
+
"shape": "S5b"
|
788
825
|
},
|
789
826
|
"DominantColors": {
|
790
|
-
"shape": "
|
827
|
+
"shape": "S52"
|
791
828
|
}
|
792
829
|
}
|
793
830
|
}
|
@@ -837,7 +874,7 @@
|
|
837
874
|
"ModerationLabels": {
|
838
875
|
"type": "list",
|
839
876
|
"member": {
|
840
|
-
"shape": "
|
877
|
+
"shape": "S5n"
|
841
878
|
}
|
842
879
|
},
|
843
880
|
"ModerationModelVersion": {},
|
@@ -948,13 +985,13 @@
|
|
948
985
|
"type": "structure",
|
949
986
|
"members": {
|
950
987
|
"PersonsWithRequiredEquipment": {
|
951
|
-
"shape": "
|
988
|
+
"shape": "S67"
|
952
989
|
},
|
953
990
|
"PersonsWithoutRequiredEquipment": {
|
954
|
-
"shape": "
|
991
|
+
"shape": "S67"
|
955
992
|
},
|
956
993
|
"PersonsIndeterminate": {
|
957
|
-
"shape": "
|
994
|
+
"shape": "S67"
|
958
995
|
}
|
959
996
|
}
|
960
997
|
}
|
@@ -975,10 +1012,10 @@
|
|
975
1012
|
"type": "structure",
|
976
1013
|
"members": {
|
977
1014
|
"WordFilter": {
|
978
|
-
"shape": "
|
1015
|
+
"shape": "S6a"
|
979
1016
|
},
|
980
1017
|
"RegionsOfInterest": {
|
981
|
-
"shape": "
|
1018
|
+
"shape": "S2e"
|
982
1019
|
}
|
983
1020
|
}
|
984
1021
|
}
|
@@ -990,7 +1027,7 @@
|
|
990
1027
|
"TextDetections": {
|
991
1028
|
"type": "list",
|
992
1029
|
"member": {
|
993
|
-
"shape": "
|
1030
|
+
"shape": "S6f"
|
994
1031
|
}
|
995
1032
|
},
|
996
1033
|
"TextModelVersion": {}
|
@@ -1037,11 +1074,11 @@
|
|
1037
1074
|
"type": "structure",
|
1038
1075
|
"members": {
|
1039
1076
|
"Urls": {
|
1040
|
-
"shape": "
|
1077
|
+
"shape": "S6o"
|
1041
1078
|
},
|
1042
1079
|
"Name": {},
|
1043
1080
|
"KnownGender": {
|
1044
|
-
"shape": "
|
1081
|
+
"shape": "S6q"
|
1045
1082
|
}
|
1046
1083
|
}
|
1047
1084
|
}
|
@@ -1067,7 +1104,7 @@
|
|
1067
1104
|
"JobStatus": {},
|
1068
1105
|
"StatusMessage": {},
|
1069
1106
|
"VideoMetadata": {
|
1070
|
-
"shape": "
|
1107
|
+
"shape": "S6z"
|
1071
1108
|
},
|
1072
1109
|
"NextToken": {},
|
1073
1110
|
"Celebrities": {
|
@@ -1082,7 +1119,7 @@
|
|
1082
1119
|
"type": "structure",
|
1083
1120
|
"members": {
|
1084
1121
|
"Urls": {
|
1085
|
-
"shape": "
|
1122
|
+
"shape": "S6o"
|
1086
1123
|
},
|
1087
1124
|
"Name": {},
|
1088
1125
|
"Id": {},
|
@@ -1093,10 +1130,10 @@
|
|
1093
1130
|
"shape": "Sc"
|
1094
1131
|
},
|
1095
1132
|
"Face": {
|
1096
|
-
"shape": "
|
1133
|
+
"shape": "S4e"
|
1097
1134
|
},
|
1098
1135
|
"KnownGender": {
|
1099
|
-
"shape": "
|
1136
|
+
"shape": "S6q"
|
1100
1137
|
}
|
1101
1138
|
}
|
1102
1139
|
}
|
@@ -1127,7 +1164,7 @@
|
|
1127
1164
|
"JobStatus": {},
|
1128
1165
|
"StatusMessage": {},
|
1129
1166
|
"VideoMetadata": {
|
1130
|
-
"shape": "
|
1167
|
+
"shape": "S6z"
|
1131
1168
|
},
|
1132
1169
|
"ModerationLabels": {
|
1133
1170
|
"type": "list",
|
@@ -1138,7 +1175,7 @@
|
|
1138
1175
|
"type": "long"
|
1139
1176
|
},
|
1140
1177
|
"ModerationLabel": {
|
1141
|
-
"shape": "
|
1178
|
+
"shape": "S5n"
|
1142
1179
|
}
|
1143
1180
|
}
|
1144
1181
|
}
|
@@ -1168,7 +1205,7 @@
|
|
1168
1205
|
"JobStatus": {},
|
1169
1206
|
"StatusMessage": {},
|
1170
1207
|
"VideoMetadata": {
|
1171
|
-
"shape": "
|
1208
|
+
"shape": "S6z"
|
1172
1209
|
},
|
1173
1210
|
"NextToken": {},
|
1174
1211
|
"Faces": {
|
@@ -1180,7 +1217,7 @@
|
|
1180
1217
|
"type": "long"
|
1181
1218
|
},
|
1182
1219
|
"Face": {
|
1183
|
-
"shape": "
|
1220
|
+
"shape": "S4e"
|
1184
1221
|
}
|
1185
1222
|
}
|
1186
1223
|
}
|
@@ -1188,6 +1225,40 @@
|
|
1188
1225
|
}
|
1189
1226
|
}
|
1190
1227
|
},
|
1228
|
+
"GetFaceLivenessSessionResults": {
|
1229
|
+
"input": {
|
1230
|
+
"type": "structure",
|
1231
|
+
"required": [
|
1232
|
+
"SessionId"
|
1233
|
+
],
|
1234
|
+
"members": {
|
1235
|
+
"SessionId": {}
|
1236
|
+
}
|
1237
|
+
},
|
1238
|
+
"output": {
|
1239
|
+
"type": "structure",
|
1240
|
+
"required": [
|
1241
|
+
"SessionId",
|
1242
|
+
"Status"
|
1243
|
+
],
|
1244
|
+
"members": {
|
1245
|
+
"SessionId": {},
|
1246
|
+
"Status": {},
|
1247
|
+
"Confidence": {
|
1248
|
+
"type": "float"
|
1249
|
+
},
|
1250
|
+
"ReferenceImage": {
|
1251
|
+
"shape": "S7h"
|
1252
|
+
},
|
1253
|
+
"AuditImages": {
|
1254
|
+
"type": "list",
|
1255
|
+
"member": {
|
1256
|
+
"shape": "S7h"
|
1257
|
+
}
|
1258
|
+
}
|
1259
|
+
}
|
1260
|
+
}
|
1261
|
+
},
|
1191
1262
|
"GetFaceSearch": {
|
1192
1263
|
"input": {
|
1193
1264
|
"type": "structure",
|
@@ -1210,7 +1281,7 @@
|
|
1210
1281
|
"StatusMessage": {},
|
1211
1282
|
"NextToken": {},
|
1212
1283
|
"VideoMetadata": {
|
1213
|
-
"shape": "
|
1284
|
+
"shape": "S6z"
|
1214
1285
|
},
|
1215
1286
|
"Persons": {
|
1216
1287
|
"type": "list",
|
@@ -1221,10 +1292,10 @@
|
|
1221
1292
|
"type": "long"
|
1222
1293
|
},
|
1223
1294
|
"Person": {
|
1224
|
-
"shape": "
|
1295
|
+
"shape": "S7p"
|
1225
1296
|
},
|
1226
1297
|
"FaceMatches": {
|
1227
|
-
"shape": "
|
1298
|
+
"shape": "S7r"
|
1228
1299
|
}
|
1229
1300
|
}
|
1230
1301
|
}
|
@@ -1254,7 +1325,7 @@
|
|
1254
1325
|
"JobStatus": {},
|
1255
1326
|
"StatusMessage": {},
|
1256
1327
|
"VideoMetadata": {
|
1257
|
-
"shape": "
|
1328
|
+
"shape": "S6z"
|
1258
1329
|
},
|
1259
1330
|
"NextToken": {},
|
1260
1331
|
"Labels": {
|
@@ -1266,7 +1337,7 @@
|
|
1266
1337
|
"type": "long"
|
1267
1338
|
},
|
1268
1339
|
"Label": {
|
1269
|
-
"shape": "
|
1340
|
+
"shape": "S4z"
|
1270
1341
|
},
|
1271
1342
|
"StartTimestampMillis": {
|
1272
1343
|
"type": "long"
|
@@ -1305,7 +1376,7 @@
|
|
1305
1376
|
"JobStatus": {},
|
1306
1377
|
"StatusMessage": {},
|
1307
1378
|
"VideoMetadata": {
|
1308
|
-
"shape": "
|
1379
|
+
"shape": "S6z"
|
1309
1380
|
},
|
1310
1381
|
"NextToken": {},
|
1311
1382
|
"Persons": {
|
@@ -1317,7 +1388,7 @@
|
|
1317
1388
|
"type": "long"
|
1318
1389
|
},
|
1319
1390
|
"Person": {
|
1320
|
-
"shape": "
|
1391
|
+
"shape": "S7p"
|
1321
1392
|
}
|
1322
1393
|
}
|
1323
1394
|
}
|
@@ -1347,7 +1418,7 @@
|
|
1347
1418
|
"VideoMetadata": {
|
1348
1419
|
"type": "list",
|
1349
1420
|
"member": {
|
1350
|
-
"shape": "
|
1421
|
+
"shape": "S6z"
|
1351
1422
|
}
|
1352
1423
|
},
|
1353
1424
|
"AudioMetadata": {
|
@@ -1452,7 +1523,7 @@
|
|
1452
1523
|
"JobStatus": {},
|
1453
1524
|
"StatusMessage": {},
|
1454
1525
|
"VideoMetadata": {
|
1455
|
-
"shape": "
|
1526
|
+
"shape": "S6z"
|
1456
1527
|
},
|
1457
1528
|
"TextDetections": {
|
1458
1529
|
"type": "list",
|
@@ -1463,7 +1534,7 @@
|
|
1463
1534
|
"type": "long"
|
1464
1535
|
},
|
1465
1536
|
"TextDetection": {
|
1466
|
-
"shape": "
|
1537
|
+
"shape": "S6f"
|
1467
1538
|
}
|
1468
1539
|
}
|
1469
1540
|
}
|
@@ -1487,7 +1558,7 @@
|
|
1487
1558
|
},
|
1488
1559
|
"ExternalImageId": {},
|
1489
1560
|
"DetectionAttributes": {
|
1490
|
-
"shape": "
|
1561
|
+
"shape": "S4a"
|
1491
1562
|
},
|
1492
1563
|
"MaxFaces": {
|
1493
1564
|
"type": "integer"
|
@@ -1504,10 +1575,10 @@
|
|
1504
1575
|
"type": "structure",
|
1505
1576
|
"members": {
|
1506
1577
|
"Face": {
|
1507
|
-
"shape": "
|
1578
|
+
"shape": "S7t"
|
1508
1579
|
},
|
1509
1580
|
"FaceDetail": {
|
1510
|
-
"shape": "
|
1581
|
+
"shape": "S4e"
|
1511
1582
|
}
|
1512
1583
|
}
|
1513
1584
|
}
|
@@ -1524,7 +1595,7 @@
|
|
1524
1595
|
"member": {}
|
1525
1596
|
},
|
1526
1597
|
"FaceDetail": {
|
1527
|
-
"shape": "
|
1598
|
+
"shape": "S4e"
|
1528
1599
|
}
|
1529
1600
|
}
|
1530
1601
|
}
|
@@ -1654,7 +1725,7 @@
|
|
1654
1725
|
"Faces": {
|
1655
1726
|
"type": "list",
|
1656
1727
|
"member": {
|
1657
|
-
"shape": "
|
1728
|
+
"shape": "S7t"
|
1658
1729
|
}
|
1659
1730
|
},
|
1660
1731
|
"NextToken": {},
|
@@ -1790,7 +1861,7 @@
|
|
1790
1861
|
"type": "structure",
|
1791
1862
|
"members": {
|
1792
1863
|
"Urls": {
|
1793
|
-
"shape": "
|
1864
|
+
"shape": "S6o"
|
1794
1865
|
},
|
1795
1866
|
"Name": {},
|
1796
1867
|
"Id": {},
|
@@ -1801,7 +1872,7 @@
|
|
1801
1872
|
"type": "float"
|
1802
1873
|
},
|
1803
1874
|
"KnownGender": {
|
1804
|
-
"shape": "
|
1875
|
+
"shape": "S6q"
|
1805
1876
|
}
|
1806
1877
|
}
|
1807
1878
|
}
|
@@ -1839,7 +1910,7 @@
|
|
1839
1910
|
"members": {
|
1840
1911
|
"SearchedFaceId": {},
|
1841
1912
|
"FaceMatches": {
|
1842
|
-
"shape": "
|
1913
|
+
"shape": "S7r"
|
1843
1914
|
},
|
1844
1915
|
"FaceModelVersion": {}
|
1845
1916
|
}
|
@@ -1876,7 +1947,7 @@
|
|
1876
1947
|
"type": "float"
|
1877
1948
|
},
|
1878
1949
|
"FaceMatches": {
|
1879
|
-
"shape": "
|
1950
|
+
"shape": "S7r"
|
1880
1951
|
},
|
1881
1952
|
"FaceModelVersion": {}
|
1882
1953
|
}
|
@@ -1890,11 +1961,11 @@
|
|
1890
1961
|
],
|
1891
1962
|
"members": {
|
1892
1963
|
"Video": {
|
1893
|
-
"shape": "
|
1964
|
+
"shape": "Sae"
|
1894
1965
|
},
|
1895
1966
|
"ClientRequestToken": {},
|
1896
1967
|
"NotificationChannel": {
|
1897
|
-
"shape": "
|
1968
|
+
"shape": "Saf"
|
1898
1969
|
},
|
1899
1970
|
"JobTag": {}
|
1900
1971
|
}
|
@@ -1915,14 +1986,14 @@
|
|
1915
1986
|
],
|
1916
1987
|
"members": {
|
1917
1988
|
"Video": {
|
1918
|
-
"shape": "
|
1989
|
+
"shape": "Sae"
|
1919
1990
|
},
|
1920
1991
|
"MinConfidence": {
|
1921
1992
|
"type": "float"
|
1922
1993
|
},
|
1923
1994
|
"ClientRequestToken": {},
|
1924
1995
|
"NotificationChannel": {
|
1925
|
-
"shape": "
|
1996
|
+
"shape": "Saf"
|
1926
1997
|
},
|
1927
1998
|
"JobTag": {}
|
1928
1999
|
}
|
@@ -1943,11 +2014,11 @@
|
|
1943
2014
|
],
|
1944
2015
|
"members": {
|
1945
2016
|
"Video": {
|
1946
|
-
"shape": "
|
2017
|
+
"shape": "Sae"
|
1947
2018
|
},
|
1948
2019
|
"ClientRequestToken": {},
|
1949
2020
|
"NotificationChannel": {
|
1950
|
-
"shape": "
|
2021
|
+
"shape": "Saf"
|
1951
2022
|
},
|
1952
2023
|
"FaceAttributes": {},
|
1953
2024
|
"JobTag": {}
|
@@ -1970,7 +2041,7 @@
|
|
1970
2041
|
],
|
1971
2042
|
"members": {
|
1972
2043
|
"Video": {
|
1973
|
-
"shape": "
|
2044
|
+
"shape": "Sae"
|
1974
2045
|
},
|
1975
2046
|
"ClientRequestToken": {},
|
1976
2047
|
"FaceMatchThreshold": {
|
@@ -1978,7 +2049,7 @@
|
|
1978
2049
|
},
|
1979
2050
|
"CollectionId": {},
|
1980
2051
|
"NotificationChannel": {
|
1981
|
-
"shape": "
|
2052
|
+
"shape": "Saf"
|
1982
2053
|
},
|
1983
2054
|
"JobTag": {}
|
1984
2055
|
}
|
@@ -1999,14 +2070,14 @@
|
|
1999
2070
|
],
|
2000
2071
|
"members": {
|
2001
2072
|
"Video": {
|
2002
|
-
"shape": "
|
2073
|
+
"shape": "Sae"
|
2003
2074
|
},
|
2004
2075
|
"ClientRequestToken": {},
|
2005
2076
|
"MinConfidence": {
|
2006
2077
|
"type": "float"
|
2007
2078
|
},
|
2008
2079
|
"NotificationChannel": {
|
2009
|
-
"shape": "
|
2080
|
+
"shape": "Saf"
|
2010
2081
|
},
|
2011
2082
|
"JobTag": {},
|
2012
2083
|
"Features": {
|
@@ -2017,7 +2088,7 @@
|
|
2017
2088
|
"type": "structure",
|
2018
2089
|
"members": {
|
2019
2090
|
"GeneralLabels": {
|
2020
|
-
"shape": "
|
2091
|
+
"shape": "S4s"
|
2021
2092
|
}
|
2022
2093
|
}
|
2023
2094
|
}
|
@@ -2039,11 +2110,11 @@
|
|
2039
2110
|
],
|
2040
2111
|
"members": {
|
2041
2112
|
"Video": {
|
2042
|
-
"shape": "
|
2113
|
+
"shape": "Sae"
|
2043
2114
|
},
|
2044
2115
|
"ClientRequestToken": {},
|
2045
2116
|
"NotificationChannel": {
|
2046
|
-
"shape": "
|
2117
|
+
"shape": "Saf"
|
2047
2118
|
},
|
2048
2119
|
"JobTag": {}
|
2049
2120
|
}
|
@@ -2089,11 +2160,11 @@
|
|
2089
2160
|
],
|
2090
2161
|
"members": {
|
2091
2162
|
"Video": {
|
2092
|
-
"shape": "
|
2163
|
+
"shape": "Sae"
|
2093
2164
|
},
|
2094
2165
|
"ClientRequestToken": {},
|
2095
2166
|
"NotificationChannel": {
|
2096
|
-
"shape": "
|
2167
|
+
"shape": "Saf"
|
2097
2168
|
},
|
2098
2169
|
"JobTag": {},
|
2099
2170
|
"Filters": {
|
@@ -2189,21 +2260,21 @@
|
|
2189
2260
|
],
|
2190
2261
|
"members": {
|
2191
2262
|
"Video": {
|
2192
|
-
"shape": "
|
2263
|
+
"shape": "Sae"
|
2193
2264
|
},
|
2194
2265
|
"ClientRequestToken": {},
|
2195
2266
|
"NotificationChannel": {
|
2196
|
-
"shape": "
|
2267
|
+
"shape": "Saf"
|
2197
2268
|
},
|
2198
2269
|
"JobTag": {},
|
2199
2270
|
"Filters": {
|
2200
2271
|
"type": "structure",
|
2201
2272
|
"members": {
|
2202
2273
|
"WordFilter": {
|
2203
|
-
"shape": "
|
2274
|
+
"shape": "S6a"
|
2204
2275
|
},
|
2205
2276
|
"RegionsOfInterest": {
|
2206
|
-
"shape": "
|
2277
|
+
"shape": "S2e"
|
2207
2278
|
}
|
2208
2279
|
}
|
2209
2280
|
}
|
@@ -2330,7 +2401,7 @@
|
|
2330
2401
|
"type": "structure",
|
2331
2402
|
"members": {
|
2332
2403
|
"Labels": {
|
2333
|
-
"shape": "
|
2404
|
+
"shape": "S29"
|
2334
2405
|
},
|
2335
2406
|
"MinConfidence": {
|
2336
2407
|
"type": "float"
|
@@ -2340,10 +2411,10 @@
|
|
2340
2411
|
}
|
2341
2412
|
},
|
2342
2413
|
"RegionsOfInterestForUpdate": {
|
2343
|
-
"shape": "
|
2414
|
+
"shape": "S2e"
|
2344
2415
|
},
|
2345
2416
|
"DataSharingPreferenceForUpdate": {
|
2346
|
-
"shape": "
|
2417
|
+
"shape": "S2i"
|
2347
2418
|
},
|
2348
2419
|
"ParametersToDelete": {
|
2349
2420
|
"type": "list",
|
@@ -2503,15 +2574,15 @@
|
|
2503
2574
|
}
|
2504
2575
|
}
|
2505
2576
|
},
|
2506
|
-
"
|
2577
|
+
"S1s": {
|
2507
2578
|
"type": "structure",
|
2508
2579
|
"members": {
|
2509
2580
|
"Assets": {
|
2510
|
-
"shape": "
|
2581
|
+
"shape": "S1t"
|
2511
2582
|
}
|
2512
2583
|
}
|
2513
2584
|
},
|
2514
|
-
"
|
2585
|
+
"S1t": {
|
2515
2586
|
"type": "list",
|
2516
2587
|
"member": {
|
2517
2588
|
"type": "structure",
|
@@ -2522,18 +2593,18 @@
|
|
2522
2593
|
}
|
2523
2594
|
}
|
2524
2595
|
},
|
2525
|
-
"
|
2596
|
+
"S1v": {
|
2526
2597
|
"type": "structure",
|
2527
2598
|
"members": {
|
2528
2599
|
"Assets": {
|
2529
|
-
"shape": "
|
2600
|
+
"shape": "S1t"
|
2530
2601
|
},
|
2531
2602
|
"AutoCreate": {
|
2532
2603
|
"type": "boolean"
|
2533
2604
|
}
|
2534
2605
|
}
|
2535
2606
|
},
|
2536
|
-
"
|
2607
|
+
"S1y": {
|
2537
2608
|
"type": "structure",
|
2538
2609
|
"members": {
|
2539
2610
|
"KinesisVideoStream": {
|
@@ -2544,7 +2615,7 @@
|
|
2544
2615
|
}
|
2545
2616
|
}
|
2546
2617
|
},
|
2547
|
-
"
|
2618
|
+
"S21": {
|
2548
2619
|
"type": "structure",
|
2549
2620
|
"members": {
|
2550
2621
|
"KinesisDataStream": {
|
@@ -2562,7 +2633,7 @@
|
|
2562
2633
|
}
|
2563
2634
|
}
|
2564
2635
|
},
|
2565
|
-
"
|
2636
|
+
"S26": {
|
2566
2637
|
"type": "structure",
|
2567
2638
|
"members": {
|
2568
2639
|
"FaceSearch": {
|
@@ -2581,7 +2652,7 @@
|
|
2581
2652
|
],
|
2582
2653
|
"members": {
|
2583
2654
|
"Labels": {
|
2584
|
-
"shape": "
|
2655
|
+
"shape": "S29"
|
2585
2656
|
},
|
2586
2657
|
"MinConfidence": {
|
2587
2658
|
"type": "float"
|
@@ -2590,11 +2661,11 @@
|
|
2590
2661
|
}
|
2591
2662
|
}
|
2592
2663
|
},
|
2593
|
-
"
|
2664
|
+
"S29": {
|
2594
2665
|
"type": "list",
|
2595
2666
|
"member": {}
|
2596
2667
|
},
|
2597
|
-
"
|
2668
|
+
"S2c": {
|
2598
2669
|
"type": "structure",
|
2599
2670
|
"required": [
|
2600
2671
|
"SNSTopicArn"
|
@@ -2603,7 +2674,7 @@
|
|
2603
2674
|
"SNSTopicArn": {}
|
2604
2675
|
}
|
2605
2676
|
},
|
2606
|
-
"
|
2677
|
+
"S2e": {
|
2607
2678
|
"type": "list",
|
2608
2679
|
"member": {
|
2609
2680
|
"type": "structure",
|
@@ -2612,12 +2683,12 @@
|
|
2612
2683
|
"shape": "Sc"
|
2613
2684
|
},
|
2614
2685
|
"Polygon": {
|
2615
|
-
"shape": "
|
2686
|
+
"shape": "S2g"
|
2616
2687
|
}
|
2617
2688
|
}
|
2618
2689
|
}
|
2619
2690
|
},
|
2620
|
-
"
|
2691
|
+
"S2g": {
|
2621
2692
|
"type": "list",
|
2622
2693
|
"member": {
|
2623
2694
|
"type": "structure",
|
@@ -2631,7 +2702,7 @@
|
|
2631
2702
|
}
|
2632
2703
|
}
|
2633
2704
|
},
|
2634
|
-
"
|
2705
|
+
"S2i": {
|
2635
2706
|
"type": "structure",
|
2636
2707
|
"required": [
|
2637
2708
|
"OptIn"
|
@@ -2642,34 +2713,34 @@
|
|
2642
2713
|
}
|
2643
2714
|
}
|
2644
2715
|
},
|
2645
|
-
"
|
2716
|
+
"S2q": {
|
2646
2717
|
"type": "list",
|
2647
2718
|
"member": {}
|
2648
2719
|
},
|
2649
|
-
"
|
2720
|
+
"S3p": {
|
2650
2721
|
"type": "structure",
|
2651
2722
|
"members": {
|
2652
2723
|
"Assets": {
|
2653
|
-
"shape": "
|
2724
|
+
"shape": "S1t"
|
2654
2725
|
}
|
2655
2726
|
}
|
2656
2727
|
},
|
2657
|
-
"
|
2728
|
+
"S48": {
|
2658
2729
|
"type": "structure",
|
2659
2730
|
"members": {
|
2660
2731
|
"BoundingBox": {
|
2661
2732
|
"shape": "Sc"
|
2662
2733
|
},
|
2663
2734
|
"Polygon": {
|
2664
|
-
"shape": "
|
2735
|
+
"shape": "S2g"
|
2665
2736
|
}
|
2666
2737
|
}
|
2667
2738
|
},
|
2668
|
-
"
|
2739
|
+
"S4a": {
|
2669
2740
|
"type": "list",
|
2670
2741
|
"member": {}
|
2671
2742
|
},
|
2672
|
-
"
|
2743
|
+
"S4e": {
|
2673
2744
|
"type": "structure",
|
2674
2745
|
"members": {
|
2675
2746
|
"BoundingBox": {
|
@@ -2781,28 +2852,28 @@
|
|
2781
2852
|
}
|
2782
2853
|
}
|
2783
2854
|
},
|
2784
|
-
"
|
2855
|
+
"S4s": {
|
2785
2856
|
"type": "structure",
|
2786
2857
|
"members": {
|
2787
2858
|
"LabelInclusionFilters": {
|
2788
|
-
"shape": "
|
2859
|
+
"shape": "S4t"
|
2789
2860
|
},
|
2790
2861
|
"LabelExclusionFilters": {
|
2791
|
-
"shape": "
|
2862
|
+
"shape": "S4t"
|
2792
2863
|
},
|
2793
2864
|
"LabelCategoryInclusionFilters": {
|
2794
|
-
"shape": "
|
2865
|
+
"shape": "S4t"
|
2795
2866
|
},
|
2796
2867
|
"LabelCategoryExclusionFilters": {
|
2797
|
-
"shape": "
|
2868
|
+
"shape": "S4t"
|
2798
2869
|
}
|
2799
2870
|
}
|
2800
2871
|
},
|
2801
|
-
"
|
2872
|
+
"S4t": {
|
2802
2873
|
"type": "list",
|
2803
2874
|
"member": {}
|
2804
2875
|
},
|
2805
|
-
"
|
2876
|
+
"S4z": {
|
2806
2877
|
"type": "structure",
|
2807
2878
|
"members": {
|
2808
2879
|
"Name": {},
|
@@ -2821,7 +2892,7 @@
|
|
2821
2892
|
"type": "float"
|
2822
2893
|
},
|
2823
2894
|
"DominantColors": {
|
2824
|
-
"shape": "
|
2895
|
+
"shape": "S52"
|
2825
2896
|
}
|
2826
2897
|
}
|
2827
2898
|
}
|
@@ -2855,7 +2926,7 @@
|
|
2855
2926
|
}
|
2856
2927
|
}
|
2857
2928
|
},
|
2858
|
-
"
|
2929
|
+
"S52": {
|
2859
2930
|
"type": "list",
|
2860
2931
|
"member": {
|
2861
2932
|
"type": "structure",
|
@@ -2878,7 +2949,7 @@
|
|
2878
2949
|
}
|
2879
2950
|
}
|
2880
2951
|
},
|
2881
|
-
"
|
2952
|
+
"S5b": {
|
2882
2953
|
"type": "structure",
|
2883
2954
|
"members": {
|
2884
2955
|
"Brightness": {
|
@@ -2892,7 +2963,7 @@
|
|
2892
2963
|
}
|
2893
2964
|
}
|
2894
2965
|
},
|
2895
|
-
"
|
2966
|
+
"S5n": {
|
2896
2967
|
"type": "structure",
|
2897
2968
|
"members": {
|
2898
2969
|
"Confidence": {
|
@@ -2902,13 +2973,13 @@
|
|
2902
2973
|
"ParentName": {}
|
2903
2974
|
}
|
2904
2975
|
},
|
2905
|
-
"
|
2976
|
+
"S67": {
|
2906
2977
|
"type": "list",
|
2907
2978
|
"member": {
|
2908
2979
|
"type": "integer"
|
2909
2980
|
}
|
2910
2981
|
},
|
2911
|
-
"
|
2982
|
+
"S6a": {
|
2912
2983
|
"type": "structure",
|
2913
2984
|
"members": {
|
2914
2985
|
"MinConfidence": {
|
@@ -2922,7 +2993,7 @@
|
|
2922
2993
|
}
|
2923
2994
|
}
|
2924
2995
|
},
|
2925
|
-
"
|
2996
|
+
"S6f": {
|
2926
2997
|
"type": "structure",
|
2927
2998
|
"members": {
|
2928
2999
|
"DetectedText": {},
|
@@ -2937,21 +3008,21 @@
|
|
2937
3008
|
"type": "float"
|
2938
3009
|
},
|
2939
3010
|
"Geometry": {
|
2940
|
-
"shape": "
|
3011
|
+
"shape": "S48"
|
2941
3012
|
}
|
2942
3013
|
}
|
2943
3014
|
},
|
2944
|
-
"
|
3015
|
+
"S6o": {
|
2945
3016
|
"type": "list",
|
2946
3017
|
"member": {}
|
2947
3018
|
},
|
2948
|
-
"
|
3019
|
+
"S6q": {
|
2949
3020
|
"type": "structure",
|
2950
3021
|
"members": {
|
2951
3022
|
"Type": {}
|
2952
3023
|
}
|
2953
3024
|
},
|
2954
|
-
"
|
3025
|
+
"S6z": {
|
2955
3026
|
"type": "structure",
|
2956
3027
|
"members": {
|
2957
3028
|
"Codec": {},
|
@@ -2971,7 +3042,22 @@
|
|
2971
3042
|
"ColorRange": {}
|
2972
3043
|
}
|
2973
3044
|
},
|
2974
|
-
"
|
3045
|
+
"S7h": {
|
3046
|
+
"type": "structure",
|
3047
|
+
"members": {
|
3048
|
+
"Bytes": {
|
3049
|
+
"type": "blob",
|
3050
|
+
"sensitive": true
|
3051
|
+
},
|
3052
|
+
"S3Object": {
|
3053
|
+
"shape": "S4"
|
3054
|
+
},
|
3055
|
+
"BoundingBox": {
|
3056
|
+
"shape": "Sc"
|
3057
|
+
}
|
3058
|
+
}
|
3059
|
+
},
|
3060
|
+
"S7p": {
|
2975
3061
|
"type": "structure",
|
2976
3062
|
"members": {
|
2977
3063
|
"Index": {
|
@@ -2981,11 +3067,11 @@
|
|
2981
3067
|
"shape": "Sc"
|
2982
3068
|
},
|
2983
3069
|
"Face": {
|
2984
|
-
"shape": "
|
3070
|
+
"shape": "S4e"
|
2985
3071
|
}
|
2986
3072
|
}
|
2987
3073
|
},
|
2988
|
-
"
|
3074
|
+
"S7r": {
|
2989
3075
|
"type": "list",
|
2990
3076
|
"member": {
|
2991
3077
|
"type": "structure",
|
@@ -2994,12 +3080,12 @@
|
|
2994
3080
|
"type": "float"
|
2995
3081
|
},
|
2996
3082
|
"Face": {
|
2997
|
-
"shape": "
|
3083
|
+
"shape": "S7t"
|
2998
3084
|
}
|
2999
3085
|
}
|
3000
3086
|
}
|
3001
3087
|
},
|
3002
|
-
"
|
3088
|
+
"S7t": {
|
3003
3089
|
"type": "structure",
|
3004
3090
|
"members": {
|
3005
3091
|
"FaceId": {},
|
@@ -3014,7 +3100,7 @@
|
|
3014
3100
|
"IndexFacesModelVersion": {}
|
3015
3101
|
}
|
3016
3102
|
},
|
3017
|
-
"
|
3103
|
+
"Sae": {
|
3018
3104
|
"type": "structure",
|
3019
3105
|
"members": {
|
3020
3106
|
"S3Object": {
|
@@ -3022,7 +3108,7 @@
|
|
3022
3108
|
}
|
3023
3109
|
}
|
3024
3110
|
},
|
3025
|
-
"
|
3111
|
+
"Saf": {
|
3026
3112
|
"type": "structure",
|
3027
3113
|
"required": [
|
3028
3114
|
"SNSTopicArn",
|