FrameworkControlArgs

data class FrameworkControlArgs(val inputParameters: Output<List<FrameworkControlInputParameterArgs>>? = null, val name: Output<String>, val scope: Output<FrameworkControlScopeArgs>? = null) : ConvertibleToJava<FrameworkControlArgs>

Constructors

Link copied to clipboard
constructor(inputParameters: Output<List<FrameworkControlInputParameterArgs>>? = null, name: Output<String>, scope: Output<FrameworkControlScopeArgs>? = null)

Properties

Link copied to clipboard

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.

Link copied to clipboard
val name: Output<String>

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

Link copied to clipboard
val scope: Output<FrameworkControlScopeArgs>? = null

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.

Functions

Link copied to clipboard
open override fun toJava(): FrameworkControlArgs