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

CreateEnvironmentRequest

import type { CreateEnvironmentRequest } from "https://aws-api.deno.dev/v0.4/services/appconfig.ts?docs=full";
interface CreateEnvironmentRequest {
ApplicationId: string;
Description?: string | null;
Monitors?: Monitor[] | null;
Name: string;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
ApplicationId: string
[src]

The application ID.

§
Description?: string | null
[src]

A description of the environment.

§
Monitors?: Monitor[] | null
[src]

Amazon CloudWatch alarms to monitor during the deployment process.

§
Name: string
[src]

A name for the environment.

§
Tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

Metadata to assign to the environment. Tags help organize and categorize your AppConfig resources. Each tag consists of a key and an optional value, both of which you define.