Description Usage Arguments Value Request syntax
View source: R/comprehend_operations.R
Gets the status and details of an events detection job.
1 |
JobId |
[required] The identifier of the events detection job. |
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 | list(
EventsDetectionJobProperties = 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"
),
LanguageCode = "en"|"es"|"fr"|"de"|"it"|"pt"|"ar"|"hi"|"ja"|"ko"|"zh"|"zh-TW",
DataAccessRoleArn = "string",
TargetEventTypes = list(
"string"
)
)
)
|
1 2 3 | svc$describe_events_detection_job(
JobId = "string"
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.