Struct rusoto_swf::StartChildWorkflowExecutionInitiatedEventAttributes [] [src]

pub struct StartChildWorkflowExecutionInitiatedEventAttributes {
    pub child_policy: String,
    pub control: Option<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 tag_list: Option<Vec<String>>,
    pub task_list: TaskList,
    pub task_priority: Option<String>,
    pub task_start_to_close_timeout: Option<String>,
    pub workflow_id: String,
    pub workflow_type: WorkflowType,
}

Provides details of the StartChildWorkflowExecutionInitiated event.

Fields

The policy to use for the child workflow executions if this execution gets terminated by explicitly calling the TerminateWorkflowExecution action 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.

Optional. Data attached to the event that can be used by the decider in subsequent decision tasks. This data is not sent to the activity.

The ID of the DecisionTaskCompleted event corresponding to the decision task that resulted in the StartChildWorkflowExecution decision to request this child workflow execution. This information can be useful for diagnosing problems by tracing back the cause of events.

The maximum duration for the child workflow execution. If the workflow execution is not closed within this duration, it will be timed out and force terminated.

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 inputs provided to the child workflow execution (if any).

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

The list of tags to associated with the child workflow execution.

The name of the task list used for the decision tasks of the child workflow execution.

Optional. The priority assigned for the decision tasks for this workflow execution. 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.

The maximum duration allowed for the decision tasks for this 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 workflowId of the child workflow execution.

The type of the child workflow execution.

Trait Implementations

impl Default for StartChildWorkflowExecutionInitiatedEventAttributes
[src]

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

impl Debug for StartChildWorkflowExecutionInitiatedEventAttributes
[src]

Formats the value using the given formatter.

impl Clone for StartChildWorkflowExecutionInitiatedEventAttributes
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more