Amazon Cloud WAN · Schema

CreateCoreNetworkRequest

Request body for creating a core network.

Cloud WANNetworkingWide Area NetworkSD-WAN

Properties

Name Type Description
GlobalNetworkId string The ID of the global network that a core network will be a part of.
Description string The description of a core network.
Tags array Key-value tags for the core network.
View JSON Schema on GitHub

JSON Schema

cloud-wan-create-core-network-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cloud-wan/refs/heads/main/json-schema/cloud-wan-create-core-network-request-schema.json",
  "title": "CreateCoreNetworkRequest",
  "description": "Request body for creating a core network.",
  "type": "object",
  "properties": {
    "GlobalNetworkId": {
      "type": "string",
      "description": "The ID of the global network that a core network will be a part of.",
      "example": "global-network-abc12345"
    },
    "Description": {
      "type": "string",
      "description": "The description of a core network."
    },
    "Tags": {
      "type": "array",
      "items": {
        "type": "object"
      },
      "description": "Key-value tags for the core network."
    }
  },
  "required": [
    "GlobalNetworkId"
  ]
}