Interface CfnWorkflow.DefinitionRepositoryProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnWorkflow.DefinitionRepositoryProperty.Jsii$Proxy
Enclosing class:
CfnWorkflow

@Stability(Stable) public static interface CfnWorkflow.DefinitionRepositoryProperty extends software.amazon.jsii.JsiiSerializable
Contains information about a source code repository that hosts the workflow definition files.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.omics.*;
 DefinitionRepositoryProperty definitionRepositoryProperty = DefinitionRepositoryProperty.builder()
         .connectionArn("connectionArn")
         .excludeFilePatterns(List.of("excludeFilePatterns"))
         .fullRepositoryId("fullRepositoryId")
         .sourceReference(SourceReferenceProperty.builder()
                 .type("type")
                 .value("value")
                 .build())
         .build();
 

See Also: