Amazon CloudFront · Schema

InvalidationList

InvalidationList 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-invalidation-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-invalidation-list-schema.json",
  "title": "InvalidationList",
  "description": "InvalidationList 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/Invalidation"
      }
    }
  }
}