Skip to content

Commit

Permalink
Add Bedrock Agent endpoints
Browse files Browse the repository at this point in the history
Map the Bedrock Agent and Bedrock Agent Runtime endpoints. This allows
to start using the services with the `ex_aws` library.

The PR is identical to the one which introduced endpoints for Bedrock
and Bedrock Runtime: #1023.

The list of supported endpoints relies on
https://docs.aws.amazon.com/general/latest/gr/bedrock.html#bedrock_region.
  • Loading branch information
anukaver-glia committed Dec 16, 2024
1 parent 44c9aec commit 0723949
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions priv/endpoints.exs
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,40 @@ chime_voice_regions = [
"us-west-2" => %{}
}
},
"bedrock-agent" => %{
"defaults" => %{"credentialScope" => %{"service" => "bedrock"}},
"endpoints" => %{
"ap-northeast-1" => %{},
"ap-south-1" => %{},
"ap-southeast-1" => %{},
"ap-southeast-2" => %{},
"ca-central-1" => %{},
"eu-central-1" => %{},
"eu-west-1" => %{},
"eu-west-2" => %{},
"eu-west-3" => %{},
"sa-east-1" => %{},
"us-east-1" => %{},
"us-west-2" => %{}
}
},
"bedrock-agent-runtime" => %{
"defaults" => %{"credentialScope" => %{"service" => "bedrock"}},
"endpoints" => %{
"ap-northeast-1" => %{},
"ap-south-1" => %{},
"ap-southeast-1" => %{},
"ap-southeast-2" => %{},
"ca-central-1" => %{},
"eu-central-1" => %{},
"eu-west-1" => %{},
"eu-west-2" => %{},
"eu-west-3" => %{},
"sa-east-1" => %{},
"us-east-1" => %{},
"us-west-2" => %{}
}
},
"connect" => %{
"endpoints" => %{
"ap-northeast-1" => %{},
Expand Down

0 comments on commit 0723949

Please sign in to comment.