Trait vector::aws::ClientBuilder

source ·
pub trait ClientBuilder {
    type Client;

    // Required method
    fn build(config: &SdkConfig) -> Self::Client;
}
Expand description

Implement for each AWS service to create the appropriate AWS sdk client.

Required Associated Types§

source

type Client

The type of the client in the SDK.

Required Methods§

source

fn build(config: &SdkConfig) -> Self::Client

Build the client using the given config settings.

Object Safety§

This trait is not object safe.

Implementors§