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

UpdateAppRequest

import type { UpdateAppRequest } from "https://aws-api.deno.dev/v0.3/services/opsworks.ts?docs=full";
interface UpdateAppRequest {
AppId: string;
AppSource?: Source | null;
Attributes?: [key in AppAttributesKeys]: string | null | undefined | null;
DataSources?: DataSource[] | null;
Description?: string | null;
Domains?: string[] | null;
EnableSsl?: boolean | null;
Environment?: EnvironmentVariable[] | null;
Name?: string | null;
SslConfiguration?: SslConfiguration | null;
Type?: AppType | null;
}

§Properties

§
AppId: string
[src]

The app ID.

§
AppSource?: Source | null
[src]

A Source object that specifies the app repository.

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

One or more user-defined key/value pairs to be added to the stack attributes.

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

The app's data sources.

§
Description?: string | null
[src]

A description of the app.

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

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

§
EnableSsl?: boolean | null
[src]

Whether SSL is enabled 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.

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

Note: If you have specified one or more environment variables, you cannot modify the stack's Chef version.

§
Name?: string | null
[src]

The app name.

§
SslConfiguration?: SslConfiguration | null
[src]

An SslConfiguration object with the SSL configuration.

§
Type?: AppType | null
[src]

The app type.