Struct rusoto_swf::DecisionTaskScheduledEventAttributes [] [src]

pub struct DecisionTaskScheduledEventAttributes {
    pub start_to_close_timeout: Option<String>,
    pub task_list: TaskList,
    pub task_priority: Option<String>,
}

Provides details about the DecisionTaskScheduled event.

Fields

The maximum duration for this decision task. The task is considered timed out if it does not completed within this duration.

The duration is specified in seconds; an integer greater than or equal to 0. The value "NONE" can be used to specify unlimited duration.

The name of the task list in which the decision task was scheduled.

Optional. A task priority that, if set, specifies the priority for this decision task. Valid values are integers that range from Java's Integer.MIN_VALUE (-2147483648) to Integer.MAX_VALUE (2147483647). Higher numbers indicate higher priority.

For more information about setting task priority, see Setting Task Priority in the Amazon Simple Workflow Developer Guide.

Trait Implementations

impl Default for DecisionTaskScheduledEventAttributes
[src]

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

impl Debug for DecisionTaskScheduledEventAttributes
[src]

Formats the value using the given formatter.

impl Clone for DecisionTaskScheduledEventAttributes
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more