Interface CfnWorkflow.SourceReferenceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkflow.SourceReferenceProperty.Jsii$Proxy
- Enclosing class:
CfnWorkflow
@Stability(Stable)
public static interface CfnWorkflow.SourceReferenceProperty
extends software.amazon.jsii.JsiiSerializable
Contains information about the source reference in a code repository, such as a branch, tag, or commit.
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.*; SourceReferenceProperty sourceReferenceProperty = SourceReferenceProperty.builder() .type("type") .value("value") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnWorkflow.SourceReferenceProperty
static final class
An implementation forCfnWorkflow.SourceReferenceProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getType
The type of source reference, such as branch, tag, or commit.- See Also:
-
getValue
The value of the source reference, such as the branch name, tag name, or commit ID.- See Also:
-
builder
-