Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SourceCredentialsInfo

import type { SourceCredentialsInfo } from "https://aws-api.deno.dev/v0.3/services/codebuild.ts?docs=full";

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

interface SourceCredentialsInfo {
arn?: string | null;
authType?: AuthType | null;
serverType?: ServerType | null;
}

§Properties

§
arn?: string | null
[src]

The Amazon Resource Name (ARN) of the token.

§
authType?: AuthType | null
[src]

The type of authentication used by the credentials. Valid options are OAUTH, BASIC_AUTH, or PERSONAL_ACCESS_TOKEN.

§
serverType?: ServerType | null
[src]

The type of source provider. The valid options are GITHUB, GITHUB_ENTERPRISE, or BITBUCKET.