[][src]Struct rusoto_swf::ActivityTaskScheduledEventAttributes

pub struct ActivityTaskScheduledEventAttributes {
    pub activity_id: String,
    pub activity_type: ActivityType,
    pub control: Option<String>,
    pub decision_task_completed_event_id: i64,
    pub heartbeat_timeout: Option<String>,
    pub input: Option<String>,
    pub schedule_to_close_timeout: Option<String>,
    pub schedule_to_start_timeout: Option<String>,
    pub start_to_close_timeout: Option<String>,
    pub task_list: TaskList,
    pub task_priority: Option<String>,
}

Provides the details of the ActivityTaskScheduled event.

Fields

The unique ID of the activity task.

The type of the activity task.

Data attached to the event that can be used by the decider in subsequent workflow tasks. This data isn't sent to the activity.

The ID of the DecisionTaskCompleted event corresponding to the decision that resulted in the scheduling of this activity task. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

The maximum time before which the worker processing this task must report progress by calling RecordActivityTaskHeartbeat. If the timeout is exceeded, the activity task is automatically timed out. If the worker subsequently attempts to record a heartbeat or return a result, it is ignored.

The input provided to the activity task.

The maximum amount of time for this activity task.

The maximum amount of time the activity task can wait to be assigned to a worker.

The maximum amount of time a worker may take to process the activity task.

The task list in which the activity task has been scheduled.

The priority to assign to the scheduled activity task. If set, this overrides any default priority value that was assigned when the activity type was registered.

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

impl PartialEq<ActivityTaskScheduledEventAttributes> for ActivityTaskScheduledEventAttributes
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Default for ActivityTaskScheduledEventAttributes
[src]

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

impl Clone for ActivityTaskScheduledEventAttributes
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ActivityTaskScheduledEventAttributes
[src]

Formats the value using the given formatter. Read more

impl<'de> Deserialize<'de> for ActivityTaskScheduledEventAttributes
[src]

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T, U> Into for T where
    U: From<T>, 
[src]

Performs the conversion.

impl<T> From for T
[src]

Performs the conversion.

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T> Borrow for T where
    T: ?Sized
[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut for T where
    T: ?Sized
[src]

Mutably borrows from an owned value. Read more

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T