Amazon Proton · Schema

ListRepositorySyncDefinitionsInput

ListRepositorySyncDefinitionsInput schema from Amazon Proton API

DevOpsInfrastructure as CodePlatform EngineeringServerlessTemplatesSelf-ServiceCI/CD

Properties

Name Type Description
nextToken object
repositoryName object
repositoryProvider object
syncType object
View JSON Schema on GitHub

JSON Schema

amazon-proton-list-repository-sync-definitions-input-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-proton/refs/heads/main/json-schema/amazon-proton-list-repository-sync-definitions-input-schema.json",
  "title": "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"
  ]
}