Struct rusoto_swf::TerminateWorkflowExecutionInput [] [src]

pub struct TerminateWorkflowExecutionInput {
    pub child_policy: Option<String>,
    pub details: Option<String>,
    pub domain: String,
    pub reason: Option<String>,
    pub run_id: Option<String>,
    pub workflow_id: String,
}

Fields

If set, specifies the policy to use for the child workflow executions of the workflow execution being terminated. This policy overrides the child policy specified for the workflow execution at registration time or when starting the execution.

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.
A child policy for this workflow execution must be specified either as a default for the workflow type or through this parameter. If neither this parameter is set nor a default child policy was specified at registration time then a fault will be returned.

Optional. Details for terminating the workflow execution.

The domain of the workflow execution to terminate.

Optional. A descriptive reason for terminating the workflow execution.

The runId of the workflow execution to terminate.

The workflowId of the workflow execution to terminate.

Trait Implementations

impl Default for TerminateWorkflowExecutionInput
[src]

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

impl Debug for TerminateWorkflowExecutionInput
[src]

Formats the value using the given formatter.

impl Clone for TerminateWorkflowExecutionInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more