Amazon CodeBuild · JSON Structure

Amazon Codebuild Network Interface Structure

Describes a network interface.

Type: object Properties: 2
AmazonCI/CDBuildContinuous IntegrationDevOpsTesting

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

Properties

subnetId networkInterfaceId

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-network-interface-structure.json",
  "name": "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."
        }
      ]
    }
  }
}