EnableStageTransitionInput

public struct EnableStageTransitionInput : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The name of the pipeline in which you want to enable the flow of artifacts from one stage to another.

    Declaration

    Swift

    public let pipelineName: String
  • The name of the stage where you want to enable the transition of artifacts, either into the stage (inbound) or from that stage to the next stage (outbound).

    Declaration

    Swift

    public let stageName: String
  • Specifies whether artifacts are allowed to enter the stage and be processed by the actions in that stage (inbound) or whether already processed artifacts are allowed to transition to the next stage (outbound).

    Declaration

    Swift

    public let transitionType: StageTransitionType
  • Undocumented

    Declaration

    Swift

    public init(pipelineName: String, stageName: String, transitionType: StageTransitionType)
  • Declaration

    Swift

    public func validate(name: String) throws