Interface CfnProject.BatchRestrictionsProperty

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

@Stability(Stable) public static interface CfnProject.BatchRestrictionsProperty extends software.amazon.jsii.JsiiSerializable
Specifies restrictions for the batch build.

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.*;
 BatchRestrictionsProperty batchRestrictionsProperty = BatchRestrictionsProperty.builder()
         .computeTypesAllowed(List.of("computeTypesAllowed"))
         .maximumBuildsAllowed(123)
         .build();
 

See Also: