Interface CfnWorkflow.IDefinitionRepositoryProperty
Contains information about a source code repository that hosts the workflow definition files.
Namespace: Amazon.CDK.AWS.Omics
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnWorkflow.IDefinitionRepositoryProperty
Syntax (vb)
Public Interface CfnWorkflow.IDefinitionRepositoryProperty
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 definitionRepositoryProperty = new DefinitionRepositoryProperty {
ConnectionArn = "connectionArn",
ExcludeFilePatterns = new [] { "excludeFilePatterns" },
FullRepositoryId = "fullRepositoryId",
SourceReference = new SourceReferenceProperty {
Type = "type",
Value = "value"
}
};
Synopsis
Properties
| ConnectionArn | The Amazon Resource Name (ARN) of the connection to the source code repository. |
| ExcludeFilePatterns | A list of file patterns to exclude when retrieving the workflow definition from the repository. |
| FullRepositoryId | The full repository identifier, including the repository owner and name. |
| SourceReference | The source reference for the repository, such as a branch name, tag, or commit ID. |
Properties
ConnectionArn
The Amazon Resource Name (ARN) of the connection to the source code repository.
string? ConnectionArn { get; }
Property Value
Remarks
ExcludeFilePatterns
A list of file patterns to exclude when retrieving the workflow definition from the repository.
string[]? ExcludeFilePatterns { get; }
Property Value
string[]
Remarks
FullRepositoryId
The full repository identifier, including the repository owner and name.
string? FullRepositoryId { get; }
Property Value
Remarks
For example, 'repository-owner/repository-name'.
SourceReference
The source reference for the repository, such as a branch name, tag, or commit ID.
object? SourceReference { get; }