WorkflowExecutionDetail
public struct WorkflowExecutionDetail : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The configuration settings for this workflow execution including timeout values, tasklist etc.
Declaration
Swift
public let executionConfiguration: WorkflowExecutionConfiguration
-
Information about the workflow execution.
Declaration
Swift
public let executionInfo: WorkflowExecutionInfo
-
The time when the last activity task was scheduled for this workflow execution. You can use this information to determine if the workflow has not made progress for an unusually long period of time and might require a corrective action.
Declaration
Swift
public let latestActivityTaskTimestamp: TimeStamp?
-
The latest executionContext provided by the decider for this workflow execution. A decider can provide an executionContext (a free-form string) when closing a decision task using RespondDecisionTaskCompleted.
Declaration
Swift
public let latestExecutionContext: String?
-
The number of tasks for this workflow execution. This includes open and closed tasks of all types.
Declaration
Swift
public let openCounts: WorkflowExecutionOpenCounts
-
init(executionConfiguration:executionInfo:latestActivityTaskTimestamp:latestExecutionContext:openCounts:)
Undocumented
Declaration
Swift
public init(executionConfiguration: WorkflowExecutionConfiguration, executionInfo: WorkflowExecutionInfo, latestActivityTaskTimestamp: TimeStamp? = nil, latestExecutionContext: String? = nil, openCounts: WorkflowExecutionOpenCounts)