Replies: 2 comments 1 reply
-
The |
Beta Was this translation helpful? Give feedback.
1 reply
-
If you need to override a region just for a specific operation, you can also use |
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 AWS
SdkConfig
struct that I'm sharing via anArc<T>
. I need to override the region for specific AWS SDK requests.However, the
SdkConfig
struct doesn't have any method defined on it to specify the region that should be used. It only has a.region()
method that takes zero parameters. This returns the region, but doesn't allow me to specify the region.➡️ Question: How do I specify a region on an
SdkConfig
struct?This seems like something that should be extremely straightforward. Shouldn't I be able to call
.region("us-west-2")
on theSdkConfig
?Beta Was this translation helpful? Give feedback.
All reactions