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

BackendEnvironment

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

Describes the backend environment for an Amplify app.

interface BackendEnvironment {
backendEnvironmentArn: string;
createTime: Date | number;
deploymentArtifacts?: string | null;
environmentName: string;
stackName?: string | null;
updateTime: Date | number;
}

§Properties

§
backendEnvironmentArn: string
[src]

The Amazon Resource Name (ARN) for a backend environment that is part of an Amplify app.

§
createTime: Date | number
[src]

The creation date and time for a backend environment that is part of an Amplify app.

§
deploymentArtifacts?: string | null
[src]

The name of deployment artifacts.

§
environmentName: string
[src]

The name for a backend environment that is part of an Amplify app.

§
stackName?: string | null
[src]

The AWS CloudFormation stack name of a backend environment.

§
updateTime: Date | number
[src]

The last updated date and time for a backend environment that is part of an Amplify app.