pub struct Client { /* private fields */ }
Expand description
Re-usable logic for all clients.
Implementations§
Source§impl Client
impl Client
Return the shared default client.
Sourcepub fn new_with<P, D>(credentials_provider: P, dispatcher: D) -> Selfwhere
P: ProvideAwsCredentials + Send + Sync + 'static,
D: DispatchSignedRequest + Send + Sync + 'static,
pub fn new_with<P, D>(credentials_provider: P, dispatcher: D) -> Selfwhere
P: ProvideAwsCredentials + Send + Sync + 'static,
D: DispatchSignedRequest + Send + Sync + 'static,
Create a client from a credentials provider and request dispatcher.
Sourcepub fn new_not_signing<D>(dispatcher: D) -> Self
pub fn new_not_signing<D>(dispatcher: D) -> Self
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.
Sourcepub async fn sign_and_dispatch(
&self,
request: SignedRequest,
) -> Result<HttpResponse, SignAndDispatchError>
pub async fn sign_and_dispatch( &self, request: SignedRequest, ) -> Result<HttpResponse, SignAndDispatchError>
Fetch credentials, sign the request and dispatch it.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Client
impl !RefUnwindSafe for Client
impl Send for Client
impl Sync for Client
impl Unpin for Client
impl !UnwindSafe for Client
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more