CfnAssessmentFrameworkMixinProps
- class aws_cdk.cfn_property_mixins.aws_auditmanager.CfnAssessmentFrameworkMixinProps(*, compliance_type=None, control_sets=None, description=None, name=None, tags=None)
Bases:
objectProperties for CfnAssessmentFrameworkPropsMixin.
- Parameters:
compliance_type (
Optional[str]) – The compliance type that the framework supports, such as CIS or HIPAA.control_sets (
Union[IResolvable,Sequence[Union[IResolvable,ControlSetProperty,Dict[str,Any]]],None]) – The control sets that are associated with the framework.description (
Optional[str]) – The description of the framework.name (
Optional[str]) – The name of the framework.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags associated with the framework.
- See:
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.cfn_property_mixins import aws_auditmanager as auditmanager cfn_assessment_framework_mixin_props = auditmanager.CfnAssessmentFrameworkMixinProps( compliance_type="complianceType", control_sets=[auditmanager.CfnAssessmentFrameworkPropsMixin.ControlSetProperty( controls=[auditmanager.CfnAssessmentFrameworkPropsMixin.ControlSetControlProperty( id="id" )], name="name" )], description="description", name="name", tags=[CfnTag( key="key", value="value" )] )
Attributes
- compliance_type
The compliance type that the framework supports, such as CIS or HIPAA.
- control_sets
The control sets that are associated with the framework.
- description
The description of the framework.
- name
The name of the framework.
- tags
The tags associated with the framework.