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

Environment

import type { Environment } from "https://aws-api.deno.dev/v0.4/services/proton.ts?docs=full";

Detailed data of an Proton environment resource. An Proton environment is a set of resources shared across Proton services.

interface Environment {
arn: string;
codebuildRoleArn?: string | null;
componentRoleArn?: string | null;
createdAt: Date | number;
deploymentStatus: DeploymentStatus;
deploymentStatusMessage?: string | null;
description?: string | null;
environmentAccountConnectionId?: string | null;
environmentAccountId?: string | null;
lastDeploymentAttemptedAt: Date | number;
lastDeploymentSucceededAt: Date | number;
name: string;
protonServiceRoleArn?: string | null;
provisioning?: Provisioning | null;
provisioningRepository?: RepositoryBranch | null;
spec?: string | null;
templateMajorVersion: string;
templateMinorVersion: string;
templateName: string;
}

§Properties

§
arn: string
[src]

The Amazon Resource Name (ARN) of the environment.

§
codebuildRoleArn?: string | null
[src]

The Amazon Resource Name (ARN) of the IAM service role that allows Proton to provision infrastructure using CodeBuild-based provisioning on your behalf.

§
componentRoleArn?: string | null
[src]

The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined components in this environment. It determines the scope of infrastructure that a component can provision.

The environment must have a componentRoleArn to allow directly defined components to be associated with the environment.

For more information about components, see Proton components in the Proton User Guide.

§
createdAt: Date | number
[src]

The time when the environment was created.

§
deploymentStatus: DeploymentStatus
[src]

The environment deployment status.

§
deploymentStatusMessage?: string | null
[src]

An environment deployment status message.

§
description?: string | null
[src]

The description of the environment.

§
environmentAccountConnectionId?: string | null
[src]

The ID of the environment account connection that's used to provision infrastructure resources in an environment account.

§
environmentAccountId?: string | null
[src]

The ID of the environment account that the environment infrastructure resources are provisioned in.

§
lastDeploymentAttemptedAt: Date | number
[src]

The time when a deployment of the environment was last attempted.

§
lastDeploymentSucceededAt: Date | number
[src]

The time when the environment was last deployed successfully.

§
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.

§
provisioning?: Provisioning | null
[src]

When included, indicates that the environment template is for customer provisioned and managed infrastructure.

§
provisioningRepository?: RepositoryBranch | null
[src]

The linked repository that you use to host your rendered infrastructure templates for self-managed provisioning. A linked repository is a repository that has been registered with Proton. For more information, see "CreateRepository".

§
spec?: string | null
[src]

The environment spec.

§
templateMajorVersion: string
[src]

The major version of the environment template.

§
templateMinorVersion: string
[src]

The minor version of the environment template.

§
templateName: string
[src]

The Amazon Resource Name (ARN) of the environment template.