AWSRekognitionGetFaceLivenessSessionResultsResponse
Objective-C
@interface AWSRekognitionGetFaceLivenessSessionResultsResponse
Swift
class AWSRekognitionGetFaceLivenessSessionResultsResponse
-
A set of images from the Face Liveness video that can be used for audit purposes. It includes a bounding box of the face and the Base64-encoded bytes that return an image. If the CreateFaceLivenessSession request included an OutputConfig argument, the image will be uploaded to an S3Object specified in the output configuration. If no Amazon S3 bucket is defined, raw bytes are sent instead.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSRekognitionAuditImage *> *_Nullable auditImages;
Swift
var auditImages: [AWSRekognitionAuditImage]? { get set }
-
Probabalistic confidence score for if the person in the given video was live, represented as a float value between 0 to 100.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable confidence;
Swift
var confidence: NSNumber? { get set }
-
A high-quality image from the Face Liveness video that can be used for face comparison or search. It includes a bounding box of the face and the Base64-encoded bytes that return an image. If the CreateFaceLivenessSession request included an OutputConfig argument, the image will be uploaded to an S3Object specified in the output configuration. In case the reference image is not returned, it’s recommended to retry the Liveness check.
Declaration
Objective-C
@property (nonatomic, strong) AWSRekognitionAuditImage *_Nullable referenceImage;
Swift
var referenceImage: AWSRekognitionAuditImage? { get set }
-
The sessionId for which this request was called.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable sessionId;
Swift
var sessionId: String? { get set }
-
Represents a status corresponding to the state of the session. Possible statuses are: CREATED, IN_PROGRESS, SUCCEEDED, FAILED, EXPIRED.
Declaration
Objective-C
@property (nonatomic) AWSRekognitionLivenessSessionStatus status;
Swift
var status: AWSRekognitionLivenessSessionStatus { get set }