Get Model Invocation Job
bedrock_get_model_invocation_job | R Documentation |
Gets details about a batch inference job¶
Description¶
Gets details about a batch inference job. For more information, see View details about a batch inference job
Usage¶
Arguments¶
jobIdentifier
[required] The Amazon Resource Name (ARN) of the batch inference job.
Value¶
A list with the following syntax:
list(
jobArn = "string",
jobName = "string",
modelId = "string",
clientRequestToken = "string",
roleArn = "string",
status = "Submitted"|"InProgress"|"Completed"|"Failed"|"Stopping"|"Stopped"|"PartiallyCompleted"|"Expired"|"Validating"|"Scheduled",
message = "string",
submitTime = as.POSIXct(
"2015-01-01"
),
lastModifiedTime = as.POSIXct(
"2015-01-01"
),
endTime = as.POSIXct(
"2015-01-01"
),
inputDataConfig = list(
s3InputDataConfig = list(
s3InputFormat = "JSONL",
s3Uri = "string"
)
),
outputDataConfig = list(
s3OutputDataConfig = list(
s3Uri = "string",
s3EncryptionKeyId = "string"
)
),
timeoutDurationInHours = 123,
jobExpirationTime = as.POSIXct(
"2015-01-01"
)
)