Class: Aws::Rekognition::Types::LivenessOutputConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::LivenessOutputConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Overview
Contains settings that specify the location of an Amazon S3 bucket used to store the output of a Face Liveness session. Note that the S3 bucket must be located in the caller’s AWS account and in the same region as the Face Liveness end-point. Additionally, the Amazon S3 object keys are auto-generated by the Face Liveness system.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_bucket ⇒ String
The path to an AWS Amazon S3 bucket used to store Face Liveness session results.
-
#s3_key_prefix ⇒ String
The prefix prepended to the output files for the Face Liveness session results.
Instance Attribute Details
#s3_bucket ⇒ String
The path to an AWS Amazon S3 bucket used to store Face Liveness session results.
5262 5263 5264 5265 5266 5267 |
# File 'lib/aws-sdk-rekognition/types.rb', line 5262 class LivenessOutputConfig < Struct.new( :s3_bucket, :s3_key_prefix) SENSITIVE = [] include Aws::Structure end |
#s3_key_prefix ⇒ String
The prefix prepended to the output files for the Face Liveness session results.
5262 5263 5264 5265 5266 5267 |
# File 'lib/aws-sdk-rekognition/types.rb', line 5262 class LivenessOutputConfig < Struct.new( :s3_bucket, :s3_key_prefix) SENSITIVE = [] include Aws::Structure end |