CfnFrameworkMixinProps
- class aws_cdk.mixins_preview.aws_backup.mixins.CfnFrameworkMixinProps(*, framework_controls=None, framework_description=None, framework_name=None, framework_tags=None)
Bases:
objectProperties for CfnFrameworkPropsMixin.
- Parameters:
framework_controls (
Union[IResolvable,Sequence[Union[IResolvable,FrameworkControlProperty,Dict[str,Any]]],None]) – Contains detailed information about all of the controls of a framework. Each framework must contain at least one control.framework_description (
Optional[str]) – An optional description of the framework with a maximum 1,024 characters.framework_name (
Optional[str]) – 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 (_).framework_tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags to assign to your framework.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-framework.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_backup import mixins as backup_mixins # control_scope: Any cfn_framework_mixin_props = backup_mixins.CfnFrameworkMixinProps( framework_controls=[backup_mixins.CfnFrameworkPropsMixin.FrameworkControlProperty( control_input_parameters=[backup_mixins.CfnFrameworkPropsMixin.ControlInputParameterProperty( parameter_name="parameterName", parameter_value="parameterValue" )], control_name="controlName", control_scope=control_scope )], framework_description="frameworkDescription", framework_name="frameworkName", framework_tags=[CfnTag( key="key", value="value" )] )
Attributes
- framework_controls
Contains detailed information about all of the controls of a framework.
Each framework must contain at least one control.
- framework_description
An optional description of the framework with a maximum 1,024 characters.
- framework_name
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 (_).
- framework_tags
The tags to assign to your framework.