Skip to content

Update Custom Model Deployment

bedrock_update_custom_model_deployment R Documentation

Updates a custom model deployment with a new custom model

Description

Updates a custom model deployment with a new custom model. This allows you to deploy updated models without creating new deployment endpoints.

Usage

bedrock_update_custom_model_deployment(modelArn,
  customModelDeploymentIdentifier)

Arguments

modelArn

[required] ARN of the new custom model to deploy. This replaces the currently deployed model.

customModelDeploymentIdentifier

[required] Identifier of the custom model deployment to update with the new custom model.

Value

A list with the following syntax:

list(
  customModelDeploymentArn = "string"
)

Request syntax

svc$update_custom_model_deployment(
  modelArn = "string",
  customModelDeploymentIdentifier = "string"
)