pub struct DecisionTaskScheduledEventAttributes {
pub start_to_close_timeout: Option<String>,
pub task_list: TaskList,
pub task_priority: Option<String>,
}
Expand description
Provides details about the DecisionTaskScheduled
event.
Fields§
§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.
task_list: 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.
Trait Implementations§
Source§impl Clone for DecisionTaskScheduledEventAttributes
impl Clone for DecisionTaskScheduledEventAttributes
Source§fn clone(&self) -> DecisionTaskScheduledEventAttributes
fn clone(&self) -> DecisionTaskScheduledEventAttributes
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 DecisionTaskScheduledEventAttributes
impl Default for DecisionTaskScheduledEventAttributes
Source§fn default() -> DecisionTaskScheduledEventAttributes
fn default() -> DecisionTaskScheduledEventAttributes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DecisionTaskScheduledEventAttributes
impl<'de> Deserialize<'de> for DecisionTaskScheduledEventAttributes
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 DecisionTaskScheduledEventAttributes
impl PartialEq for DecisionTaskScheduledEventAttributes
Source§fn eq(&self, other: &DecisionTaskScheduledEventAttributes) -> bool
fn eq(&self, other: &DecisionTaskScheduledEventAttributes) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DecisionTaskScheduledEventAttributes
Auto Trait Implementations§
impl Freeze for DecisionTaskScheduledEventAttributes
impl RefUnwindSafe for DecisionTaskScheduledEventAttributes
impl Send for DecisionTaskScheduledEventAttributes
impl Sync for DecisionTaskScheduledEventAttributes
impl Unpin for DecisionTaskScheduledEventAttributes
impl UnwindSafe for DecisionTaskScheduledEventAttributes
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