pub async fn create_client_and_region<T>(
builder: &T,
auth: &AwsAuthentication,
region: Option<Region>,
endpoint: Option<String>,
proxy: &ProxyConfig,
tls_options: Option<&TlsConfig>,
timeout: Option<&AwsTimeout>,
) -> Result<(T::Client, Region)>where
T: ClientBuilder,
Expand description
Create the SDK client and resolve the region using the provided settings.