Amazon CodeBuild · Schema

NetworkInterface

Describes a network interface.

AmazonCI/CDBuildContinuous IntegrationDevOpsTesting

Properties

Name Type Description
subnetId object
networkInterfaceId object
View JSON Schema on GitHub

JSON Schema

amazon-codebuild-network-interface-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codebuild/refs/heads/main/json-schema/amazon-codebuild-network-interface-schema.json",
  "title": "NetworkInterface",
  "description": "Describes a network interface.",
  "type": "object",
  "properties": {
    "subnetId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The ID of the subnet."
        }
      ]
    },
    "networkInterfaceId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The ID of the network interface."
        }
      ]
    }
  }
}