Interface CfnProject.ProjectSourceVersionProperty

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

@Stability(Stable) public static interface CfnProject.ProjectSourceVersionProperty extends software.amazon.jsii.JsiiSerializable
A source identifier and its corresponding version.

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.codebuild.*;
 ProjectSourceVersionProperty projectSourceVersionProperty = ProjectSourceVersionProperty.builder()
         .sourceIdentifier("sourceIdentifier")
         // the properties below are optional
         .sourceVersion("sourceVersion")
         .build();
 

See Also: