AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Contains information about a workflow execution.

Inheritance Hierarchy

System.Object
  Amazon.SimpleWorkflow.Model.WorkflowExecutionInfo

Namespace: Amazon.SimpleWorkflow.Model
Assembly: AWSSDK.SimpleWorkflow.dll
Version: 3.x.y.z

Syntax

C#
public class WorkflowExecutionInfo

The WorkflowExecutionInfo type exposes the following members

Constructors

NameDescription
Public Method WorkflowExecutionInfo()

Properties

NameTypeDescription
Public Property CancelRequested System.Boolean

Gets and sets the property CancelRequested.

Set to true if a cancellation is requested for this workflow execution.

Public Property CloseStatus Amazon.SimpleWorkflow.CloseStatus

Gets and sets the property CloseStatus.

If the execution status is closed then this specifies how the execution was closed:

  • COMPLETED – the execution was successfully completed.

  • CANCELED – the execution was canceled.Cancellation allows the implementation to gracefully clean up before the execution is closed.

  • TERMINATED – the execution was force terminated.

  • FAILED – the execution failed to complete.

  • TIMED_OUT – the execution did not complete in the alloted time and was automatically timed out.

  • CONTINUED_AS_NEW – the execution is logically continued. This means the current execution was completed and a new execution was started to carry on the workflow.

Public Property CloseTimestamp System.DateTime

Gets and sets the property CloseTimestamp.

The time when the workflow execution was closed. Set only if the execution status is CLOSED.

Public Property Execution Amazon.SimpleWorkflow.Model.WorkflowExecution

Gets and sets the property Execution.

The workflow execution this information is about.

Public Property ExecutionStatus Amazon.SimpleWorkflow.ExecutionStatus

Gets and sets the property ExecutionStatus.

The current status of the execution.

Public Property Parent Amazon.SimpleWorkflow.Model.WorkflowExecution

Gets and sets the property Parent.

If this workflow execution is a child of another execution then contains the workflow execution that started this execution.

Public Property StartTimestamp System.DateTime

Gets and sets the property StartTimestamp.

The time when the execution was started.

Public Property TagList System.Collections.Generic.List<System.String>

Gets and sets the property TagList.

The list of tags associated with the workflow execution. Tags can be used to identify and list workflow executions of interest through the visibility APIs. A workflow execution can have a maximum of 5 tags.

Public Property WorkflowType Amazon.SimpleWorkflow.Model.WorkflowType

Gets and sets the property WorkflowType.

The type of the workflow execution.

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5