WorkflowRun
public struct WorkflowRun : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The date and time when the workflow run completed.
Declaration
Swift
public let completedOn: TimeStamp?
-
This error message describes any error that may have occurred in starting the workflow run. Currently the only error message is “Concurrent runs exceeded for workflow: foo.”
Declaration
Swift
public let errorMessage: String?
-
The graph representing all the AWS Glue components that belong to the workflow as nodes and directed connections between them as edges.
Declaration
Swift
public let graph: WorkflowGraph?
-
Name of the workflow that was executed.
Declaration
Swift
public let name: String?
-
The ID of the previous workflow run.
Declaration
Swift
public let previousRunId: String?
-
The date and time when the workflow run was started.
Declaration
Swift
public let startedOn: TimeStamp?
-
The statistics of the run.
Declaration
Swift
public let statistics: WorkflowRunStatistics?
-
The status of the workflow run.
Declaration
Swift
public let status: WorkflowRunStatus?
-
The ID of this workflow run.
Declaration
Swift
public let workflowRunId: String?
-
The workflow run properties which were set during the run.
Declaration
Swift
public let workflowRunProperties: [String : String]?
-
init(completedOn:errorMessage:graph:name:previousRunId:startedOn:statistics:status:workflowRunId:workflowRunProperties:)
Undocumented
Declaration
Swift
public init(completedOn: TimeStamp? = nil, errorMessage: String? = nil, graph: WorkflowGraph? = nil, name: String? = nil, previousRunId: String? = nil, startedOn: TimeStamp? = nil, statistics: WorkflowRunStatistics? = nil, status: WorkflowRunStatus? = nil, workflowRunId: String? = nil, workflowRunProperties: [String : String]? = nil)