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

App

import type { App } from "https://aws-api.deno.dev/v0.3/services/opsworks.ts?docs=full";

A description of the app.

interface App {
AppId?: string | null;
AppSource?: Source | null;
Attributes?: [key in AppAttributesKeys]: string | null | undefined | null;
CreatedAt?: string | null;
DataSources?: DataSource[] | null;
Description?: string | null;
Domains?: string[] | null;
EnableSsl?: boolean | null;
Environment?: EnvironmentVariable[] | null;
Name?: string | null;
Shortname?: string | null;
SslConfiguration?: SslConfiguration | null;
StackId?: string | null;
Type?: AppType | null;
}

§Properties

§
AppId?: string | null
[src]

The app ID.

§
AppSource?: Source | null
[src]

A Source object that describes the app repository.

§
Attributes?: [key in AppAttributesKeys]: string | null | undefined | null
[src]

The stack attributes.

§
CreatedAt?: string | null
[src]

When the app was created.

§
DataSources?: DataSource[] | null
[src]

The app's data sources.

§
Description?: string | null
[src]

A description of the app.

§
Domains?: string[] | null
[src]

The app vhost settings with multiple domains separated by commas. For example: 'www.example.com, example.com'

§
EnableSsl?: boolean | null
[src]

Whether to enable SSL for the app.

§
Environment?: EnvironmentVariable[] | null
[src]

An array of EnvironmentVariable objects that specify environment variables to be associated with the app. After you deploy the app, these variables are defined on the associated app server instances. For more information, see Environment Variables.

Note: There is no specific limit on the number of environment variables. However, the size of the associated data structure - which includes the variable names, values, and protected flag values - cannot exceed 20 KB. This limit should accommodate most if not all use cases, but if you do exceed it, you will cause an exception (API) with an "Environment: is too large (maximum is 20 KB)" message.

§
Name?: string | null
[src]

The app name.

§
Shortname?: string | null
[src]

The app's short name.

§
SslConfiguration?: SslConfiguration | null
[src]

An SslConfiguration object with the SSL configuration.

§
StackId?: string | null
[src]

The app stack ID.

§
Type?: AppType | null
[src]

The app type.