AWSRekognitionContentModerationDetection
Objective-C
@interface AWSRekognitionContentModerationDetection
Swift
class AWSRekognitionContentModerationDetection
Information about an inappropriate, unwanted, or offensive content label detection in a stored video.
-
A list of predicted results for the type of content an image contains. For example, the image content might be from animation, sports, or a video game.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSRekognitionContentType *> *_Nullable contentTypes;
Swift
var contentTypes: [AWSRekognitionContentType]? { get set }
-
The time duration of a segment in milliseconds, I.e. time elapsed from StartTimestampMillis to EndTimestampMillis.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable durationMillis;
Swift
var durationMillis: NSNumber? { get set }
-
The time in milliseconds defining the end of the timeline segment containing a continuously detected moderation label.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable endTimestampMillis;
Swift
var endTimestampMillis: NSNumber? { get set }
-
The content moderation label detected by in the stored video.
Declaration
Objective-C
@property (nonatomic, strong) AWSRekognitionModerationLabel *_Nullable moderationLabel;
Swift
var moderationLabel: AWSRekognitionModerationLabel? { get set }
-
The time in milliseconds defining the start of the timeline segment containing a continuously detected moderation label.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable startTimestampMillis;
Swift
var startTimestampMillis: NSNumber? { get set }
-
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.Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable timestamp;
Swift
var timestamp: NSNumber? { get set }