- Newest
- Most votes
- Most comments
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
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
Relevant content
asked 10 months ago
asked 10 months ago
- AWS OFFICIALUpdated 9 months 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