Skip to content

Get Inference Profile

bedrock_get_inference_profile R Documentation

Gets information about an inference profile

Description

Gets information about an inference profile. For more information, see the Amazon Bedrock User Guide.

Usage

bedrock_get_inference_profile(inferenceProfileIdentifier)

Arguments

inferenceProfileIdentifier

[required] The unique identifier of the inference profile.

Value

A list with the following syntax:

list(
  inferenceProfileName = "string",
  models = list(
    list(
      modelArn = "string"
    )
  ),
  description = "string",
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  updatedAt = as.POSIXct(
    "2015-01-01"
  ),
  inferenceProfileArn = "string",
  inferenceProfileId = "string",
  status = "ACTIVE",
  type = "SYSTEM_DEFINED"
)

Request syntax

svc$get_inference_profile(
  inferenceProfileIdentifier = "string"
)