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

Optional. Data attached to the event that can be used by the decider in subsequent workflow tasks.

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.

The duration of time after which the timer will fire.

The duration is specified in seconds; an integer greater than or equal to 0.

The unique ID of the timer that was started.

Trait Implementations

impl Default for TimerStartedEventAttributes
[src]

Returns the "default value" for a type. Read more

impl Debug for TimerStartedEventAttributes
[src]

Formats the value using the given formatter.

impl Clone for TimerStartedEventAttributes
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more