Skip to content

Describe Speaker Enrollment Job

voiceid_describe_speaker_enrollment_job R Documentation

Describes the specified speaker enrollment job

Description

Describes the specified speaker enrollment job.

Usage

voiceid_describe_speaker_enrollment_job(DomainId, JobId)

Arguments

DomainId

[required] The identifier of the domain that contains the speaker enrollment job.

JobId

[required] The identifier of the speaker enrollment job you are describing.

Value

A list with the following syntax:

list(
  Job = list(
    CreatedAt = as.POSIXct(
      "2015-01-01"
    ),
    DataAccessRoleArn = "string",
    DomainId = "string",
    EndedAt = as.POSIXct(
      "2015-01-01"
    ),
    EnrollmentConfig = list(
      ExistingEnrollmentAction = "SKIP"|"OVERWRITE",
      FraudDetectionConfig = list(
        FraudDetectionAction = "IGNORE"|"FAIL",
        RiskThreshold = 123,
        WatchlistIds = list(
          "string"
        )
      )
    ),
    FailureDetails = list(
      Message = "string",
      StatusCode = 123
    ),
    InputDataConfig = list(
      S3Uri = "string"
    ),
    JobId = "string",
    JobName = "string",
    JobProgress = list(
      PercentComplete = 123
    ),
    JobStatus = "SUBMITTED"|"IN_PROGRESS"|"COMPLETED"|"COMPLETED_WITH_ERRORS"|"FAILED",
    OutputDataConfig = list(
      KmsKeyId = "string",
      S3Uri = "string"
    )
  )
)

Request syntax

svc$describe_speaker_enrollment_job(
  DomainId = "string",
  JobId = "string"
)