Class PipelineReference
A reference to a Pipeline resource.
Implements
Inherited Members
Namespace: Amazon.CDK.Interfaces.CodePipeline
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class PipelineReference : IPipelineReference
Syntax (vb)
Public Class PipelineReference Implements IPipelineReference
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Interfaces.CodePipeline;
var pipelineReference = new PipelineReference {
PipelineName = "pipelineName"
};
Synopsis
Constructors
| PipelineReference() | A reference to a Pipeline resource. |
Properties
| PipelineName | The Name of the Pipeline resource. |
Constructors
PipelineReference()
A reference to a Pipeline resource.
public PipelineReference()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Interfaces.CodePipeline;
var pipelineReference = new PipelineReference {
PipelineName = "pipelineName"
};
Properties
PipelineName
The Name of the Pipeline resource.
public string PipelineName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated