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

ParameterDeclaration

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

The ParameterDeclaration data type.

interface ParameterDeclaration {
DefaultValue?: string | null;
Description?: string | null;
NoEcho?: boolean | null;
ParameterConstraints?: ParameterConstraints | null;
ParameterKey?: string | null;
ParameterType?: string | null;
}

§Properties

§
DefaultValue?: string | null
[src]

The default value of the parameter.

§
Description?: string | null
[src]

The description that's associate with the parameter.

§
NoEcho?: boolean | null
[src]

Flag that indicates whether the parameter value is shown as plain text in logs and in the Amazon Web Services Management Console.

§
ParameterConstraints?: ParameterConstraints | null
[src]

The criteria that CloudFormation uses to validate parameter values.

§
ParameterKey?: string | null
[src]

The name that's associated with the parameter.

§
ParameterType?: string | null
[src]

The type of parameter.