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

FrameworkControl

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

Contains detailed information about all of the controls of a framework. Each framework must contain at least one control.

interface FrameworkControl {
ControlInputParameters?: ControlInputParameter[] | null;
ControlName: string;
ControlScope?: ControlScope | null;
}

§Properties

§
ControlInputParameters?: ControlInputParameter[] | null
[src]

A list of ParameterName and ParameterValue pairs.

§
ControlName: string
[src]

The name of a control. This name is between 1 and 256 characters.

§
ControlScope?: ControlScope | null
[src]

The scope of a control. The control scope defines what the control will evaluate. Three examples of control scopes are: a specific backup plan, all backup plans with a specific tag, or all backup plans. For more information, see ControlScope.