Replies: 2 comments
-
I would expect this to work as well, even more simply. let cfg = aws_config::load_from_env().await;
let rek_client = rek::client::Client::new(&cfg); However, this tells me that the Region is missing, even though I specified
In fact, when I run |
Beta Was this translation helpful? Give feedback.
0 replies
-
I figured out the problem. It's another inconsistency in AWS, related to case insensitivity. #1020 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have an access key and secret key, with appropriate permissions. I can use the AWS CLI tool to call APIs that I have policy permissions to (Rekognition).
In the Rust SDK, I can't even get the most basic example, using the default credentials profile, to work.
This yields:
How are you supposed to use the
default
profile in~/.aws/credentials
?Beta Was this translation helpful? Give feedback.
All reactions