We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fde814b commit 8262adfCopy full SHA for 8262adf
cfn/JavaScriptESDK.yml
@@ -20,6 +20,12 @@ Parameters:
20
Type: String
21
Description: The regionalized bucket to read the artifact from.
22
Default: 'placeholder'
23
+ NumberOfBuildsInBatch:
24
+ Type: Number
25
+ MaxValue: 100
26
+ MinValue: 1
27
+ Default: 16
28
+ Description: The number of builds you expect to run in a batch
29
30
Resources:
31
CodeBuildRole:
@@ -79,7 +85,7 @@ Resources:
79
85
BuildBatchConfig:
80
86
ServiceRole: !GetAtt CodeBuildRole.Arn
81
87
Restrictions:
82
- MaximumBuildsAllowed: 100
88
+ MaximumBuildsAllowed: !Ref NumberOfBuildsInBatch
83
89
ComputeTypesAllowed:
84
90
- BUILD_GENERAL1_SMALL
91
- BUILD_GENERAL1_MEDIUM
0 commit comments