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

ConfigurationOptionSetting

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

A specification identifying an individual configuration option along with its current value. For a list of possible namespaces and option values, see Option Values in the AWS Elastic Beanstalk Developer Guide.

interface ConfigurationOptionSetting {
Namespace?: string | null;
OptionName?: string | null;
ResourceName?: string | null;
Value?: string | null;
}

§Properties

§
Namespace?: string | null
[src]

A unique namespace that identifies the option's associated AWS resource.

§
OptionName?: string | null
[src]

The name of the configuration option.

§
ResourceName?: string | null
[src]

A unique resource name for the option setting. Use it for a time–based scaling configuration option.

§
Value?: string | null
[src]

The current value for the configuration option.