GetPipelineResult

data class GetPipelineResult(val artifactStore: PipelineArtifactStore? = null, val artifactStores: List<PipelineArtifactStoreMap>? = null, val disableInboundStageTransitions: List<PipelineStageTransition>? = null, val executionMode: PipelineExecutionMode? = null, val pipelineType: PipelineType? = null, val roleArn: String? = null, val stages: List<PipelineStageDeclaration>? = null, val tags: List<Tag>? = null, val triggers: List<PipelineTriggerDeclaration>? = null, val variables: List<PipelineVariableDeclaration>? = null, val version: String? = null)

Constructors

Link copied to clipboard
constructor(artifactStore: PipelineArtifactStore? = null, artifactStores: List<PipelineArtifactStoreMap>? = null, disableInboundStageTransitions: List<PipelineStageTransition>? = null, executionMode: PipelineExecutionMode? = null, pipelineType: PipelineType? = null, roleArn: String? = null, stages: List<PipelineStageDeclaration>? = null, tags: List<Tag>? = null, triggers: List<PipelineTriggerDeclaration>? = null, variables: List<PipelineVariableDeclaration>? = null, version: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The S3 bucket where artifacts for the pipeline are stored.

Link copied to clipboard

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.

Link copied to clipboard

Represents the input of a DisableStageTransition action.

Link copied to clipboard

The method that the pipeline will use to handle multiple executions. The default mode is SUPERSEDED.

Link copied to clipboard

CodePipeline provides the following pipeline types, which differ in characteristics and price, so that you can tailor your pipeline features and cost to the needs of your applications.

Link copied to clipboard
val roleArn: String? = null

The Amazon Resource Name (ARN) for CodePipeline to use to either perform actions with no actionRoleArn, or to use to assume roles for actions with an actionRoleArn

Link copied to clipboard

Represents information about a stage and its definition.

Link copied to clipboard
val tags: List<Tag>? = null

Specifies the tags applied to the pipeline.

Link copied to clipboard

The trigger configuration specifying a type of event, such as Git tags, that starts the pipeline.

Link copied to clipboard

A list that defines the pipeline variables for a pipeline resource. Variable names can have alphanumeric and underscore characters, and the values must match A-Za-z0-9@\-_+.

Link copied to clipboard
val version: String? = null

The version of the pipeline.