enum CrossRegionInferenceProfileRegion
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Bedrock.Alpha.CrossRegionInferenceProfileRegion |
![]() | github.com/aws/aws-cdk-go/awsbedrockalpha/v2#CrossRegionInferenceProfileRegion |
![]() | software.amazon.awscdk.services.bedrock.alpha.CrossRegionInferenceProfileRegion |
![]() | aws_cdk.aws_bedrock_alpha.CrossRegionInferenceProfileRegion |
![]() | @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_V2_0,
});
// Create an application inference profile across regions
const appProfile = new bedrock.ApplicationInferenceProfile(this, 'MyMultiRegionProfile', {
applicationInferenceProfileName: 'claude-35-sonnet-v2-multi-region',
modelSource: crossRegionProfile,
description: 'Multi-region application profile for cost tracking',
});
Members
Name | Description |
---|---|
EU | Cross-region Inference Identifier for the European area. |
US | Cross-region Inference Identifier for the United States area. |
APAC | Cross-region Inference Identifier for the Asia-Pacific area. |
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
)
US
Cross-region Inference Identifier for the United States area.
According to the model chosen, this might include:
- N. Virginia (
us-east-1
) - Oregon (
us-west-2
) - Ohio (
us-east-2
)
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
) - Mumbai (
ap-south-1
) - Singapore (
ap-southeast-1
) - Sydney (
ap-southeast-2
)