PipelineArgs

data class PipelineArgs(val artifactStore: Output<PipelineArtifactStoreArgs>? = null, val artifactStores: Output<List<PipelineArtifactStoreMapArgs>>? = null, val disableInboundStageTransitions: Output<List<PipelineStageTransitionArgs>>? = null, val executionMode: Output<PipelineExecutionMode>? = null, val name: Output<String>? = null, val pipelineType: Output<PipelineType>? = null, val restartExecutionOnUpdate: Output<Boolean>? = null, val roleArn: Output<String>? = null, val stages: Output<List<PipelineStageDeclarationArgs>>? = null, val tags: Output<List<TagArgs>>? = null, val triggers: Output<List<PipelineTriggerDeclarationArgs>>? = null, val variables: Output<List<PipelineVariableDeclarationArgs>>? = null) : ConvertibleToJava<PipelineArgs>

The AWS::CodePipeline::Pipeline resource creates a CodePipeline pipeline that describes how software changes go through a release process.

Constructors

Link copied to clipboard
constructor(artifactStore: Output<PipelineArtifactStoreArgs>? = null, artifactStores: Output<List<PipelineArtifactStoreMapArgs>>? = null, disableInboundStageTransitions: Output<List<PipelineStageTransitionArgs>>? = null, executionMode: Output<PipelineExecutionMode>? = null, name: Output<String>? = null, pipelineType: Output<PipelineType>? = null, restartExecutionOnUpdate: Output<Boolean>? = null, roleArn: Output<String>? = null, stages: Output<List<PipelineStageDeclarationArgs>>? = null, tags: Output<List<TagArgs>>? = null, triggers: Output<List<PipelineTriggerDeclarationArgs>>? = null, variables: Output<List<PipelineVariableDeclarationArgs>>? = null)

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
val name: Output<String>? = null

The name of the pipeline.

Link copied to clipboard
val pipelineType: Output<PipelineType>? = null

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 restartExecutionOnUpdate: Output<Boolean>? = null

Indicates whether to rerun the CodePipeline pipeline after you update it.

Link copied to clipboard
val roleArn: Output<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: Output<List<TagArgs>>? = 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@\-_+.

Functions

Link copied to clipboard
open override fun toJava(): PipelineArgs