Workflow
public struct Workflow : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The date and time when the workflow was created.
Declaration
Swift
public let createdOn: TimeStamp?
-
A collection of properties to be used as part of each execution of the workflow.
Declaration
Swift
public let defaultRunProperties: [String : String]?
-
A description of the workflow.
Declaration
Swift
public let description: 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?
-
The date and time when the workflow was last modified.
Declaration
Swift
public let lastModifiedOn: TimeStamp?
-
The information about the last execution of the workflow.
Declaration
Swift
public let lastRun: WorkflowRun?
-
You can use this parameter to prevent unwanted multiple updates to data, to control costs, or in some cases, to prevent exceeding the maximum number of concurrent runs of any of the component jobs. If you leave this parameter blank, there is no limit to the number of concurrent workflow runs.
Declaration
Swift
public let maxConcurrentRuns: Int?
-
The name of the workflow representing the flow.
Declaration
Swift
public let name: String?
-
init(createdOn:defaultRunProperties:description:graph:lastModifiedOn:lastRun:maxConcurrentRuns:name:)
Undocumented
Declaration
Swift
public init(createdOn: TimeStamp? = nil, defaultRunProperties: [String : String]? = nil, description: String? = nil, graph: WorkflowGraph? = nil, lastModifiedOn: TimeStamp? = nil, lastRun: WorkflowRun? = nil, maxConcurrentRuns: Int? = nil, name: String? = nil)