Struct rusoto_swf::TimerStartedEventAttributes
[−]
[src]
pub struct TimerStartedEventAttributes { pub control: Option<String>, pub decision_task_completed_event_id: i64, pub start_to_fire_timeout: String, pub timer_id: String, }
Provides details of the TimerStarted
event.
Fields
control: Option<String>
Optional. Data attached to the event that can be used by the decider in subsequent workflow tasks.
decision_task_completed_event_id: i64
The ID of the DecisionTaskCompleted
event corresponding to the decision task that resulted in the StartTimer
decision for this activity task. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
start_to_fire_timeout: String
The duration of time after which the timer will fire.
The duration is specified in seconds; an integer greater than or equal to 0.
timer_id: String
The unique ID of the timer that was started.
Trait Implementations
impl Default for TimerStartedEventAttributes
[src]
fn default() -> TimerStartedEventAttributes
Returns the "default value" for a type. Read more
impl Debug for TimerStartedEventAttributes
[src]
impl Clone for TimerStartedEventAttributes
[src]
fn clone(&self) -> TimerStartedEventAttributes
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more