Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-definitionrepository.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 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

string

Remarks

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

ExcludeFilePatterns

A list of file patterns to exclude when retrieving the workflow definition from the repository.

string[]? ExcludeFilePatterns { get; }
Property Value

string[]

Remarks

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

FullRepositoryId

The full repository identifier, including the repository owner and name.

string? FullRepositoryId { get; }
Property Value

string

Remarks

For example, 'repository-owner/repository-name'.

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

SourceReference

The source reference for the repository, such as a branch name, tag, or commit ID.

object? SourceReference { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnWorkflow.ISourceReferenceProperty

Back to top Generated by DocFX