Describe Targeted Sentiment Detection Job
comprehend_describe_targeted_sentiment_detection_job | R Documentation |
Gets the properties associated with a targeted sentiment detection job¶
Description¶
Gets the properties associated with a targeted sentiment detection job. Use this operation to get the status of the job.
Usage¶
Arguments¶
JobId
[required] The identifier that Amazon Comprehend generated for the job. The
start_targeted_sentiment_detection_job
operation returns this identifier in its response.
Value¶
A list with the following syntax:
list(
TargetedSentimentDetectionJobProperties = list(
JobId = "string",
JobArn = "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",
DocumentReaderConfig = list(
DocumentReadAction = "TEXTRACT_DETECT_DOCUMENT_TEXT"|"TEXTRACT_ANALYZE_DOCUMENT",
DocumentReadMode = "SERVICE_DEFAULT"|"FORCE_DOCUMENT_READ_ACTION",
FeatureTypes = list(
"TABLES"|"FORMS"
)
)
),
OutputDataConfig = list(
S3Uri = "string",
KmsKeyId = "string"
),
LanguageCode = "en"|"es"|"fr"|"de"|"it"|"pt"|"ar"|"hi"|"ja"|"ko"|"zh"|"zh-TW",
DataAccessRoleArn = "string",
VolumeKmsKeyId = "string",
VpcConfig = list(
SecurityGroupIds = list(
"string"
),
Subnets = list(
"string"
)
)
)
)