Struct aws_sdk_swf::model::DecisionTaskScheduledEventAttributes [−][src]
#[non_exhaustive]pub struct DecisionTaskScheduledEventAttributes {
pub task_list: Option<TaskList>,
pub task_priority: Option<String>,
pub start_to_close_timeout: Option<String>,
}
Expand description
Provides details about the DecisionTaskScheduled
event.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.task_list: Option<TaskList>
The name of the task list in which the decision task was scheduled.
task_priority: Option<String>
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 SWF Developer Guide.
start_to_close_timeout: Option<String>
The maximum duration for this decision task. The task is considered timed out if it doesn't completed within this duration.
The duration is specified in seconds, an integer greater than or equal to 0
. You can use NONE
to specify unlimited duration.
Implementations
The name of the task list in which the decision task was scheduled.
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 SWF Developer Guide.
The maximum duration for this decision task. The task is considered timed out if it doesn't completed within this duration.
The duration is specified in seconds, an integer greater than or equal to 0
. You can use NONE
to specify unlimited duration.
Creates a new builder-style object to manufacture DecisionTaskScheduledEventAttributes
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for DecisionTaskScheduledEventAttributes
impl Sync for DecisionTaskScheduledEventAttributes
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more