CfnAssessmentFrameworkProps

class aws_cdk.aws_auditmanager.CfnAssessmentFrameworkProps(*, control_sets, name, compliance_type=None, description=None, tags=None)

Bases: object

Properties 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-auditmanager-assessmentframework.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-auditmanager-assessmentframework.html#cfn-auditmanager-assessmentframework-compliancetype

control_sets

The control sets that are associated with the framework.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-auditmanager-assessmentframework.html#cfn-auditmanager-assessmentframework-controlsets

description

The description of the framework.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-auditmanager-assessmentframework.html#cfn-auditmanager-assessmentframework-description

name

The name of the framework.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-auditmanager-assessmentframework.html#cfn-auditmanager-assessmentframework-name

tags

The tags associated with the framework.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-auditmanager-assessmentframework.html#cfn-auditmanager-assessmentframework-tags