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

Parameter

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

The Parameter data type.

interface Parameter {
ParameterKey?: string | null;
ParameterValue?: string | null;
ResolvedValue?: string | null;
UsePreviousValue?: boolean | null;
}

§Properties

§
ParameterKey?: string | null
[src]

The key associated with the parameter. If you don't specify a key and value for a particular parameter, CloudFormation uses the default value that is specified in your template.

§
ParameterValue?: string | null
[src]

The input value associated with the parameter.

§
ResolvedValue?: string | null
[src]

Read-only. Read-only. The value that corresponds to a SSM parameter key. This field is returned only for SSM parameter types in the template.

§
UsePreviousValue?: boolean | null
[src]

During a stack update, use the existing parameter value that the stack is using for a given parameter key. If you specify true, do not specify a parameter value.