CfnAssessmentFrameworkProps
- class aws_cdk.aws_auditmanager.CfnAssessmentFrameworkProps(*, control_sets, name, compliance_type=None, description=None, tags=None)
Bases:
objectProperties for defining a
CfnAssessmentFramework.- Parameters:
control_sets (
Union[IResolvable,Sequence[Union[IResolvable,ControlSetProperty,Dict[str,Any]]]]) – The control sets that are associated with the framework.name (
str) – The name of the framework.compliance_type (
Optional[str]) – The compliance type that the framework supports, such as CIS or HIPAA.description (
Optional[str]) – The description 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 import aws_auditmanager as auditmanager cfn_assessment_framework_props = auditmanager.CfnAssessmentFrameworkProps( control_sets=[auditmanager.CfnAssessmentFramework.ControlSetProperty( controls=[auditmanager.CfnAssessmentFramework.ControlSetControlProperty( id="id" )], name="name" )], name="name", # the properties below are optional compliance_type="complianceType", description="description", 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.