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

UpdateConfigurationTemplateMessage

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

The result message containing the options for the specified solution stack.

interface UpdateConfigurationTemplateMessage {
ApplicationName: string;
Description?: string | null;
OptionSettings?: ConfigurationOptionSetting[] | null;
OptionsToRemove?: OptionSpecification[] | null;
TemplateName: string;
}

§Properties

§
ApplicationName: string
[src]

The name of the application associated with the configuration template to update.

If no application is found with this name, UpdateConfigurationTemplate returns an InvalidParameterValue error.

§
Description?: string | null
[src]

A new description for the configuration.

§
OptionSettings?: ConfigurationOptionSetting[] | null
[src]

A list of configuration option settings to update with the new specified option value.

§
OptionsToRemove?: OptionSpecification[] | null
[src]

A list of configuration options to remove from the configuration set.

Constraint: You can remove only UserDefined configuration options.

§
TemplateName: string
[src]

The name of the configuration template to update.

If no configuration template is found with this name, UpdateConfigurationTemplate returns an InvalidParameterValue error.