Class PipelineBaseProps

Properties for a Pipeline.

Inheritance

PipelineBaseProps

Implements
Inherited Members
Namespace: Amazon.CDK.Pipelines
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class PipelineBaseProps : IPipelineBaseProps
Syntax (vb)
Public Class PipelineBaseProps Implements IPipelineBaseProps
Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.Pipelines;

            IFileSetProducer fileSetProducer;

            var pipelineBaseProps = new PipelineBaseProps {
                Synth = fileSetProducer
            };

Synopsis

Constructors

Properties

Synth

The build step that produces the CDK Cloud Assembly.

Constructors

PipelineBaseProps()

Properties for a Pipeline.

public PipelineBaseProps()
Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.Pipelines;

            IFileSetProducer fileSetProducer;

            var pipelineBaseProps = new PipelineBaseProps {
                Synth = fileSetProducer
            };

Properties

Synth

The build step that produces the CDK Cloud Assembly.

public IFileSetProducer Synth { get; set; }
Property Value

IFileSetProducer

Implements