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

GitHubCodeDestination

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

Information about the GitHub repository to be created in AWS CodeStar. This is where the source code files provided with the project request will be uploaded after project creation.

interface GitHubCodeDestination {
description?: string | null;
issuesEnabled: boolean;
name: string;
owner: string;
privateRepository: boolean;
token: string;
type: string;
}

§Properties

§
description?: string | null
[src]

Description for the GitHub repository to be created in AWS CodeStar. This description displays in GitHub after the repository is created.

§
issuesEnabled: boolean
[src]

Whether to enable issues for the GitHub repository.

§
name: string
[src]

Name of the GitHub repository to be created in AWS CodeStar.

§
owner: string
[src]

The GitHub username for the owner of the GitHub repository to be created in AWS CodeStar. If this repository should be owned by a GitHub organization, provide its name.

§
privateRepository: boolean
[src]

Whether the GitHub repository is to be a private repository.

§
token: string
[src]

The GitHub user's personal access token for the GitHub repository.

§
type: string
[src]

The type of GitHub repository to be created in AWS CodeStar. Valid values are User or Organization.