Show / Hide Table of Contents

Class CfnWorkflow.SourceReferenceProperty

Contains information about the source reference in a code repository, such as a branch, tag, or commit.

Inheritance
object
CfnWorkflow.SourceReferenceProperty
Implements
CfnWorkflow.ISourceReferenceProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Omics
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnWorkflow.SourceReferenceProperty : CfnWorkflow.ISourceReferenceProperty
Syntax (vb)
Public Class CfnWorkflow.SourceReferenceProperty Implements CfnWorkflow.ISourceReferenceProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-sourcereference.html

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.AWS.Omics;

             var sourceReferenceProperty = new SourceReferenceProperty {
                 Type = "type",
                 Value = "value"
             };

Synopsis

Constructors

SourceReferenceProperty()

Contains information about the source reference in a code repository, such as a branch, tag, or commit.

Properties

Type

The type of source reference, such as branch, tag, or commit.

Value

The value of the source reference, such as the branch name, tag name, or commit ID.

Constructors

SourceReferenceProperty()

Contains information about the source reference in a code repository, such as a branch, tag, or commit.

public SourceReferenceProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-sourcereference.html

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.AWS.Omics;

             var sourceReferenceProperty = new SourceReferenceProperty {
                 Type = "type",
                 Value = "value"
             };

Properties

Type

The type of source reference, such as branch, tag, or commit.

public string? Type { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-sourcereference.html#cfn-omics-workflow-sourcereference-type

Value

The value of the source reference, such as the branch name, tag name, or commit ID.

public string? Value { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-sourcereference.html#cfn-omics-workflow-sourcereference-value

Implements

CfnWorkflow.ISourceReferenceProperty
Back to top Generated by DocFX