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

ValidationMessage

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

An error or warning for a desired configuration option value.

interface ValidationMessage {
Message?: string | null;
Namespace?: string | null;
OptionName?: string | null;
Severity?: ValidationSeverity | null;
}

§Properties

§
Message?: string | null
[src]

A message describing the error or warning.

§
Namespace?: string | null
[src]

The namespace to which the option belongs.

§
OptionName?: string | null
[src]

The name of the option.

§
Severity?: ValidationSeverity | null
[src]

An indication of the severity of this message:

  • error: This message indicates that this is not a valid setting for an option.
  • warning: This message is providing information you should take into account.