FrameworkControl constructor

const FrameworkControl({
  1. Input<List<FrameworkControlInputParameter>?>? inputParameters,
  2. required Input<String> name,
  3. Input<FrameworkControlScope?>? scope,
})

Creates a new FrameworkControl. inputParameters One or more input parameter blocks. 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. Detailed below. name The name of a control. This name is between 1 and 256 characters. scope 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. Detailed below.

Implementation

const FrameworkControl({
  this.inputParameters,
  required this.name,
  this.scope,
});