Skip to content

Get Imported Model

bedrock_get_imported_model R Documentation

Gets properties associated with a customized model you imported

Description

Gets properties associated with a customized model you imported.

Usage

bedrock_get_imported_model(modelIdentifier)

Arguments

modelIdentifier

[required] Name or Amazon Resource Name (ARN) of the imported model.

Value

A list with the following syntax:

list(
  modelArn = "string",
  modelName = "string",
  jobName = "string",
  jobArn = "string",
  modelDataSource = list(
    s3DataSource = list(
      s3Uri = "string"
    )
  ),
  creationTime = as.POSIXct(
    "2015-01-01"
  ),
  modelArchitecture = "string",
  modelKmsKeyArn = "string"
)

Request syntax

svc$get_imported_model(
  modelIdentifier = "string"
)