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.3/services/proton.ts?docs=full";

The environment detail data. An Proton environment is a set resources shared across an Proton service.

interface Environment {
arn: string;
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.

§
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 repository that you provide with pull request provisioning.

! 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 | null
[src]

The environment spec.

§
templateMajorVersion: string
[src]

The ID of the major version of the environment template.

§
templateMinorVersion: string
[src]

The ID of the minor version of the environment template.

§
templateName: string
[src]

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