List Fraudster Registration Jobs
| voiceid_list_fraudster_registration_jobs | R Documentation |
Lists all the fraudster registration jobs in the domain with the given JobStatus¶
Description¶
Lists all the fraudster registration jobs in the domain with the given
JobStatus. If JobStatus is not provided, this lists all fraudster
registration jobs in the given domain.
Usage¶
Arguments¶
DomainId[required] The identifier of the domain that contains the fraudster registration Jobs.
JobStatusProvides the status of your fraudster registration job.
MaxResultsThe maximum number of results that are returned per call. You can use
NextTokento obtain more pages of results. The default is 100; the maximum allowed page size is also 100.NextTokenIf
NextTokenis returned, there are more results available. The value ofNextTokenis a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours.
Value¶
A list with the following syntax:
list(
JobSummaries = list(
list(
CreatedAt = as.POSIXct(
"2015-01-01"
),
DomainId = "string",
EndedAt = as.POSIXct(
"2015-01-01"
),
FailureDetails = list(
Message = "string",
StatusCode = 123
),
JobId = "string",
JobName = "string",
JobProgress = list(
PercentComplete = 123
),
JobStatus = "SUBMITTED"|"IN_PROGRESS"|"COMPLETED"|"COMPLETED_WITH_ERRORS"|"FAILED"
)
),
NextToken = "string"
)