Interface CfnProjectPropsMixin.GitSubmodulesConfigProperty

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

@Stability(Stable) public static interface CfnProjectPropsMixin.GitSubmodulesConfigProperty extends software.amazon.jsii.JsiiSerializable
GitSubmodulesConfig is a property of the AWS CodeBuild Project Source property type that specifies information about the Git submodules configuration for the build project.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.codebuild.*;
 GitSubmodulesConfigProperty gitSubmodulesConfigProperty = GitSubmodulesConfigProperty.builder()
         .fetchSubmodules(false)
         .build();
 

See Also: