Amazon CloudFront · JSON Structure

Cloudfront Distribution Structure

Distribution schema

Type: object Properties: 6
CloudFrontCDNContent DeliveryEdge

Distribution is a JSON Structure definition published by Amazon CloudFront, describing 6 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Id ARN Status LastModifiedTime DomainName DistributionConfig

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cloudfront/refs/heads/main/json-structure/cloudfront-distribution-structure.json",
  "name": "Distribution",
  "description": "Distribution schema",
  "type": "object",
  "properties": {
    "Id": {
      "type": "string",
      "description": "The distribution's unique identifier."
    },
    "ARN": {
      "type": "string",
      "description": "The ARN of the distribution."
    },
    "Status": {
      "type": "string",
      "description": "The current status of the distribution (e.g., Deployed, InProgress)."
    },
    "LastModifiedTime": {
      "type": "datetime",
      "description": "The date and time the distribution was last modified."
    },
    "DomainName": {
      "type": "string",
      "description": "The domain name corresponding to the distribution (e.g., d111111abcdef8.cloudfront.net)."
    },
    "DistributionConfig": {
      "$ref": "#/components/schemas/DistributionConfig"
    }
  }
}