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

ValidateConfigurationSettingsMessage

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

A list of validation messages for a specified configuration template.

interface ValidateConfigurationSettingsMessage {
ApplicationName: string;
EnvironmentName?: string | null;
OptionSettings: ConfigurationOptionSetting[];
TemplateName?: string | null;
}

§Properties

§
ApplicationName: string
[src]

The name of the application that the configuration template or environment belongs to.

§
EnvironmentName?: string | null
[src]

The name of the environment to validate the settings against.

Condition: You cannot specify both this and a configuration template name.

§

A list of the options and desired values to evaluate.

§
TemplateName?: string | null
[src]

The name of the configuration template to validate the settings against.

Condition: You cannot specify both this and an environment name.