Skip to content

Get Custom Model Deployment

bedrock_get_custom_model_deployment R Documentation

Retrieves information about a custom model deployment, including its status, configuration, and metadata

Description

Retrieves information about a custom model deployment, including its status, configuration, and metadata. Use this operation to monitor the deployment status and retrieve details needed for inference requests.

The following actions are related to the get_custom_model_deployment operation:

  • create_custom_model_deployment

  • list_custom_model_deployments

  • delete_custom_model_deployment

Usage

bedrock_get_custom_model_deployment(customModelDeploymentIdentifier)

Arguments

customModelDeploymentIdentifier

[required] The Amazon Resource Name (ARN) or name of the custom model deployment to retrieve information about.

Value

A list with the following syntax:

list(
  customModelDeploymentArn = "string",
  modelDeploymentName = "string",
  modelArn = "string",
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  status = "Creating"|"Active"|"Failed",
  description = "string",
  updateDetails = list(
    modelArn = "string",
    updateStatus = "Updating"|"UpdateCompleted"|"UpdateFailed"
  ),
  failureMessage = "string",
  lastUpdatedAt = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$get_custom_model_deployment(
  customModelDeploymentIdentifier = "string"
)