Interface CfnProject.ProjectBuildBatchConfigProperty

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

@Stability(Stable) public static interface CfnProject.ProjectBuildBatchConfigProperty extends software.amazon.jsii.JsiiSerializable
Contains configuration information about a batch 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.services.codebuild.*;
 ProjectBuildBatchConfigProperty projectBuildBatchConfigProperty = ProjectBuildBatchConfigProperty.builder()
         .batchReportMode("batchReportMode")
         .combineArtifacts(false)
         .restrictions(BatchRestrictionsProperty.builder()
                 .computeTypesAllowed(List.of("computeTypesAllowed"))
                 .maximumBuildsAllowed(123)
                 .build())
         .serviceRole("serviceRole")
         .timeoutInMins(123)
         .build();
 

See Also: