pub trait ClientBuilder { type Client; // Required method fn build(&self, config: &SdkConfig) -> Self::Client; }
Implement for each AWS service to create the appropriate AWS sdk client.
The type of the client in the SDK.
Build the client using the given config settings.