Class: Aws::Rekognition::Types::CreateFaceLivenessSessionResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::CreateFaceLivenessSessionResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#session_id ⇒ String
A unique 128-bit UUID identifying a Face Liveness session.
Instance Attribute Details
#session_id ⇒ String
A unique 128-bit UUID identifying a Face Liveness session. A new sessionID must be used for every Face Liveness check. If a given sessionID is used for subsequent Face Liveness checks, the checks will fail. Additionally, a SessionId expires 3 minutes after it’s sent, making all Liveness data associated with the session (e.g., sessionID, reference image, audit images, etc.) unavailable.
993 994 995 996 997 |
# File 'lib/aws-sdk-rekognition/types.rb', line 993 class CreateFaceLivenessSessionResponse < Struct.new( :session_id) SENSITIVE = [] include Aws::Structure end |