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

ControlInputParameter

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

A list of parameters for a control. A control can have zero, one, or more than one parameter. An example of a control with two parameters is: "backup plan frequency is at least daily and the retention period is at least 1 year". The first parameter is daily. The second parameter is 1 year.

interface ControlInputParameter {
ParameterName?: string | null;
ParameterValue?: string | null;
}

§Properties

§
ParameterName?: string | null
[src]

The name of a parameter, for example, BackupPlanFrequency.

§
ParameterValue?: string | null
[src]

The value of parameter, for example, hourly.