enum CrossRegionInferenceProfileRegion
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.Alpha.CrossRegionInferenceProfileRegion |
Go | github.com/aws/aws-cdk-go/awsbedrockalpha/v2#CrossRegionInferenceProfileRegion |
Java | software.amazon.awscdk.services.bedrock.alpha.CrossRegionInferenceProfileRegion |
Python | aws_cdk.aws_bedrock_alpha.CrossRegionInferenceProfileRegion |
TypeScript (source) | @aws-cdk/aws-bedrock-alpha ยป CrossRegionInferenceProfileRegion |
Geographic regions supported for cross-region inference profiles.
These regions help distribute traffic across multiple AWS regions for better throughput and resilience during peak demands.
Example
// Create a cross-region inference profile
const crossRegionProfile = bedrock.CrossRegionInferenceProfile.fromConfig({
geoRegion: bedrock.CrossRegionInferenceProfileRegion.US,
model: bedrock.BedrockFoundationModel.ANTHROPIC_CLAUDE_3_5_SONNET_V1_0,
});
// Use the cross-region profile with an agent
const agent = new bedrock.Agent(this, 'Agent', {
foundationModel: crossRegionProfile,
instruction: 'You are a helpful and friendly agent that answers questions about agriculture.',
});
Members
| Name | Description |
|---|---|
| GLOBAL | Global cross-region Inference Identifier. |
| EU | Cross-region Inference Identifier for the European area. |
| US | Cross-region Inference Identifier for the United States area. |
| US_GOV | Cross-region Inference Identifier for the US GovCloud area. |
| APAC | Cross-region Inference Identifier for the Asia-Pacific area. |
| JP | Cross-region Inference Identifier for the Japan area. |
| AU | Cross-region Inference Identifier for the Australia area. |
GLOBAL
Global cross-region Inference Identifier.
Routes requests to any supported commercial AWS Region.
EU
Cross-region Inference Identifier for the European area.
According to the model chosen, this might include:
- Frankfurt (
eu-central-1) - Ireland (
eu-west-1) - Paris (
eu-west-3) - London (
eu-west-2) - Stockholm (
eu-north-1) - Milan (
eu-south-1) - Spain (
eu-south-2) - Zurich (
eu-central-2)
US
Cross-region Inference Identifier for the United States area.
According to the model chosen, this might include:
- N. Virginia (
us-east-1) - Ohio (
us-east-2) - Oregon (
us-west-2)
US_GOV
Cross-region Inference Identifier for the US GovCloud area.
According to the model chosen, this might include:
- GovCloud US-East (
us-gov-east-1) - GovCloud US-West (
us-gov-west-1)
APAC
Cross-region Inference Identifier for the Asia-Pacific area.
According to the model chosen, this might include:
- Tokyo (
ap-northeast-1) - Seoul (
ap-northeast-2) - Osaka (
ap-northeast-3) - Mumbai (
ap-south-1) - Hyderabad (
ap-south-2) - Singapore (
ap-southeast-1) - Sydney (
ap-southeast-2) - Jakarta (
ap-southeast-3) - Melbourne (
ap-southeast-4) - Malaysia (
ap-southeast-5) - Thailand (
ap-southeast-7) - Taipei (
ap-east-2) - Middle East (UAE) (
me-central-1)
JP
Cross-region Inference Identifier for the Japan area.
According to the model chosen, this might include:
- Tokyo (
ap-northeast-1) - Osaka (
ap-northeast-3)
AU
Cross-region Inference Identifier for the Australia area.
According to the model chosen, this might include:
- Sydney (
ap-southeast-2) - Melbourne (
ap-southeast-4)

.NET
Go
Java
Python
TypeScript (