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

CodeDestination

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

The repository to be created in AWS CodeStar. Valid values are AWS CodeCommit or GitHub. After AWS CodeStar provisions the new repository, the source code files provided with the project request are placed in the repository.

interface CodeDestination {
codeCommit?: CodeCommitCodeDestination | null;
gitHub?: GitHubCodeDestination | null;
}

§Properties

§
codeCommit?: CodeCommitCodeDestination | null
[src]

Information about the AWS CodeCommit 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.

§

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.