prowler-sdk-poc
Version:
2,291 lines • 51.7 kB
JSON
{
"version": "2.0",
"metadata": {
"apiVersion": "2016-06-27",
"endpointPrefix": "rekognition",
"jsonVersion": "1.1",
"protocol": "json",
"serviceFullName": "Amazon Rekognition",
"serviceId": "Rekognition",
"signatureVersion": "v4",
"targetPrefix": "RekognitionService",
"uid": "rekognition-2016-06-27"
},
"operations": {
"CompareFaces": {
"input": {
"type": "structure",
"required": [
"SourceImage",
"TargetImage"
],
"members": {
"SourceImage": {
"shape": "S2"
},
"TargetImage": {
"shape": "S2"
},
"SimilarityThreshold": {
"type": "float"
},
"QualityFilter": {}
}
},
"output": {
"type": "structure",
"members": {
"SourceImageFace": {
"type": "structure",
"members": {
"BoundingBox": {
"shape": "Sc"
},
"Confidence": {
"type": "float"
}
}
},
"FaceMatches": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Similarity": {
"type": "float"
},
"Face": {
"shape": "Sg"
}
}
}
},
"UnmatchedFaces": {
"type": "list",
"member": {
"shape": "Sg"
}
},
"SourceImageOrientationCorrection": {},
"TargetImageOrientationCorrection": {}
}
}
},
"CreateCollection": {
"input": {
"type": "structure",
"required": [
"CollectionId"
],
"members": {
"CollectionId": {},
"Tags": {
"shape": "Sw"
}
}
},
"output": {
"type": "structure",
"members": {
"StatusCode": {
"type": "integer"
},
"CollectionArn": {},
"FaceModelVersion": {}
}
}
},
"CreateProject": {
"input": {
"type": "structure",
"required": [
"ProjectName"
],
"members": {
"ProjectName": {}
}
},
"output": {
"type": "structure",
"members": {
"ProjectArn": {}
}
}
},
"CreateProjectVersion": {
"input": {
"type": "structure",
"required": [
"ProjectArn",
"VersionName",
"OutputConfig",
"TrainingData",
"TestingData"
],
"members": {
"ProjectArn": {},
"VersionName": {},
"OutputConfig": {
"shape": "S18"
},
"TrainingData": {
"shape": "S1a"
},
"TestingData": {
"shape": "S1e"
},
"Tags": {
"shape": "Sw"
},
"KmsKeyId": {}
}
},
"output": {
"type": "structure",
"members": {
"ProjectVersionArn": {}
}
}
},
"CreateStreamProcessor": {
"input": {
"type": "structure",
"required": [
"Input",
"Output",
"Name",
"Settings",
"RoleArn"
],
"members": {
"Input": {
"shape": "S1j"
},
"Output": {
"shape": "S1m"
},
"Name": {},
"Settings": {
"shape": "S1q"
},
"RoleArn": {},
"Tags": {
"shape": "Sw"
}
}
},
"output": {
"type": "structure",
"members": {
"StreamProcessorArn": {}
}
}
},
"DeleteCollection": {
"input": {
"type": "structure",
"required": [
"CollectionId"
],
"members": {
"CollectionId": {}
}
},
"output": {
"type": "structure",
"members": {
"StatusCode": {
"type": "integer"
}
}
}
},
"DeleteFaces": {
"input": {
"type": "structure",
"required": [
"CollectionId",
"FaceIds"
],
"members": {
"CollectionId": {},
"FaceIds": {
"shape": "S1y"
}
}
},
"output": {
"type": "structure",
"members": {
"DeletedFaces": {
"shape": "S1y"
}
}
}
},
"DeleteProject": {
"input": {
"type": "structure",
"required": [
"ProjectArn"
],
"members": {
"ProjectArn": {}
}
},
"output": {
"type": "structure",
"members": {
"Status": {}
}
}
},
"DeleteProjectVersion": {
"input": {
"type": "structure",
"required": [
"ProjectVersionArn"
],
"members": {
"ProjectVersionArn": {}
}
},
"output": {
"type": "structure",
"members": {
"Status": {}
}
}
},
"DeleteStreamProcessor": {
"input": {
"type": "structure",
"required": [
"Name"
],
"members": {
"Name": {}
}
},
"output": {
"type": "structure",
"members": {}
}
},
"DescribeCollection": {
"input": {
"type": "structure",
"required": [
"CollectionId"
],
"members": {
"CollectionId": {}
}
},
"output": {
"type": "structure",
"members": {
"FaceCount": {
"type": "long"
},
"FaceModelVersion": {},
"CollectionARN": {},
"CreationTimestamp": {
"type": "timestamp"
}
}
}
},
"DescribeProjectVersions": {
"input": {
"type": "structure",
"required": [
"ProjectArn"
],
"members": {
"ProjectArn": {},
"VersionNames": {
"type": "list",
"member": {}
},
"NextToken": {},
"MaxResults": {
"type": "integer"
}
}
},
"output": {
"type": "structure",
"members": {
"ProjectVersionDescriptions": {
"type": "list",
"member": {
"type": "structure",
"members": {
"ProjectVersionArn": {},
"CreationTimestamp": {
"type": "timestamp"
},
"MinInferenceUnits": {
"type": "integer"
},
"Status": {},
"StatusMessage": {},
"BillableTrainingTimeInSeconds": {
"type": "long"
},
"TrainingEndTimestamp": {
"type": "timestamp"
},
"OutputConfig": {
"shape": "S18"
},
"TrainingDataResult": {
"type": "structure",
"members": {
"Input": {
"shape": "S1a"
},
"Output": {
"shape": "S1a"
},
"Validation": {
"shape": "S2n"
}
}
},
"TestingDataResult": {
"type": "structure",
"members": {
"Input": {
"shape": "S1e"
},
"Output": {
"shape": "S1e"
},
"Validation": {
"shape": "S2n"
}
}
},
"EvaluationResult": {
"type": "structure",
"members": {
"F1Score": {
"type": "float"
},
"Summary": {
"type": "structure",
"members": {
"S3Object": {
"shape": "S4"
}
}
}
}
},
"ManifestSummary": {
"shape": "S1d"
},
"KmsKeyId": {}
}
}
},
"NextToken": {}
}
}
},
"DescribeProjects": {
"input": {
"type": "structure",
"members": {
"NextToken": {},
"MaxResults": {
"type": "integer"
}
}
},
"output": {
"type": "structure",
"members": {
"ProjectDescriptions": {
"type": "list",
"member": {
"type": "structure",
"members": {
"ProjectArn": {},
"CreationTimestamp": {
"type": "timestamp"
},
"Status": {}
}
}
},
"NextToken": {}
}
}
},
"DescribeStreamProcessor": {
"input": {
"type": "structure",
"required": [
"Name"
],
"members": {
"Name": {}
}
},
"output": {
"type": "structure",
"members": {
"Name": {},
"StreamProcessorArn": {},
"Status": {},
"StatusMessage": {},
"CreationTimestamp": {
"type": "timestamp"
},
"LastUpdateTimestamp": {
"type": "timestamp"
},
"Input": {
"shape": "S1j"
},
"Output": {
"shape": "S1m"
},
"RoleArn": {},
"Settings": {
"shape": "S1q"
}
}
}
},
"DetectCustomLabels": {
"input": {
"type": "structure",
"required": [
"ProjectVersionArn",
"Image"
],
"members": {
"ProjectVersionArn": {},
"Image": {
"shape": "S2"
},
"MaxResults": {
"type": "integer"
},
"MinConfidence": {
"type": "float"
}
}
},
"output": {
"type": "structure",
"members": {
"CustomLabels": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Name": {},
"Confidence": {
"type": "float"
},
"Geometry": {
"shape": "S33"
}
}
}
}
}
}
},
"DetectFaces": {
"input": {
"type": "structure",
"required": [
"Image"
],
"members": {
"Image": {
"shape": "S2"
},
"Attributes": {
"shape": "S37"
}
}
},
"output": {
"type": "structure",
"members": {
"FaceDetails": {
"type": "list",
"member": {
"shape": "S3b"
}
},
"OrientationCorrection": {}
}
}
},
"DetectLabels": {
"input": {
"type": "structure",
"required": [
"Image"
],
"members": {
"Image": {
"shape": "S2"
},
"MaxLabels": {
"type": "integer"
},
"MinConfidence": {
"type": "float"
}
}
},
"output": {
"type": "structure",
"members": {
"Labels": {
"type": "list",
"member": {
"shape": "S3o"
}
},
"OrientationCorrection": {},
"LabelModelVersion": {}
}
}
},
"DetectModerationLabels": {
"input": {
"type": "structure",
"required": [
"Image"
],
"members": {
"Image": {
"shape": "S2"
},
"MinConfidence": {
"type": "float"
},
"HumanLoopConfig": {
"type": "structure",
"required": [
"HumanLoopName",
"FlowDefinitionArn"
],
"members": {
"HumanLoopName": {},
"FlowDefinitionArn": {},
"DataAttributes": {
"type": "structure",
"members": {
"ContentClassifiers": {
"type": "list",
"member": {}
}
}
}
}
}
}
},
"output": {
"type": "structure",
"members": {
"ModerationLabels": {
"type": "list",
"member": {
"shape": "S42"
}
},
"ModerationModelVersion": {},
"HumanLoopActivationOutput": {
"type": "structure",
"members": {
"HumanLoopArn": {},
"HumanLoopActivationReasons": {
"type": "list",
"member": {}
},
"HumanLoopActivationConditionsEvaluationResults": {
"jsonvalue": true
}
}
}
}
}
},
"DetectProtectiveEquipment": {
"input": {
"type": "structure",
"required": [
"Image"
],
"members": {
"Image": {
"shape": "S2"
},
"SummarizationAttributes": {
"type": "structure",
"required": [
"MinConfidence",
"RequiredEquipmentTypes"
],
"members": {
"MinConfidence": {
"type": "float"
},
"RequiredEquipmentTypes": {
"type": "list",
"member": {}
}
}
}
}
},
"output": {
"type": "structure",
"members": {
"ProtectiveEquipmentModelVersion": {},
"Persons": {
"type": "list",
"member": {
"type": "structure",
"members": {
"BodyParts": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Name": {},
"Confidence": {
"type": "float"
},
"EquipmentDetections": {
"type": "list",
"member": {
"type": "structure",
"members": {
"BoundingBox": {
"shape": "Sc"
},
"Confidence": {
"type": "float"
},
"Type": {},
"CoversBodyPart": {
"type": "structure",
"members": {
"Confidence": {
"type": "float"
},
"Value": {
"type": "boolean"
}
}
}
}
}
}
}
}
},
"BoundingBox": {
"shape": "Sc"
},
"Confidence": {
"type": "float"
},
"Id": {
"type": "integer"
}
}
}
},
"Summary": {
"type": "structure",
"members": {
"PersonsWithRequiredEquipment": {
"shape": "S4m"
},
"PersonsWithoutRequiredEquipment": {
"shape": "S4m"
},
"PersonsIndeterminate": {
"shape": "S4m"
}
}
}
}
}
},
"DetectText": {
"input": {
"type": "structure",
"required": [
"Image"
],
"members": {
"Image": {
"shape": "S2"
},
"Filters": {
"type": "structure",
"members": {
"WordFilter": {
"shape": "S4p"
},
"RegionsOfInterest": {
"shape": "S4s"
}
}
}
}
},
"output": {
"type": "structure",
"members": {
"TextDetections": {
"type": "list",
"member": {
"shape": "S4w"
}
},
"TextModelVersion": {}
}
}
},
"GetCelebrityInfo": {
"input": {
"type": "structure",
"required": [
"Id"
],
"members": {
"Id": {}
}
},
"output": {
"type": "structure",
"members": {
"Urls": {
"shape": "S51"
},
"Name": {},
"KnownGender": {
"shape": "S53"
}
}
}
},
"GetCelebrityRecognition": {
"input": {
"type": "structure",
"required": [
"JobId"
],
"members": {
"JobId": {},
"MaxResults": {
"type": "integer"
},
"NextToken": {},
"SortBy": {}
}
},
"output": {
"type": "structure",
"members": {
"JobStatus": {},
"StatusMessage": {},
"VideoMetadata": {
"shape": "S5c"
},
"NextToken": {},
"Celebrities": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Timestamp": {
"type": "long"
},
"Celebrity": {
"type": "structure",
"members": {
"Urls": {
"shape": "S51"
},
"Name": {},
"Id": {},
"Confidence": {
"type": "float"
},
"BoundingBox": {
"shape": "Sc"
},
"Face": {
"shape": "S3b"
}
}
}
}
}
}
}
}
},
"GetContentModeration": {
"input": {
"type": "structure",
"required": [
"JobId"
],
"members": {
"JobId": {},
"MaxResults": {
"type": "integer"
},
"NextToken": {},
"SortBy": {}
}
},
"output": {
"type": "structure",
"members": {
"JobStatus": {},
"StatusMessage": {},
"VideoMetadata": {
"shape": "S5c"
},
"ModerationLabels": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Timestamp": {
"type": "long"
},
"ModerationLabel": {
"shape": "S42"
}
}
}
},
"NextToken": {},
"ModerationModelVersion": {}
}
}
},
"GetFaceDetection": {
"input": {
"type": "structure",
"required": [
"JobId"
],
"members": {
"JobId": {},
"MaxResults": {
"type": "integer"
},
"NextToken": {}
}
},
"output": {
"type": "structure",
"members": {
"JobStatus": {},
"StatusMessage": {},
"VideoMetadata": {
"shape": "S5c"
},
"NextToken": {},
"Faces": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Timestamp": {
"type": "long"
},
"Face": {
"shape": "S3b"
}
}
}
}
}
}
},
"GetFaceSearch": {
"input": {
"type": "structure",
"required": [
"JobId"
],
"members": {
"JobId": {},
"MaxResults": {
"type": "integer"
},
"NextToken": {},
"SortBy": {}
}
},
"output": {
"type": "structure",
"members": {
"JobStatus": {},
"StatusMessage": {},
"NextToken": {},
"VideoMetadata": {
"shape": "S5c"
},
"Persons": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Timestamp": {
"type": "long"
},
"Person": {
"shape": "S5w"
},
"FaceMatches": {
"shape": "S5y"
}
}
}
}
}
}
},
"GetLabelDetection": {
"input": {
"type": "structure",
"required": [
"JobId"
],
"members": {
"JobId": {},
"MaxResults": {
"type": "integer"
},
"NextToken": {},
"SortBy": {}
}
},
"output": {
"type": "structure",
"members": {
"JobStatus": {},
"StatusMessage": {},
"VideoMetadata": {
"shape": "S5c"
},
"NextToken": {},
"Labels": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Timestamp": {
"type": "long"
},
"Label": {
"shape": "S3o"
}
}
}
},
"LabelModelVersion": {}
}
}
},
"GetPersonTracking": {
"input": {
"type": "structure",
"required": [
"JobId"
],
"members": {
"JobId": {},
"MaxResults": {
"type": "integer"
},
"NextToken": {},
"SortBy": {}
}
},
"output": {
"type": "structure",
"members": {
"JobStatus": {},
"StatusMessage": {},
"VideoMetadata": {
"shape": "S5c"
},
"NextToken": {},
"Persons": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Timestamp": {
"type": "long"
},
"Person": {
"shape": "S5w"
}
}
}
}
}
}
},
"GetSegmentDetection": {
"input": {
"type": "structure",
"required": [
"JobId"
],
"members": {
"JobId": {},
"MaxResults": {
"type": "integer"
},
"NextToken": {}
}
},
"output": {
"type": "structure",
"members": {
"JobStatus": {},
"StatusMessage": {},
"VideoMetadata": {
"type": "list",
"member": {
"shape": "S5c"
}
},
"AudioMetadata": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Codec": {},
"DurationMillis": {
"type": "long"
},
"SampleRate": {
"type": "long"
},
"NumberOfChannels": {
"type": "long"
}
}
}
},
"NextToken": {},
"Segments": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Type": {},
"StartTimestampMillis": {
"type": "long"
},
"EndTimestampMillis": {
"type": "long"
},
"DurationMillis": {
"type": "long"
},
"StartTimecodeSMPTE": {},
"EndTimecodeSMPTE": {},
"DurationSMPTE": {},
"TechnicalCueSegment": {
"type": "structure",
"members": {
"Type": {},
"Confidence": {
"type": "float"
}
}
},
"ShotSegment": {
"type": "structure",
"members": {
"Index": {
"type": "long"
},
"Confidence": {
"type": "float"
}
}
},
"StartFrameNumber": {
"type": "long"
},
"EndFrameNumber": {
"type": "long"
},
"DurationFrames": {
"type": "long"
}
}
}
},
"SelectedSegmentTypes": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Type": {},
"ModelVersion": {}
}
}
}
}
}
},
"GetTextDetection": {
"input": {
"type": "structure",
"required": [
"JobId"
],
"members": {
"JobId": {},
"MaxResults": {
"type": "integer"
},
"NextToken": {}
}
},
"output": {
"type": "structure",
"members": {
"JobStatus": {},
"StatusMessage": {},
"VideoMetadata": {
"shape": "S5c"
},
"TextDetections": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Timestamp": {
"type": "long"
},
"TextDetection": {
"shape": "S4w"
}
}
}
},
"NextToken": {},
"TextModelVersion": {}
}
}
},
"IndexFaces": {
"input": {
"type": "structure",
"required": [
"CollectionId",
"Image"
],
"members": {
"CollectionId": {},
"Image": {
"shape": "S2"
},
"ExternalImageId": {},
"DetectionAttributes": {
"shape": "S37"
},
"MaxFaces": {
"type": "integer"
},
"QualityFilter": {}
}
},
"output": {
"type": "structure",
"members": {
"FaceRecords": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Face": {
"shape": "S60"
},
"FaceDetail": {
"shape": "S3b"
}
}
}
},
"OrientationCorrection": {},
"FaceModelVersion": {},
"UnindexedFaces": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Reasons": {
"type": "list",
"member": {}
},
"FaceDetail": {
"shape": "S3b"
}
}
}
}
}
}
},
"ListCollections": {
"input": {
"type": "structure",
"members": {
"NextToken": {},
"MaxResults": {
"type": "integer"
}
}
},
"output": {
"type": "structure",
"members": {
"CollectionIds": {
"type": "list",
"member": {}
},
"NextToken": {},
"FaceModelVersions": {
"type": "list",
"member": {}
}
}
}
},
"ListFaces": {
"input": {
"type": "structure",
"required": [
"CollectionId"
],
"members": {
"CollectionId": {},
"NextToken": {},
"MaxResults": {
"type": "integer"
}
}
},
"output": {
"type": "structure",
"members": {
"Faces": {
"type": "list",
"member": {
"shape": "S60"
}
},
"NextToken": {},
"FaceModelVersion": {}
}
}
},
"ListStreamProcessors": {
"input": {
"type": "structure",
"members": {
"NextToken": {},
"MaxResults": {
"type": "integer"
}
}
},
"output": {
"type": "structure",
"members": {
"NextToken": {},
"StreamProcessors": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Name": {},
"Status": {}
}
}
}
}
}
},
"ListTagsForResource": {
"input": {
"type": "structure",
"required": [
"ResourceArn"
],
"members": {
"ResourceArn": {}
}
},
"output": {
"type": "structure",
"members": {
"Tags": {
"shape": "Sw"
}
}
}
},
"RecognizeCelebrities": {
"input": {
"type": "structure",
"required": [
"Image"
],
"members": {
"Image": {
"shape": "S2"
}
}
},
"output": {
"type": "structure",
"members": {
"CelebrityFaces": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Urls": {
"shape": "S51"
},
"Name": {},
"Id": {},
"Face": {
"shape": "Sg"
},
"MatchConfidence": {
"type": "float"
},
"KnownGender": {
"shape": "S53"
}
}
}
},
"UnrecognizedFaces": {
"type": "list",
"member": {
"shape": "Sg"
}
},
"OrientationCorrection": {}
}
}
},
"SearchFaces": {
"input": {
"type": "structure",
"required": [
"CollectionId",
"FaceId"
],
"members": {
"CollectionId": {},
"FaceId": {},
"MaxFaces": {
"type": "integer"
},
"FaceMatchThreshold": {
"type": "float"
}
}
},
"output": {
"type": "structure",
"members": {
"SearchedFaceId": {},
"FaceMatches": {
"shape": "S5y"
},
"FaceModelVersion": {}
}
}
},
"SearchFacesByImage": {
"input": {
"type": "structure",
"required": [
"CollectionId",
"Image"
],
"members": {
"CollectionId": {},
"Image": {
"shape": "S2"
},
"MaxFaces": {
"type": "integer"
},
"FaceMatchThreshold": {
"type": "float"
},
"QualityFilter": {}
}
},
"output": {
"type": "structure",
"members": {
"SearchedFaceBoundingBox": {
"shape": "Sc"
},
"SearchedFaceConfidence": {
"type": "float"
},
"FaceMatches": {
"shape": "S5y"
},
"FaceModelVersion": {}
}
}
},
"StartCelebrityRecognition": {
"input": {
"type": "structure",
"required": [
"Video"
],
"members": {
"Video": {
"shape": "S7v"
},
"ClientRequestToken": {},
"NotificationChannel": {
"shape": "S7x"
},
"JobTag": {}
}
},
"output": {
"type": "structure",
"members": {
"JobId": {}
}
},
"idempotent": true
},
"StartContentModeration": {
"input": {
"type": "structure",
"required": [
"Video"
],
"members": {
"Video": {
"shape": "S7v"
},
"MinConfidence": {
"type": "float"
},
"ClientRequestToken": {},
"NotificationChannel": {
"shape": "S7x"
},
"JobTag": {}
}
},
"output": {
"type": "structure",
"members": {
"JobId": {}
}
},
"idempotent": true
},
"StartFaceDetection": {
"input": {
"type": "structure",
"required": [
"Video"
],
"members": {
"Video": {
"shape": "S7v"
},
"ClientRequestToken": {},
"NotificationChannel": {
"shape": "S7x"
},
"FaceAttributes": {},
"JobTag": {}
}
},
"output": {
"type": "structure",
"members": {
"JobId": {}
}
},
"idempotent": true
},
"StartFaceSearch": {
"input": {
"type": "structure",
"required": [
"Video",
"CollectionId"
],
"members": {
"Video": {
"shape": "S7v"
},
"ClientRequestToken": {},
"FaceMatchThreshold": {
"type": "float"
},
"CollectionId": {},
"NotificationChannel": {
"shape": "S7x"
},
"JobTag": {}
}
},
"output": {
"type": "structure",
"members": {
"JobId": {}
}
},
"idempotent": true
},
"StartLabelDetection": {
"input": {
"type": "structure",
"required": [
"Video"
],
"members": {
"Video": {
"shape": "S7v"
},
"ClientRequestToken": {},
"MinConfidence": {
"type": "float"
},
"NotificationChannel": {
"shape": "S7x"
},
"JobTag": {}
}
},
"output": {
"type": "structure",
"members": {
"JobId": {}
}
},
"idempotent": true
},
"StartPersonTracking": {
"input": {
"type": "structure",
"required": [
"Video"
],
"members": {
"Video": {
"shape": "S7v"
},
"ClientRequestToken": {},
"NotificationChannel": {
"shape": "S7x"
},
"JobTag": {}
}
},
"output": {
"type": "structure",
"members": {
"JobId": {}
}
},
"idempotent": true
},
"StartProjectVersion": {
"input": {
"type": "structure",
"required": [
"ProjectVersionArn",
"MinInferenceUnits"
],
"members": {
"ProjectVersionArn": {},
"MinInferenceUnits": {
"type": "integer"
}
}
},
"output": {
"type": "structure",
"members": {
"Status": {}
}
}
},
"StartSegmentDetection": {
"input": {
"type": "structure",
"required": [
"Video",
"SegmentTypes"
],
"members": {
"Video": {
"shape": "S7v"
},
"ClientRequestToken": {},
"NotificationChannel": {
"shape": "S7x"
},
"JobTag": {},
"Filters": {
"type": "structure",
"members": {
"TechnicalCueFilter": {
"type": "structure",
"members": {
"MinSegmentConfidence": {
"type": "float"
},
"BlackFrame": {
"type": "structure",
"members": {
"MaxPixelThreshold": {
"type": "float"
},
"MinCoveragePercentage": {
"type": "float"
}
}
}
}
},
"ShotFilter": {
"type": "structure",
"members": {
"MinSegmentConfidence": {
"type": "float"
}
}
}
}
},
"SegmentTypes": {
"type": "list",
"member": {}
}
}
},
"output": {
"type": "structure",
"members": {
"JobId": {}
}
},
"idempotent": true
},
"StartStreamProcessor": {
"input": {
"type": "structure",
"required": [
"Name"
],
"members": {
"Name": {}
}
},
"output": {
"type": "structure",
"members": {}
}
},
"StartTextDetection": {
"input": {
"type": "structure",
"required": [
"Video"
],
"members": {
"Video": {
"shape": "S7v"
},
"ClientRequestToken": {},
"NotificationChannel": {
"shape": "S7x"
},
"JobTag": {},
"Filters": {
"type": "structure",
"members": {
"WordFilter": {
"shape": "S4p"
},
"RegionsOfInterest": {
"shape": "S4s"
}
}
}
}
},
"output": {
"type": "structure",
"members": {
"JobId": {}
}
},
"idempotent": true
},
"StopProjectVersion": {
"input": {
"type": "structure",
"required": [
"ProjectVersionArn"
],
"members": {
"ProjectVersionArn": {}
}
},
"output": {
"type": "structure",
"members": {
"Status": {}
}
}
},
"StopStreamProcessor": {
"input": {
"type": "structure",
"required": [
"Name"
],
"members": {
"Name": {}
}
},
"output": {
"type": "structure",
"members": {}
}
},
"TagResource": {
"input": {
"type": "structure",
"required": [
"ResourceArn",
"Tags"
],
"members": {
"ResourceArn": {},
"Tags": {
"shape": "Sw"
}
}
},
"output": {
"type": "structure",
"members": {}
}
},
"UntagResource": {
"input": {
"type": "structure",
"required": [
"ResourceArn",
"TagKeys"
],
"members": {
"ResourceArn": {},
"TagKeys": {
"type": "list",
"member": {}
}
}
},
"output": {
"type": "structure",
"members": {}
}
}
},
"shapes": {
"S2": {
"type": "structure",
"members": {
"Bytes": {
"type": "blob"
},
"S3Object": {
"shape": "S4"
}
}
},
"S4": {
"type": "structure",
"members": {
"Bucket": {},
"Name": {},
"Version": {}
}
},
"Sc": {
"type": "structure",
"members": {
"Width": {
"type": "float"
},
"Height": {
"type": "float"
},
"Left": {
"type": "float"
},
"Top": {
"type": "float"
}
}
},
"Sg": {
"type": "structure",
"members": {
"BoundingBox": {
"shape": "Sc"
},
"Confidence": {
"type": "float"
},
"Landmarks": {
"shape": "Sh"
},
"Pose": {
"shape": "Sk"
},
"Quality": {
"shape": "Sm"
},
"Emotions": {
"shape": "Sn"
},
"Smile": {
"shape": "Sq"
}
}
},
"Sh": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Type": {},
"X": {
"type": "float"
},
"Y": {
"type": "float"
}
}
}
},
"Sk": {
"type": "structure",
"members": {
"Roll": {
"type": "float"
},
"Yaw": {
"type": "float"
},
"Pitch": {
"type": "float"
}
}
},
"Sm": {
"type": "structure",
"members": {
"Brightness": {
"type": "float"
},
"Sharpness": {
"type": "float"
}
}
},
"Sn": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Type": {},
"Confidence": {
"type": "float"
}
}
}
},
"Sq": {
"type": "structure",
"members": {
"Value": {
"type": "boolean"
},
"Confidence": {
"type": "float"
}
}
},
"Sw": {
"type": "map",
"key": {},
"value": {}
},
"S18": {
"type": "structure",
"members": {
"S3Bucket": {},
"S3KeyPrefix": {}
}
},
"S1a": {
"type": "structure",
"members": {
"Assets": {
"shape": "S1b"
}
}
},
"S1b": {
"type": "list",
"member": {
"type": "structure",
"members": {
"GroundTruthManifest": {
"shape": "S1d"
}
}
}
},
"S1d": {
"type": "structure",
"members": {
"S3Object": {
"shape": "S4"
}
}
},
"S1e": {
"type": "structure",
"members": {
"Assets": {
"shape": "S1b"
},
"AutoCreate": {
"type": "boolean"
}
}
},
"S1j": {
"type": "structure",
"members": {
"KinesisVideoStream": {
"type": "structure",
"members": {
"Arn": {}
}
}
}
},
"S1m": {
"type": "structure",
"members": {
"KinesisDataStream": {
"type": "structure",
"members": {
"Arn": {}
}
}
}
},
"S1q": {
"type": "structure",
"members": {
"FaceSearch": {
"type": "structure",
"members": {
"CollectionId": {},
"FaceMatchThreshold": {
"type": "float"
}
}
}
}
},
"S1y": {
"type": "list",
"member": {}
},
"S2n": {
"type": "structure",
"members": {
"Assets": {
"shape": "S1b"
}
}
},
"S33": {
"type": "structure",
"members": {
"BoundingBox": {
"shape": "Sc"
},
"Polygon": {
"type": "list",
"member": {
"type": "structure",
"members": {
"X": {
"type": "float"
},
"Y": {
"type": "float"
}
}
}
}
}
},
"S37": {
"type": "list",
"member": {}
},
"S3b": {
"type": "structure",
"members": {
"BoundingBox": {
"shape": "Sc"
},
"AgeRange": {
"type": "structure",
"members": {
"Low": {
"type": "integer"
},
"High": {
"type": "integer"
}
}
},
"Smile": {
"shape": "Sq"
},
"Eyeglasses": {
"type": "structure",
"members": {
"Value": {
"type": "boolean"
},
"Confidence": {
"type": "float"
}
}
},
"Sunglasses": {
"type": "structure",
"members": {
"Value": {
"type": "boolean"
},
"Confidence": {
"type": "float"
}
}
},
"Gender": {
"type": "structure",
"members": {
"Value": {},
"Confidence": {
"type": "float"
}
}
},
"Beard": {
"type": "structure",
"members": {
"Value": {
"type": "boolean"
},
"Confidence": {
"type": "float"
}
}
},
"Mustache": {
"type": "structure",
"members": {
"Value": {
"type": "boolean"
},
"Confidence": {
"type": "float"
}
}
},
"EyesOpen": {
"type": "structure",
"members": {
"Value": {
"type": "boolean"
},
"Confidence": {
"type": "float"
}
}
},
"MouthOpen": {
"type": "structure",
"members": {
"Value": {
"type": "boolean"
},
"Confidence": {
"type": "float"
}
}
},
"Emotions": {
"shape": "Sn"
},
"Landmarks": {
"shape": "Sh"
},
"Pose": {
"shape": "Sk"
},
"Quality": {
"shape": "Sm"
},
"Confidence": {
"type": "float"
}
}
},
"S3o": {
"type": "structure",
"members": {
"Name": {},
"Confidence": {
"type": "float"
},
"Instances": {
"type": "list",
"member": {
"type": "structure",
"members": {
"BoundingBox": {
"shape": "Sc"
},
"Confidence": {
"type": "float"
}
}
}
},
"Parents": {
"type": "list",
"member": {
"type": "structure",
"members": {
"Name": {}
}
}
}
}
},
"S42": {
"type": "structure",
"members": {
"Confidence": {
"type": "float"
},
"Name": {},
"ParentName": {}
}
},
"S4m": {
"type": "list",
"member": {
"type": "integer"
}
},
"S4p": {
"type": "structure",
"members": {
"MinConfidence": {
"type": "float"
},
"MinBoundingBoxHeight": {
"type": "float"
},
"MinBoundingBoxWidth": {
"type": "float"
}
}
},
"S4s": {
"type": "list",
"member": {
"type": "structure",
"members": {
"BoundingBox": {
"shape": "Sc"
}
}
}
},
"S4w": {
"type": "structure",
"members": {
"DetectedText": {},
"Type": {},
"Id": {
"type": "integer"
},
"ParentId": {
"type": "integer"
},
"Confidence": {
"type": "float"
},
"Geomet