Amazon Proton · Schema

CreateServiceSyncConfigInput

CreateServiceSyncConfigInput schema from Amazon Proton API

DevOpsInfrastructure as CodePlatform EngineeringServerlessTemplatesSelf-ServiceCI/CD

Properties

Name Type Description
branch object
filePath object
repositoryName object
repositoryProvider object
serviceName object
View JSON Schema on GitHub

JSON Schema

amazon-proton-create-service-sync-config-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-create-service-sync-config-input-schema.json",
  "title": "CreateServiceSyncConfigInput",
  "description": "CreateServiceSyncConfigInput schema from Amazon Proton API",
  "type": "object",
  "properties": {
    "branch": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GitBranchName"
        },
        {
          "description": "The repository branch for your Proton Ops file."
        }
      ]
    },
    "filePath": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OpsFilePath"
        },
        {
          "description": "The path to the Proton Ops file."
        }
      ]
    },
    "repositoryName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RepositoryName"
        },
        {
          "description": "The repository name."
        }
      ]
    },
    "repositoryProvider": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RepositoryProvider"
        },
        {
          "description": "The provider type for your repository."
        }
      ]
    },
    "serviceName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceName"
        },
        {
          "description": "The name of the service the Proton Ops file is for."
        }
      ]
    }
  },
  "required": [
    "branch",
    "filePath",
    "repositoryName",
    "repositoryProvider",
    "serviceName"
  ]
}