AWSRekognitionDetectModerationLabelsResponse
Objective-C
@interface AWSRekognitionDetectModerationLabelsResponse
Swift
class AWSRekognitionDetectModerationLabelsResponse
-
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 }
-
Shows the results of the human in the loop evaluation.
Declaration
Objective-C
@property (nonatomic, strong) AWSRekognitionHumanLoopActivationOutput *_Nullable humanLoopActivationOutput;
Swift
var humanLoopActivationOutput: AWSRekognitionHumanLoopActivationOutput? { get set }
-
Array of detected Moderation labels. For video operations, this includes the time, in milliseconds from the start of the video, they were detected.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSRekognitionModerationLabel *> *_Nullable moderationLabels;
Swift
var moderationLabels: [AWSRekognitionModerationLabel]? { get set }
-
Version number of the base moderation detection model that was used to detect unsafe content.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable moderationModelVersion;
Swift
var moderationModelVersion: String? { get set }
-
Identifier of the custom adapter that was used during inference. If during inference the adapter was EXPIRED, then the parameter will not be returned, indicating that a base moderation detection project version was used.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable projectVersion;
Swift
var projectVersion: String? { get set }