Class: Aws::Rekognition::Types::LivenessOutputConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-rekognition/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

Instance Attribute Details

#s3_bucketString

The path to an AWS Amazon S3 bucket used to store Face Liveness session results.

Returns:

  • (String)


5249
5250
5251
5252
5253
5254
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5249

class LivenessOutputConfig < Struct.new(
  :s3_bucket,
  :s3_key_prefix)
  SENSITIVE = []
  include Aws::Structure
end

#s3_key_prefixString

The prefix prepended to the output files for the Face Liveness session results.

Returns:

  • (String)


5249
5250
5251
5252
5253
5254
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5249

class LivenessOutputConfig < Struct.new(
  :s3_bucket,
  :s3_key_prefix)
  SENSITIVE = []
  include Aws::Structure
end