Class: Aws::Rekognition::Types::ContentModerationDetection
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::ContentModerationDetection
- Defined in:
- gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb
Overview
Information about an inappropriate, unwanted, or offensive content label detection in a stored video.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#moderation_label ⇒ Types::ModerationLabel
The content moderation label detected by in the stored video.
-
#timestamp ⇒ Integer
Time, in milliseconds from the beginning of the video, that the content moderation label was detected.
Instance Attribute Details
#moderation_label ⇒ Types::ModerationLabel
The content moderation label detected by in the stored video.
572 573 574 575 576 577 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 572 class ContentModerationDetection < Struct.new( :timestamp, :moderation_label) SENSITIVE = [] include Aws::Structure end |
#timestamp ⇒ Integer
Time, in milliseconds from the beginning of the video, that the
content moderation label was detected. Note that Timestamp
is not
guaranteed to be accurate to the individual frame where the
moderated content first appears.
572 573 574 575 576 577 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 572 class ContentModerationDetection < Struct.new( :timestamp, :moderation_label) SENSITIVE = [] include Aws::Structure end |