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

Toolchain

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

The toolchain template file provided with the project request. AWS CodeStar uses the template to provision the toolchain stack in AWS CloudFormation.

interface Toolchain {
roleArn?: string | null;
stackParameters?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
roleArn?: string | null
[src]

The service role ARN for AWS CodeStar to use for the toolchain template during stack provisioning.

§

The Amazon S3 location where the toolchain template file provided with the project request is stored. AWS CodeStar retrieves the file during project creation.

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

The list of parameter overrides to be passed into the toolchain template during stack provisioning, if any.