Amazon CodeBuild · Schema

SourceCredentialsInfo

Information about the credentials for a GitHub, GitHub Enterprise, or Bitbucket repository.

AmazonCI/CDBuildContinuous IntegrationDevOpsTesting

Properties

Name Type Description
arn object
serverType object
authType object
View JSON Schema on GitHub

JSON Schema

amazon-codebuild-source-credentials-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codebuild/refs/heads/main/json-schema/amazon-codebuild-source-credentials-info-schema.json",
  "title": "SourceCredentialsInfo",
  "description": " Information about the credentials for a GitHub, GitHub Enterprise, or Bitbucket repository. ",
  "type": "object",
  "properties": {
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": " The Amazon Resource Name (ARN) of the token. "
        }
      ]
    },
    "serverType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ServerType"
        },
        {
          "description": " The type of source provider. The valid options are GITHUB, GITHUB_ENTERPRISE, or BITBUCKET. "
        }
      ]
    },
    "authType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AuthType"
        },
        {
          "description": " The type of authentication used by the credentials. Valid options are OAUTH, BASIC_AUTH, or PERSONAL_ACCESS_TOKEN. "
        }
      ]
    }
  }
}