[][src]Struct rusoto_core::Client

pub struct Client { /* fields omitted */ }

Re-usable logic for all clients.

Implementations

impl Client[src]

pub fn shared() -> Self[src]

Return the shared default client.

pub fn new_with<P, D>(credentials_provider: P, dispatcher: D) -> Self where
    P: ProvideAwsCredentials + Send + Sync + 'static,
    D: DispatchSignedRequest + Send + Sync + 'static, 
[src]

Create a client from a credentials provider and request dispatcher.

pub fn new_not_signing<D>(dispatcher: D) -> Self where
    D: DispatchSignedRequest + Send + Sync + 'static, 
[src]

Create a client from a request dispatcher without a credentials provider. The client will neither fetch any default credentials nor sign any requests. A non-signing client can be useful for calling APIs like Sts::assume_role_with_web_identity and Sts::assume_role_with_saml which do not require any request signing or when calling AWS compatible third party API endpoints which employ different authentication mechanisms.

pub async fn sign_and_dispatch(
    &self,
    request: SignedRequest
) -> Result<HttpResponse, SignAndDispatchError>
[src]

Fetch credentials, sign the request and dispatch it.

Trait Implementations

impl Clone for Client[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.