pub struct ExecutionStartedEventDetails {
pub input: Option<String>,
pub role_arn: Option<String>,
}
Expand description
Contains details about the start of the execution.
Fields§
§input: Option<String>
The JSON data input to the execution.
role_arn: Option<String>
The Amazon Resource Name (ARN) of the IAM role used for executing AWS Lambda tasks.
Trait Implementations§
Source§impl Clone for ExecutionStartedEventDetails
impl Clone for ExecutionStartedEventDetails
Source§fn clone(&self) -> ExecutionStartedEventDetails
fn clone(&self) -> ExecutionStartedEventDetails
Returns a copy 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 ExecutionStartedEventDetails
impl Debug for ExecutionStartedEventDetails
Source§impl Default for ExecutionStartedEventDetails
impl Default for ExecutionStartedEventDetails
Source§fn default() -> ExecutionStartedEventDetails
fn default() -> ExecutionStartedEventDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExecutionStartedEventDetails
impl<'de> Deserialize<'de> for ExecutionStartedEventDetails
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 ExecutionStartedEventDetails
impl PartialEq for ExecutionStartedEventDetails
Source§fn eq(&self, other: &ExecutionStartedEventDetails) -> bool
fn eq(&self, other: &ExecutionStartedEventDetails) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ExecutionStartedEventDetails
Auto Trait Implementations§
impl Freeze for ExecutionStartedEventDetails
impl RefUnwindSafe for ExecutionStartedEventDetails
impl Send for ExecutionStartedEventDetails
impl Sync for ExecutionStartedEventDetails
impl Unpin for ExecutionStartedEventDetails
impl UnwindSafe for ExecutionStartedEventDetails
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