ex-aws / ex_aws

A flexible, easy to use set of clients AWS APIs for Elixir
https://hex.pm/packages/ex_aws
MIT License
1.26k stars 521 forks source link

Adds missing region for Rekognition in priv/endpoints.exs #910

Closed silvagustin closed 1 year ago

silvagustin commented 1 year ago

Problem

I came across with the following error when I had tried to run AWS Rekognition for an image stored in S3 in London region (eu-west-2):

Screen Shot 2022-10-18 at 12 45 32

Fix

This PR adds missing eu-west-2 region for Rekognition in 'priv/endpoints.exs file.

All service endpoints availables can be read in Amazon Rekognition endpoints and quotas page.

bernardd commented 1 year ago

Thanks @silvagustin! Apologies for the delay getting to this.

silvagustin commented 1 year ago

@bernardd is it possible to release a new version in hex? Because I'm not getting the latest changes with:

{:ex_aws, "~> 2.4"} or {:ex_aws, "~> 2.4", override: true}

Instead, I have to use the following to make it work:

{:ex_aws, github: "ex-aws/ex_aws", ref: "66254fec26633a5e148d5a3ca9c6cb731627be01", override: true}

ref: "66254fec26633a5e148d5a3ca9c6cb731627be01" corresponds to one of the latests commits in main branch.