pub struct LambdaAction {
pub function_arn: String,
}Expand description
Describes an action to invoke a Lambda function.
Fields§
§function_arn: StringThe ARN of the Lambda function.
Trait Implementations§
Source§impl Clone for LambdaAction
impl Clone for LambdaAction
Source§fn clone(&self) -> LambdaAction
fn clone(&self) -> LambdaAction
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 LambdaAction
impl Debug for LambdaAction
Source§impl Default for LambdaAction
impl Default for LambdaAction
Source§fn default() -> LambdaAction
fn default() -> LambdaAction
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LambdaAction
impl<'de> Deserialize<'de> for LambdaAction
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
Source§impl PartialEq for LambdaAction
impl PartialEq for LambdaAction
Source§impl Serialize for LambdaAction
impl Serialize for LambdaAction
impl StructuralPartialEq for LambdaAction
Auto Trait Implementations§
impl Freeze for LambdaAction
impl RefUnwindSafe for LambdaAction
impl Send for LambdaAction
impl Sync for LambdaAction
impl Unpin for LambdaAction
impl UnwindSafe for LambdaAction
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