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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnProject.BatchRestrictionsPropertystatic final classAn implementation forCfnProject.BatchRestrictionsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getComputeTypesAllowed
An array of strings that specify the compute types that are allowed for the batch build.See Build environment compute types in the AWS CodeBuild User Guide for these values.
-
getMaximumBuildsAllowed
Specifies the maximum number of builds allowed. -
builder
-