ProjectBuildBatchConfig constructor

const ProjectBuildBatchConfig({
  1. Input<bool?>? combineArtifacts,
  2. Input<ProjectBuildBatchConfigRestrictions?>? restrictions,
  3. required Input<String> serviceRole,
  4. 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,
});