Amazon Proton · JSON Structure

Amazon Proton Repository Sync Attempt Structure

Detail data for a repository sync attempt activated by a push to a repository.

Type: object Properties: 3 Required: 3
DevOpsInfrastructure as CodePlatform EngineeringServerlessTemplatesSelf-ServiceCI/CD

RepositorySyncAttempt is a JSON Structure definition published by Amazon Proton, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

events startedAt status

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-proton/refs/heads/main/json-structure/amazon-proton-repository-sync-attempt-structure.json",
  "name": "RepositorySyncAttempt",
  "description": "Detail data for a repository sync attempt activated by a push to a repository.",
  "type": "object",
  "properties": {
    "events": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RepositorySyncEvents"
        },
        {
          "description": "Detail data for sync attempt events."
        }
      ]
    },
    "startedAt": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The time when the sync attempt started."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RepositorySyncStatus"
        },
        {
          "description": "The sync attempt status."
        }
      ]
    }
  },
  "required": [
    "events",
    "startedAt",
    "status"
  ]
}