Skip to content

How to select Amazon Bedrock amazon.nova-pro-v1:0 for Provisioned Throughput?

0

I am attempting to create Amazon Bedrock Provisioned Throughput for the amazon.nova-pro-v1:0 (Nova Pro) model in the us-east-2 region. When I navigate to the "Purchase provisioned throughput" page in the Bedrock console and reach "Step 1: Configure provisioned throughput," the amazon.nova-pro-v1:0 model does not appear as an option in the "Select model" dropdown. My prior research using aws bedrock list-foundation-models --region us-east-2 confirms amazon.nova-pro-v1:0 is listed with outputModalities: ["TEXT", "IMAGE", "VIDEO"] and inferenceTypesSupported: ["INFERENCE_PROFILE"]. How can I select amazon.nova-pro-v1:0 to create provisioned throughput when it's not visible in the model selection dropdown?

2 Answers
1

Hello.

As stated in the following document, I believe the provisioned throughput of amazon.nova-pro-v1:0 can only be used in us-east-1.
Therefore, as of June 2025, I think you will need to configure it in us-east-1 rather than us-east-2.
https://docs.aws.amazon.com/bedrock/latest/userguide/pt-supported.html
a

EXPERT

answered a year ago

-1

To create Provisioned Throughput for the Amazon Nova Pro model (amazon.nova-pro-v1:0), you can use the AWS CLI or SDK approach since it appears the model may not be available for selection in the console dropdown.

Using the AWS CLI, you can create a Provisioned Throughput with the following command:

aws bedrock create-provisioned-model-throughput \
--model-units 1 \
--provisioned-model-name MyNovaPro \
--model-id amazon.nova-pro-v1:0

When creating Provisioned Throughput, you need to specify:

  • model-id: The model ID (in this case, amazon.nova-pro-v1:0)
  • model-units: The number of model units to purchase (with no commitment, you're limited to 1 MU per Provisioned Throughput)
  • provisioned-model-name: A name for your Provisioned Throughput

If you prefer using the SDK, you can use the AWSSDK.Bedrock package (for .NET) or equivalent in other languages to call the CreateProvisionedModelThroughput API.

Note that by default, an AWS account comes with 2 Model Units (MUs) to distribute between Provisioned Throughputs with no commitment. If you need additional MUs or want to purchase with a commitment term, you'll need to request an increase through AWS Support.

If the model is truly not available for Provisioned Throughput in your region, you may need to check if it's supported in other regions or contact AWS Support for clarification.
Sources
CreateProvisionedModelThroughput - Amazon Bedrock
Code examples for Provisioned Throughput - Amazon Bedrock
Purchase a Provisioned Throughput for an Amazon Bedrock model - Amazon Bedrock
Streamline custom model creation and deployment for Amazon Bedrock with Provisioned Throughput using Terraform | AWS Machine Learning Blog

answered a year ago

  • An error occurred (ValidationException) when calling the CreateProvisionedModelThroughput operation: Your account is not authorized to perform this action. Please create a support case (https://console.aws.amazon.com/support/home) with details about your use case and we will get back to you

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.