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

CreateProjectRequest

import type { CreateProjectRequest } from "https://aws-api.deno.dev/v0.3/services/codestar.ts?docs=full";
interface CreateProjectRequest {
clientRequestToken?: string | null;
description?: string | null;
id: string;
name: string;
sourceCode?: Code[] | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
toolchain?: Toolchain | null;
}

§Properties

§
clientRequestToken?: string | null
[src]

A user- or system-generated token that identifies the entity that requested project creation. This token can be used to repeat the request.

§
description?: string | null
[src]

The description of the project, if any.

§
id: string
[src]

The ID of the project to be created in AWS CodeStar.

§
name: string
[src]

The display name for the project to be created in AWS CodeStar.

§
sourceCode?: Code[] | null
[src]

A list of the Code objects submitted with the project request. If this parameter is specified, the request must also include the toolchain parameter.

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

The tags created for the project.

§
toolchain?: Toolchain | null
[src]

The name of the toolchain template file submitted with the project request. If this parameter is specified, the request must also include the sourceCode parameter.