aws.rekognition.get_content_moderation
Example SQL Queries
SELECT * FROMaws.rekognition.get_content_moderationWHERE"job_id" = 'VALUE';Description
Gets the inappropriate, unwanted, or offensive content analysis results for a Amazon Rekognition Video analysis started by StartContentModeration. For a list of moderation labels in Amazon Rekognition, see Using the image and video moderation APIs.
Amazon Rekognition Video inappropriate or offensive content detection in a stored video is an asynchronous operation. You start analysis by calling StartContentModeration which returns a job identifier (JobId). When analysis finishes, Amazon Rekognition Video publishes a completion status to the Amazon Simple Notification Service topic registered in the initial call to StartContentModeration. To get the results of the content analysis, first check that the status value published to the Amazon SNS topic is SUCCEEDED. If so, call GetContentModeration and pass the job identifier (JobId) from the initial call to StartContentModeration.
For more information, see Working with Stored Videos in the Amazon Rekognition Devlopers Guide.
GetContentModeration returns detected inappropriate, unwanted, or offensive content moderation labels, and the time they are detected, in an array, ModerationLabels, of ContentModerationDetection objects.
By default, the moderated labels are returned sorted by time, in milliseconds from the start of the video. You can also sort them by moderated label by specifying NAME for the SortBy input parameter.
Since video analysis can return a large number of results, use the MaxResults parameter to limit the number of labels returned in a single call to GetContentModeration. If there are more results than specified in MaxResults, the value of NextToken in the operation response contains a pagination token for getting the next set of results. To get the next page of results, call GetContentModeration and populate the NextToken request parameter with the value of NextToken returned from the previous call to GetContentModeration.
For more information, see moderating content in the Amazon Rekognition Developer Guide.
Table Definition
| Column Name | Column Data Type |
|---|---|
| job_id Required Input Column Job identifier for the content moderation operation for which you want to obtain results. The job identifer is returned by an initial call to StartContentModeration. | VARCHAR |
| aggregate_by Input Column Defines how to aggregate results of the StartContentModeration request. Default aggregation option is TIMESTAMPS. SEGMENTS mode aggregates moderation labels over time. | VARCHAR |
| max_results Input Column Maximum number of results to return per paginated call. The largest value you can specify is 1000. If you specify a value greater than 1000, a maximum of 1000 results is returned. The default value is 1000. | BIGINT |
| next_token Input Column If the response is truncated, Amazon Rekognition Video returns this token that you can use in the subsequent request to retrieve the next set of content moderation labels. | VARCHAR |
| sort_by Input Column Sort to use for elements in the ModerationLabelDetections array. Use TIMESTAMP to sort array elements by the time labels are detected. Use NAME to alphabetically group elements for a label together. Within each label group, the array element are sorted by detection confidence. The default sort is by TIMESTAMP. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| get_request_metadata Information about the paramters used when getting a response. Includes information on aggregation and sorting methods. | STRUCT( |
Show child fields
| |
| job_status The current status of the content moderation analysis job. | VARCHAR |
| job_tag A job identifier specified in the call to StartContentModeration and returned in the job completion notification sent to your Amazon Simple Notification Service topic. | VARCHAR |
| moderation_labels The detected inappropriate, unwanted, or offensive content moderation labels and the time(s) they were detected. | STRUCT( |
Show child fields
| |
| moderation_model_version Version number of the moderation detection model that was used to detect inappropriate, unwanted, or offensive content. | VARCHAR |
| status_message If the job fails, StatusMessage provides a descriptive error message. | VARCHAR |
| video Video file stored in an Amazon S3 bucket. Amazon Rekognition video start operations such as StartLabelDetection use Video to specify a video for analysis. The supported file formats are .mp4, .mov and .avi. | STRUCT( |
Show child fields
| |
| video_metadata Information about a video that Amazon Rekognition analyzed. Videometadata is returned in every page of paginated responses from GetContentModeration. | STRUCT( |
Show child fields
| |