Interface CfnService.SourceCodeVersionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnService.SourceCodeVersionProperty.Jsii$Proxy
- Enclosing class:
- CfnService
@Stability(Stable)
public static interface CfnService.SourceCodeVersionProperty
extends software.amazon.jsii.JsiiSerializable
Identifies a version of code that AWS App Runner refers to within a source code repository.
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.apprunner.*; SourceCodeVersionProperty sourceCodeVersionProperty = SourceCodeVersionProperty.builder() .type("type") .value("value") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnService.SourceCodeVersionProperty
static final class
An implementation forCfnService.SourceCodeVersionProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getType
The type of version identifier.For a git-based repository, branches represent versions.
-
getValue
A source code version.For a git-based repository, a branch name maps to a specific version. App Runner uses the most recent commit to the branch.
-
builder
-