pub struct AmazonConfig {
pub region: String,
pub credentials: AwsCredentialProvider,
pub retry_config: RetryConfig,
pub client_options: ClientOptions,
pub skip_signature: bool,
}Fields§
§region: String§credentials: AwsCredentialProvider§retry_config: RetryConfig§client_options: ClientOptions§skip_signature: boolTrait Implementations§
Source§impl Clone for AmazonConfig
impl Clone for AmazonConfig
Source§fn clone(&self) -> AmazonConfig
fn clone(&self) -> AmazonConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AmazonConfig
impl Debug for AmazonConfig
Source§impl RequestSigner for AmazonConfig
impl RequestSigner for AmazonConfig
Source§fn sign<'a>(
&'a self,
req: RequestBuilder,
) -> BoxFuture<'a, Result<RequestBuilder>>
fn sign<'a>( &'a self, req: RequestBuilder, ) -> BoxFuture<'a, Result<RequestBuilder>>
Sign a
reqwest::RequestBuilder, returning the modified builder.Auto Trait Implementations§
impl !Freeze for AmazonConfig
impl !RefUnwindSafe for AmazonConfig
impl !UnwindSafe for AmazonConfig
impl Send for AmazonConfig
impl Sync for AmazonConfig
impl Unpin for AmazonConfig
impl UnsafeUnpin for AmazonConfig
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