CancelStepsInput
public struct CancelStepsInput : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The ClusterID for which specified steps will be canceled. Use RunJobFlow and ListClusters to get ClusterIDs.
Declaration
Swift
public let clusterId: String
-
The option to choose for cancelling RUNNING steps. By default, the value is SEND_INTERRUPT.
Declaration
Swift
public let stepCancellationOption: StepCancellationOption?
-
The list of StepIDs to cancel. Use ListSteps to get steps and their states for the specified cluster.
Declaration
Swift
public let stepIds: [String]
-
Undocumented
Declaration
Swift
public init(clusterId: String, stepCancellationOption: StepCancellationOption? = nil, stepIds: [String])
-
Declaration
Swift
public func validate(name: String) throws