interface FrameworkControlProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Backup.CfnFrameworkPropsMixin.FrameworkControlProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbackup#CfnFrameworkPropsMixin_FrameworkControlProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.backup.CfnFrameworkPropsMixin.FrameworkControlProperty |
Python | aws_cdk.cfn_property_mixins.aws_backup.CfnFrameworkPropsMixin.FrameworkControlProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_backup » CfnFrameworkPropsMixin » FrameworkControlProperty |
Contains detailed information about all of the controls of a framework.
Each framework must contain at least one control.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_backup as backup } from '@aws-cdk/cfn-property-mixins';
declare const controlScope: any;
const frameworkControlProperty: backup.CfnFrameworkPropsMixin.FrameworkControlProperty = {
controlInputParameters: [{
parameterName: 'parameterName',
parameterValue: 'parameterValue',
}],
controlName: 'controlName',
controlScope: controlScope,
};
Properties
| Name | Type | Description |
|---|---|---|
| control | IResolvable | (IResolvable | Control)[] | The name/value pairs. |
| control | string | The name of a control. |
| control | any | The scope of a control. |
controlInputParameters?
Type:
IResolvable | (IResolvable | Control)[]
(optional)
The name/value pairs.
controlName?
Type:
string
(optional)
The name of a control.
This name is between 1 and 256 characters.
controlScope?
Type:
any
(optional)
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 .

.NET
Go
Java
Python
TypeScript