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

GitConfig

import type { GitConfig } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";

Specifies configuration details for a Git repository in your Amazon Web Services account.

interface GitConfig {
Branch?: string | null;
RepositoryUrl: string;
SecretArn?: string | null;
}

§Properties

§
Branch?: string | null
[src]

The default branch for the Git repository.

§
RepositoryUrl: string
[src]

The URL where the Git repository is located.

§
SecretArn?: string | null
[src]

The Amazon Resource Name (ARN) of the Amazon Web Services Secrets Manager secret that contains the credentials used to access the git repository. The secret must have a staging label of AWSCURRENT and must be in the following format:

{"username": _UserName_, "password": _Password_}