interface CfnFrameworkMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Backup.Mixins.CfnFrameworkMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbackup/mixins#CfnFrameworkMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.backup.mixins.CfnFrameworkMixinProps |
Python | aws_cdk.mixins_preview.aws_backup.mixins.CfnFrameworkMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_backup » mixins » 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 { mixins as backup_mixins } from '@aws-cdk/mixins-preview/aws-backup';
declare const controlScope: any;
const cfnFrameworkMixinProps: backup_mixins.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