interface CfnFrameworkMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Backup.CfnFrameworkMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbackup#CfnFrameworkMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.backup.CfnFrameworkMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_backup.CfnFrameworkMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_backup » CfnFrameworkMixinProps |
Properties for CfnFrameworkPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-framework.html
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 cfnFrameworkMixinProps: backup.CfnFrameworkMixinProps = {
frameworkControls: [{
controlInputParameters: [{
parameterName: 'parameterName',
parameterValue: 'parameterValue',
}],
controlName: 'controlName',
controlScope: controlScope,
}],
frameworkDescription: 'frameworkDescription',
frameworkName: 'frameworkName',
frameworkTags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| framework | IResolvable | (IResolvable | Framework)[] | Contains detailed information about all of the controls of a framework. |
| framework | string | An optional description of the framework with a maximum 1,024 characters. |
| framework | string | The unique name of a framework. |
| framework | Cfn[] | The tags to assign to your framework. |
frameworkControls?
Type:
IResolvable | (IResolvable | Framework)[]
(optional)
Contains detailed information about all of the controls of a framework.
Each framework must contain at least one control.
frameworkDescription?
Type:
string
(optional)
An optional description of the framework with a maximum 1,024 characters.
frameworkName?
Type:
string
(optional)
The unique name of a framework.
This name is between 1 and 256 characters, starting with a letter, and consisting of letters (a-z, A-Z), numbers (0-9), and underscores (_).
frameworkTags?
Type:
Cfn[]
(optional)
The tags to assign to your framework.

.NET
Go
Java
Python
TypeScript