Struct rusoto_swf::WorkflowExecutionContinuedAsNewEventAttributes [] [src]

pub struct WorkflowExecutionContinuedAsNewEventAttributes {
    pub child_policy: String,
    pub decision_task_completed_event_id: i64,
    pub execution_start_to_close_timeout: Option<String>,
    pub input: Option<String>,
    pub lambda_role: Option<String>,
    pub new_execution_run_id: String,
    pub tag_list: Option<Vec<String>>,
    pub task_list: TaskList,
    pub task_priority: Option<String>,
    pub task_start_to_close_timeout: Option<String>,
    pub workflow_type: WorkflowType,
}

Provides details of the WorkflowExecutionContinuedAsNew event.

Fields

The policy to use for the child workflow executions of the new execution if it is terminated by calling the TerminateWorkflowExecution action explicitly or due to an expired timeout.

The supported child policies are:

  • TERMINATE: the child executions will be terminated.
  • REQUEST_CANCEL: a request to cancel will be attempted for each child execution by recording a WorkflowExecutionCancelRequested event in its history. It is up to the decider to take appropriate actions when it receives an execution history with this event.
  • ABANDON: no action will be taken. The child executions will continue to run.

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

The total duration allowed for the new workflow execution.

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 input provided to the new workflow execution.

The IAM role attached to this workflow execution to use when invoking AWS Lambda functions.

The runId of the new workflow execution.

The list of tags associated with the new workflow execution.

The maximum duration of decision tasks for the new workflow execution.

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

Trait Implementations

impl Default for WorkflowExecutionContinuedAsNewEventAttributes
[src]

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

impl Debug for WorkflowExecutionContinuedAsNewEventAttributes
[src]

Formats the value using the given formatter.

impl Clone for WorkflowExecutionContinuedAsNewEventAttributes
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more