Class CfnFrameworkPropsMixin.FrameworkControlProperty
Contains detailed information about all of the controls of a framework.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Backup
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnFrameworkPropsMixin.FrameworkControlProperty : CfnFrameworkPropsMixin.IFrameworkControlProperty
Syntax (vb)
Public Class CfnFrameworkPropsMixin.FrameworkControlProperty Implements CfnFrameworkPropsMixin.IFrameworkControlProperty
Remarks
Each framework must contain at least one control.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Backup;
var controlScope;
var frameworkControlProperty = new FrameworkControlProperty {
ControlInputParameters = new [] { new ControlInputParameterProperty {
ParameterName = "parameterName",
ParameterValue = "parameterValue"
} },
ControlName = "controlName",
ControlScope = controlScope
};
Synopsis
Constructors
| FrameworkControlProperty() | Contains detailed information about all of the controls of a framework. |
Properties
| ControlInputParameters | The name/value pairs. |
| ControlName | The name of a control. |
| ControlScope | The scope of a control. |
Constructors
FrameworkControlProperty()
Contains detailed information about all of the controls of a framework.
public FrameworkControlProperty()
Remarks
Each framework must contain at least one control.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Backup;
var controlScope;
var frameworkControlProperty = new FrameworkControlProperty {
ControlInputParameters = new [] { new ControlInputParameterProperty {
ParameterName = "parameterName",
ParameterValue = "parameterValue"
} },
ControlName = "controlName",
ControlScope = controlScope
};
Properties
ControlInputParameters
The name/value pairs.
public object? ControlInputParameters { get; set; }
Property Value
Remarks
ControlName
The name of a control.
public string? ControlName { get; set; }
Property Value
Remarks
This name is between 1 and 256 characters.
ControlScope
The scope of a control.
public object? ControlScope { get; set; }
Property Value
Remarks
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 .