Class CfnWorkflow.SourceReferenceProperty
Contains information about the source reference in a code repository, such as a branch, tag, or commit.
Implements
Inherited Members
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
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
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
Remarks
Value
The value of the source reference, such as the branch name, tag name, or commit ID.
public string? Value { get; set; }