interface CfnAssessmentFrameworkMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AuditManager.CfnAssessmentFrameworkMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsauditmanager#CfnAssessmentFrameworkMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.auditmanager.CfnAssessmentFrameworkMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_auditmanager.CfnAssessmentFrameworkMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_auditmanager » CfnAssessmentFrameworkMixinProps |
Properties for CfnAssessmentFrameworkPropsMixin.
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/cfn-property-mixins';
const cfnAssessmentFrameworkMixinProps: auditmanager.CfnAssessmentFrameworkMixinProps = {
complianceType: 'complianceType',
controlSets: [{
controls: [{
id: 'id',
}],
name: 'name',
}],
description: 'description',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| compliance | string | The compliance type that the framework supports, such as CIS or HIPAA. |
| control | IResolvable | (IResolvable | Control)[] | The control sets that are associated with the framework. |
| description? | string | The description of the framework. |
| name? | string | The name of the framework. |
| tags? | Cfn[] | The tags associated with the framework. |
complianceType?
Type:
string
(optional)
The compliance type that the framework supports, such as CIS or HIPAA.
controlSets?
Type:
IResolvable | (IResolvable | Control)[]
(optional)
The control sets that are associated with the framework.
description?
Type:
string
(optional)
The description of the framework.
name?
Type:
string
(optional)
The name of the framework.
tags?
Type:
Cfn[]
(optional)
The tags associated with the framework.

.NET
Go
Java
Python
TypeScript