interface CfnAssessmentFrameworkProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AuditManager.CfnAssessmentFrameworkProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsauditmanager#CfnAssessmentFrameworkProps |
Java | software.amazon.awscdk.services.auditmanager.CfnAssessmentFrameworkProps |
Python | aws_cdk.aws_auditmanager.CfnAssessmentFrameworkProps |
TypeScript | aws-cdk-lib » aws_auditmanager » CfnAssessmentFrameworkProps |
Properties for defining a CfnAssessmentFramework.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_auditmanager as auditmanager } from 'aws-cdk-lib';
const cfnAssessmentFrameworkProps: auditmanager.CfnAssessmentFrameworkProps = {
controlSets: [{
controls: [{
id: 'id',
}],
name: 'name',
}],
name: 'name',
// the properties below are optional
complianceType: 'complianceType',
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| control | IResolvable | (IResolvable | Control)[] | The control sets that are associated with the framework. |
| name | string | The name of the framework. |
| compliance | string | The compliance type that the framework supports, such as CIS or HIPAA. |
| description? | string | The description of the framework. |
| tags? | Cfn[] | The tags associated with the framework. |
controlSets
Type:
IResolvable | (IResolvable | Control)[]
The control sets that are associated with the framework.
name
Type:
string
The name of the framework.
complianceType?
Type:
string
(optional)
The compliance type that the framework supports, such as CIS or HIPAA.
description?
Type:
string
(optional)
The description of the framework.
tags?
Type:
Cfn[]
(optional)
The tags associated with the framework.

.NET
Go
Java
Python
TypeScript