pub struct LambdaFunctionScheduledEventAttributes {
pub control: Option<String>,
pub decision_task_completed_event_id: i64,
pub id: String,
pub input: Option<String>,
pub name: String,
pub start_to_close_timeout: Option<String>,
}
Expand description
Provides the details of the LambdaFunctionScheduled
event. It isn't set for other event types.
Fields§
§control: Option<String>
Data attached to the event that the decider can use in subsequent workflow tasks. This data isn't sent to the Lambda task.
decision_task_completed_event_id: i64
The ID of the LambdaFunctionCompleted
event corresponding to the decision that resulted in scheduling this activity task. To help diagnose issues, use this information to trace back the chain of events leading up to this event.
id: String
The unique ID of the Lambda task.
input: Option<String>
The input provided to the Lambda task.
name: String
The name of the Lambda function.
start_to_close_timeout: Option<String>
The maximum amount of time a worker can take to process the Lambda task.
Trait Implementations§
Source§impl Clone for LambdaFunctionScheduledEventAttributes
impl Clone for LambdaFunctionScheduledEventAttributes
Source§fn clone(&self) -> LambdaFunctionScheduledEventAttributes
fn clone(&self) -> LambdaFunctionScheduledEventAttributes
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 Default for LambdaFunctionScheduledEventAttributes
impl Default for LambdaFunctionScheduledEventAttributes
Source§fn default() -> LambdaFunctionScheduledEventAttributes
fn default() -> LambdaFunctionScheduledEventAttributes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LambdaFunctionScheduledEventAttributes
impl<'de> Deserialize<'de> for LambdaFunctionScheduledEventAttributes
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 LambdaFunctionScheduledEventAttributes
impl PartialEq for LambdaFunctionScheduledEventAttributes
Source§fn eq(&self, other: &LambdaFunctionScheduledEventAttributes) -> bool
fn eq(&self, other: &LambdaFunctionScheduledEventAttributes) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for LambdaFunctionScheduledEventAttributes
Auto Trait Implementations§
impl Freeze for LambdaFunctionScheduledEventAttributes
impl RefUnwindSafe for LambdaFunctionScheduledEventAttributes
impl Send for LambdaFunctionScheduledEventAttributes
impl Sync for LambdaFunctionScheduledEventAttributes
impl Unpin for LambdaFunctionScheduledEventAttributes
impl UnwindSafe for LambdaFunctionScheduledEventAttributes
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