VPC

DatabaseTime-SeriesPostgreSQLOpen SourceCloudHypertablesContinuous AggregatesTiger Cloud

Properties

Name Type Description
id string
name string
cidr string
region_code string
View JSON Schema on GitHub

JSON Schema

timescaledb-vpc-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VPC",
  "title": "VPC",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "readOnly": true,
      "example": "1234567890"
    },
    "name": {
      "type": "string",
      "example": "my-production-vpc"
    },
    "cidr": {
      "type": "string",
      "example": "10.0.0.0/16"
    },
    "region_code": {
      "type": "string",
      "example": "us-east-1"
    }
  }
}