Description Usage Arguments Value Request syntax
View source: R/comprehend_operations.R
Gets a list of the dominant language detection jobs that you have submitted.
1 2 | comprehend_list_dominant_language_detection_jobs(Filter, NextToken,
MaxResults)
|
Filter |
Filters that jobs that are returned. You can filter jobs on their name, status, or the date and time that they were submitted. You can only set one filter at a time. |
NextToken |
Identifies the next page of results to return. |
MaxResults |
The maximum number of results to return in each page. The default is 100. |
A list with the following syntax:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | list(
DominantLanguageDetectionJobPropertiesList = list(
list(
JobId = "string",
JobName = "string",
JobStatus = "SUBMITTED"|"IN_PROGRESS"|"COMPLETED"|"FAILED"|"STOP_REQUESTED"|"STOPPED",
Message = "string",
SubmitTime = as.POSIXct(
"2015-01-01"
),
EndTime = as.POSIXct(
"2015-01-01"
),
InputDataConfig = list(
S3Uri = "string",
InputFormat = "ONE_DOC_PER_FILE"|"ONE_DOC_PER_LINE"
),
OutputDataConfig = list(
S3Uri = "string",
KmsKeyId = "string"
),
DataAccessRoleArn = "string",
VolumeKmsKeyId = "string",
VpcConfig = list(
SecurityGroupIds = list(
"string"
),
Subnets = list(
"string"
)
)
)
),
NextToken = "string"
)
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | svc$list_dominant_language_detection_jobs(
Filter = list(
JobName = "string",
JobStatus = "SUBMITTED"|"IN_PROGRESS"|"COMPLETED"|"FAILED"|"STOP_REQUESTED"|"STOPPED",
SubmitTimeBefore = as.POSIXct(
"2015-01-01"
),
SubmitTimeAfter = as.POSIXct(
"2015-01-01"
)
),
NextToken = "string",
MaxResults = 123
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.