pub trait ProvideRegion: Send + Sync + Debug {
    fn region(&self) -> ProvideRegion<'_>Notable traits for ProvideRegion<'_>impl Future for ProvideRegion<'_>    type Output = Option<Region>;;
}
Expand description

Provide a Region to use with AWS requests

For most cases default_provider will be the best option, implementing a standard provider chain.

Required methods

Load a region from this provider

Implementations on Foreign Types

Implementors