pub struct ApiGatewayV2HttpConfig {
pub skip_signature_validation: bool,
pub region: String,
pub credential_provider: Option<Arc<dyn CredentialProvider>>,
}Expand description
Configuration for the API Gateway v2 HTTP service.
Fields§
§skip_signature_validation: boolWhether to skip AWS signature validation.
region: StringThe AWS region this service is running in.
credential_provider: Option<Arc<dyn CredentialProvider>>Credential provider for signature validation.
Trait Implementations§
Source§impl Clone for ApiGatewayV2HttpConfig
impl Clone for ApiGatewayV2HttpConfig
Source§fn clone(&self) -> ApiGatewayV2HttpConfig
fn clone(&self) -> ApiGatewayV2HttpConfig
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 ApiGatewayV2HttpConfig
impl Debug for ApiGatewayV2HttpConfig
Auto Trait Implementations§
impl Freeze for ApiGatewayV2HttpConfig
impl !RefUnwindSafe for ApiGatewayV2HttpConfig
impl Send for ApiGatewayV2HttpConfig
impl Sync for ApiGatewayV2HttpConfig
impl Unpin for ApiGatewayV2HttpConfig
impl UnsafeUnpin for ApiGatewayV2HttpConfig
impl !UnwindSafe for ApiGatewayV2HttpConfig
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