Amazon VPC · Schema

DescribeSubnetsResponse

Response from the DescribeSubnets action

NetworkingPrivate CloudSecuritySubnetsVPC

Properties

Name Type Description
subnetSet array Information about the subnets
nextToken string Token for the next page of results
View JSON Schema on GitHub

JSON Schema

amazon-vpc-describe-subnets-response-schema.json Raw ↑
{
  "type": "object",
  "description": "Response from the DescribeSubnets action",
  "properties": {
    "subnetSet": {
      "type": "array",
      "description": "Information about the subnets",
      "items": {
        "$ref": "#/components/schemas/Subnet"
      }
    },
    "nextToken": {
      "type": "string",
      "description": "Token for the next page of results"
    }
  },
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "DescribeSubnetsResponse"
}