Amazon CodeBuild · JSON Structure

Amazon Codebuild Vpc Config Structure

Information about the VPC configuration that CodeBuild accesses.

Type: object Properties: 3
AmazonCI/CDBuildContinuous IntegrationDevOpsTesting

VpcConfig is a JSON Structure definition published by Amazon CodeBuild, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

vpcId subnets securityGroupIds

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codebuild/refs/heads/main/json-structure/amazon-codebuild-vpc-config-structure.json",
  "name": "VpcConfig",
  "description": "Information about the VPC configuration that CodeBuild accesses.",
  "type": "object",
  "properties": {
    "vpcId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The ID of the Amazon VPC."
        }
      ]
    },
    "subnets": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Subnets"
        },
        {
          "description": "A list of one or more subnet IDs in your Amazon VPC."
        }
      ]
    },
    "securityGroupIds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SecurityGroupIds"
        },
        {
          "description": "A list of one or more security groups IDs in your Amazon VPC."
        }
      ]
    }
  }
}