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

CreateServiceInput

import type { CreateServiceInput } from "https://aws-api.deno.dev/v0.4/services/proton.ts?docs=full";
interface CreateServiceInput {
branchName?: string | null;
description?: string | null;
name: string;
repositoryConnectionArn?: string | null;
repositoryId?: string | null;
spec: string;
tags?: Tag[] | null;
templateMajorVersion: string;
templateMinorVersion?: string | null;
templateName: string;
}

§Properties

§
branchName?: string | null
[src]

The name of the code repository branch that holds the code that's deployed in Proton. Don't include this parameter if your service template doesn't include a service pipeline.

§
description?: string | null
[src]

A description of the Proton service.

§
name: string
[src]

The service name.

§
repositoryConnectionArn?: string | null
[src]

The Amazon Resource Name (ARN) of the repository connection. For more information, see Setting up an AWS CodeStar connection in the Proton User Guide. Don't include this parameter if your service template doesn't include a service pipeline.

§
repositoryId?: string | null
[src]

The ID of the code repository. Don't include this parameter if your service template doesn't include a service pipeline.

§
spec: string
[src]

A link to a spec file that provides inputs as defined in the service template bundle schema file. The spec file is in YAML format. Don’t include pipeline inputs in the spec if your service template doesn’t include a service pipeline. For more information, see Create a service in the Proton User Guide.

§
tags?: Tag[] | null
[src]

An optional list of metadata items that you can associate with the Proton service. A tag is a key-value pair.

For more information, see Proton resources and tagging in the Proton User Guide.

§
templateMajorVersion: string
[src]

The major version of the service template that was used to create the service.

§
templateMinorVersion?: string | null
[src]

The minor version of the service template that was used to create the service.

§
templateName: string
[src]

The name of the service template that's used to create the service.