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

CreateEnvironmentInput

import type { CreateEnvironmentInput } from "https://aws-api.deno.dev/v0.3/services/proton.ts?docs=full";
interface CreateEnvironmentInput {
description?: string | null;
environmentAccountConnectionId?: string | null;
name: string;
protonServiceRoleArn?: string | null;
provisioningRepository?: RepositoryBranchInput | null;
spec: string;
tags?: Tag[] | null;
templateMajorVersion: string;
templateMinorVersion?: string | null;
templateName: string;
}

§Properties

§
description?: string | null
[src]

A description of the environment that's being created and deployed.

§
environmentAccountConnectionId?: string | null
[src]

The ID of the environment account connection that you provide if you're provisioning your environment infrastructure resources to an environment account. You must include either the environmentAccountConnectionId or protonServiceRoleArn parameter and value and omit the provisioningRepository parameter and values. For more information, see Environment account connections in the Proton Administrator guide.

§
name: string
[src]

The name of the environment.

§
protonServiceRoleArn?: string | null
[src]

The Amazon Resource Name (ARN) of the Proton service role that allows Proton to make calls to other services on your behalf. You must include either the environmentAccountConnectionId or protonServiceRoleArn parameter and value and omit the provisioningRepository parameter when you use standard provisioning.

§
provisioningRepository?: RepositoryBranchInput | null
[src]

The repository that you provide with pull request provisioning. If you provide this parameter, you must omit the environmentAccountConnectionId and protonServiceRoleArn parameters.

! IMPORTANT: ! Provisioning by pull request is currently in feature preview and is only usable with Terraform based Proton Templates. ! To learn more about Amazon Web Services Feature Preview terms, see section 2 on Beta and Previews.

§
spec: string
[src]

A link to a YAML formatted spec file that provides inputs as defined in the environment template bundle schema file. For more information, see Environments in the Proton Administrator Guide.

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

Create tags for your environment. 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 environment template.

§
templateMinorVersion?: string | null
[src]

The minor version of the environment template.

§
templateName: string
[src]

The name of the environment template. For more information, see Environment Templates in the Proton Administrator Guide.