{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codebuild/refs/heads/main/json-structure/amazon-codebuild-batch-restrictions-structure.json", "name": "BatchRestrictions", "description": "Specifies restrictions for the batch build.", "type": "object", "properties": { "maximumBuildsAllowed": { "allOf": [ { "$ref": "#/components/schemas/WrapperInt" }, { "description": "Specifies the maximum number of builds allowed." } ] }, "computeTypesAllowed": { "allOf": [ { "$ref": "#/components/schemas/ComputeTypesAllowed" }, { "description": "An array of strings that specify the compute types that are allowed for the batch build. See Build environment compute types in the CodeBuild User Guide for these values. " } ] } } }