Show / Hide Table of Contents

Class PipelineReference

A reference to a Pipeline resource.

Inheritance
object
PipelineReference
Implements
IPipelineReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IPipelineReference
Back to top Generated by DocFX