PipelineDeclaration

public struct PipelineDeclaration : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Represents information about the S3 bucket where artifacts are stored for the pipeline. You must include either artifactStore or artifactStores in your pipeline, but you cannot use both. If you create a cross-region action in your pipeline, you must use artifactStores.

    Declaration

    Swift

    public let artifactStore: ArtifactStore?
  • A mapping of artifactStore objects and their corresponding AWS Regions. There must be an artifact store for the pipeline Region and for each cross-region action in the pipeline. You must include either artifactStore or artifactStores in your pipeline, but you cannot use both. If you create a cross-region action in your pipeline, you must use artifactStores.

    Declaration

    Swift

    public let artifactStores: [String : ArtifactStore]?
  • The name of the action to be performed.

    Declaration

    Swift

    public let name: String
  • The Amazon Resource Name (ARN) for AWS CodePipeline to use to either perform actions with no actionRoleArn, or to use to assume roles for actions with an actionRoleArn.

    Declaration

    Swift

    public let roleArn: String
  • The stage in which to perform the action.

    Declaration

    Swift

    public let stages: [StageDeclaration]
  • The version number of the pipeline. A new pipeline always has a version number of 1. This number is incremented when a pipeline is updated.

    Declaration

    Swift

    public let version: Int?
  • Undocumented

    Declaration

    Swift

    public init(artifactStore: ArtifactStore? = nil, artifactStores: [String : ArtifactStore]? = nil, name: String, roleArn: String, stages: [StageDeclaration], version: Int? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws