Skip to content

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 Monitor batch inference jobs

Usage

bedrock_get_model_invocation_job(jobIdentifier)

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",
      s3BucketOwner = "string"
    )
  ),
  outputDataConfig = list(
    s3OutputDataConfig = list(
      s3Uri = "string",
      s3EncryptionKeyId = "string",
      s3BucketOwner = "string"
    )
  ),
  vpcConfig = list(
    subnetIds = list(
      "string"
    ),
    securityGroupIds = list(
      "string"
    )
  ),
  timeoutDurationInHours = 123,
  jobExpirationTime = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$get_model_invocation_job(
  jobIdentifier = "string"
)