ProjectBuildBatchConfig constructor
const
ProjectBuildBatchConfig({
- Input<
bool?> ? combineArtifacts, - Input<
ProjectBuildBatchConfigRestrictions?> ? restrictions, - required Input<
String> serviceRole, - Input<
int?> ? timeoutInMins,
Creates a new ProjectBuildBatchConfig.
combineArtifacts Specifies if the build artifacts for the batch build should be combined into a single
restrictions Configuration block specifying the restrictions for the batch build. Detailed below.
serviceRole Specifies the service role ARN for the batch build project.
timeoutInMins Specifies the maximum amount of time, in minutes, that the batch build must be
Implementation
const ProjectBuildBatchConfig({
this.combineArtifacts,
this.restrictions,
required this.serviceRole,
this.timeoutInMins,
});