Amazon CloudFront · Schema

DistributionList

DistributionList schema

CloudFrontCDNContent DeliveryEdge

Properties

Name Type Description
Marker string
NextMarker string
MaxItems integer
IsTruncated boolean
Quantity integer
Items array
View JSON Schema on GitHub

JSON Schema

cloudfront-distribution-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cloudfront/refs/heads/main/json-schema/cloudfront-distribution-list-schema.json",
  "title": "DistributionList",
  "description": "DistributionList schema",
  "type": "object",
  "properties": {
    "Marker": {
      "type": "string"
    },
    "NextMarker": {
      "type": "string"
    },
    "MaxItems": {
      "type": "integer"
    },
    "IsTruncated": {
      "type": "boolean"
    },
    "Quantity": {
      "type": "integer"
    },
    "Items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Distribution"
      }
    }
  }
}