Type Alias aws_smithy_client::erase::DynClient
source · pub type DynClient<R = Standard> = Client<DynConnector, DynMiddleware<DynConnector>, R>;
Expand description
A Client
whose connector and middleware types have been erased.
Mainly useful if you need to name R
in a type-erased client. If you do not, you can instead
just use Client
with no type parameters, which ends up being the same type.
Aliased Type§
struct DynClient<R = Standard> { /* private fields */ }