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.3/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 Set up repository connection in the Proton Administrator Guide and Setting up with Proton 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 Administrator Guide and Create a service in the Proton User Guide.

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

Create tags for your service. For more information, see Proton resources and tagging in the Proton Administrator Guide or 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.