pub struct StepFunctionExecution {
pub state_machine_arn: String,
pub payload: String,
pub timestamp: DateTime<Utc>,
}Expand description
A recorded Step Functions invocation from EventBridge delivery.
Fields§
§state_machine_arn: String§payload: String§timestamp: DateTime<Utc>Trait Implementations§
Source§impl Clone for StepFunctionExecution
impl Clone for StepFunctionExecution
Source§fn clone(&self) -> StepFunctionExecution
fn clone(&self) -> StepFunctionExecution
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 StepFunctionExecution
impl Debug for StepFunctionExecution
Source§impl<'de> Deserialize<'de> for StepFunctionExecution
impl<'de> Deserialize<'de> for StepFunctionExecution
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 StepFunctionExecution
impl RefUnwindSafe for StepFunctionExecution
impl Send for StepFunctionExecution
impl Sync for StepFunctionExecution
impl Unpin for StepFunctionExecution
impl UnsafeUnpin for StepFunctionExecution
impl UnwindSafe for StepFunctionExecution
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