AWSRekognitionCreateFaceLivenessSessionRequest

Objective-C

@interface AWSRekognitionCreateFaceLivenessSessionRequest

Swift

class AWSRekognitionCreateFaceLivenessSessionRequest
  • Idempotent token is used to recognize the Face Liveness request. If the same token is used with multiple CreateFaceLivenessSession requests, the same session is returned. This token is employed to avoid unintentionally creating the same session multiple times.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable clientRequestToken;

    Swift

    var clientRequestToken: String? { get set }
  • The identifier for your AWS Key Management Service key (AWS KMS key). Used to encrypt audit images and reference images.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable kmsKeyId;

    Swift

    var kmsKeyId: String? { get set }
  • A session settings object. It contains settings for the operation to be performed. For Face Liveness, it accepts OutputConfig and AuditImagesLimit.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSRekognitionCreateFaceLivenessSessionRequestSettings *_Nullable settings;