Skip to content

Get Model Copy Job

bedrock_get_model_copy_job R Documentation

Retrieves information about a model copy job

Description

Retrieves information about a model copy job. For more information, see Copy models to be used in other regions in the Amazon Bedrock User Guide.

Usage

bedrock_get_model_copy_job(jobArn)

Arguments

jobArn

[required] The Amazon Resource Name (ARN) of the model copy job.

Value

A list with the following syntax:

list(
  jobArn = "string",
  status = "InProgress"|"Completed"|"Failed",
  creationTime = as.POSIXct(
    "2015-01-01"
  ),
  targetModelArn = "string",
  targetModelName = "string",
  sourceAccountId = "string",
  sourceModelArn = "string",
  targetModelKmsKeyArn = "string",
  targetModelTags = list(
    list(
      key = "string",
      value = "string"
    )
  ),
  failureMessage = "string",
  sourceModelName = "string"
)

Request syntax

svc$get_model_copy_job(
  jobArn = "string"
)