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¶
voiceid_list_fraudster_registration_jobs(DomainId, JobStatus,
MaxResults, NextToken)
Arguments¶
DomainId |
[required] The identifier of the domain that contains the fraudster registration Jobs. |
JobStatus |
Provides the status of your fraudster registration job. |
MaxResults |
The maximum number of results that are returned per call. You can
use |
NextToken |
If |
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"
)
Request syntax¶
svc$list_fraudster_registration_jobs(
DomainId = "string",
JobStatus = "SUBMITTED"|"IN_PROGRESS"|"COMPLETED"|"COMPLETED_WITH_ERRORS"|"FAILED",
MaxResults = 123,
NextToken = "string"
)