Class: Aws::Rekognition::Types::GetFaceLivenessSessionResultsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::GetFaceLivenessSessionResultsResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#audit_images ⇒ Array<Types::AuditImage>
A set of images from the Face Liveness video that can be used for audit purposes.
-
#confidence ⇒ Float
Probabalistic confidence score for if the person in the given video was live, represented as a float value between 0 to 100.
-
#reference_image ⇒ Types::AuditImage
A high-quality image from the Face Liveness video that can be used for face comparison or search.
-
#session_id ⇒ String
The sessionId for which this request was called.
-
#status ⇒ String
Represents a status corresponding to the state of the session.
Instance Attribute Details
#audit_images ⇒ Array<Types::AuditImage>
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.
3632 3633 3634 3635 3636 3637 3638 3639 3640 |
# File 'lib/aws-sdk-rekognition/types.rb', line 3632 class GetFaceLivenessSessionResultsResponse < Struct.new( :session_id, :status, :confidence, :reference_image, :audit_images) SENSITIVE = [] include Aws::Structure end |
#confidence ⇒ Float
Probabalistic confidence score for if the person in the given video was live, represented as a float value between 0 to 100.
3632 3633 3634 3635 3636 3637 3638 3639 3640 |
# File 'lib/aws-sdk-rekognition/types.rb', line 3632 class GetFaceLivenessSessionResultsResponse < Struct.new( :session_id, :status, :confidence, :reference_image, :audit_images) SENSITIVE = [] include Aws::Structure end |
#reference_image ⇒ Types::AuditImage
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.
3632 3633 3634 3635 3636 3637 3638 3639 3640 |
# File 'lib/aws-sdk-rekognition/types.rb', line 3632 class GetFaceLivenessSessionResultsResponse < Struct.new( :session_id, :status, :confidence, :reference_image, :audit_images) SENSITIVE = [] include Aws::Structure end |
#session_id ⇒ String
The sessionId for which this request was called.
3632 3633 3634 3635 3636 3637 3638 3639 3640 |
# File 'lib/aws-sdk-rekognition/types.rb', line 3632 class GetFaceLivenessSessionResultsResponse < Struct.new( :session_id, :status, :confidence, :reference_image, :audit_images) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
Represents a status corresponding to the state of the session. Possible statuses are: CREATED, IN_PROGRESS, SUCCEEDED, FAILED, EXPIRED.
3632 3633 3634 3635 3636 3637 3638 3639 3640 |
# File 'lib/aws-sdk-rekognition/types.rb', line 3632 class GetFaceLivenessSessionResultsResponse < Struct.new( :session_id, :status, :confidence, :reference_image, :audit_images) SENSITIVE = [] include Aws::Structure end |