Amazon Proton · JSON Structure

Amazon Proton List Repository Sync Definitions Input Structure

ListRepositorySyncDefinitionsInput schema from Amazon Proton API

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

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

Properties

nextToken repositoryName repositoryProvider syncType

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-list-repository-sync-definitions-input-structure.json",
  "name": "ListRepositorySyncDefinitionsInput",
  "description": "ListRepositorySyncDefinitionsInput schema from Amazon Proton API",
  "type": "object",
  "properties": {
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EmptyNextToken"
        },
        {
          "description": "A token that indicates the location of the next repository sync definition in the array of repository sync definitions, after the list of repository sync definitions previously requested."
        }
      ]
    },
    "repositoryName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RepositoryName"
        },
        {
          "description": "The repository name."
        }
      ]
    },
    "repositoryProvider": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RepositoryProvider"
        },
        {
          "description": "The repository provider."
        }
      ]
    },
    "syncType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SyncType"
        },
        {
          "description": "The sync type. The only supported value is <code>TEMPLATE_SYNC</code>."
        }
      ]
    }
  },
  "required": [
    "repositoryName",
    "repositoryProvider",
    "syncType"
  ]
}