pub struct LambdaFunctionAssociation {
pub lambda_function_arn: String,
pub event_type: String,
pub include_body: bool,
}Expand description
Lambda@Edge association entry.
Fields§
§lambda_function_arn: StringLambda function version ARN.
event_type: Stringviewer-request, viewer-response, origin-request, origin-response.
include_body: boolWhether the function receives the body.
Trait Implementations§
Source§impl Clone for LambdaFunctionAssociation
impl Clone for LambdaFunctionAssociation
Source§fn clone(&self) -> LambdaFunctionAssociation
fn clone(&self) -> LambdaFunctionAssociation
Returns a duplicate of the value. Read more
1.0.0 · 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 LambdaFunctionAssociation
impl Debug for LambdaFunctionAssociation
Source§impl Default for LambdaFunctionAssociation
impl Default for LambdaFunctionAssociation
Source§fn default() -> LambdaFunctionAssociation
fn default() -> LambdaFunctionAssociation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LambdaFunctionAssociation
impl<'de> Deserialize<'de> for LambdaFunctionAssociation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for LambdaFunctionAssociation
impl RefUnwindSafe for LambdaFunctionAssociation
impl Send for LambdaFunctionAssociation
impl Sync for LambdaFunctionAssociation
impl Unpin for LambdaFunctionAssociation
impl UnsafeUnpin for LambdaFunctionAssociation
impl UnwindSafe for LambdaFunctionAssociation
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