interface ControlSetProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AuditManager.CfnAssessmentFramework.ControlSetProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsauditmanager#CfnAssessmentFramework_ControlSetProperty |
Java | software.amazon.awscdk.services.auditmanager.CfnAssessmentFramework.ControlSetProperty |
Python | aws_cdk.aws_auditmanager.CfnAssessmentFramework.ControlSetProperty |
TypeScript | aws-cdk-lib » aws_auditmanager » CfnAssessmentFramework » ControlSetProperty |
A control set entity that represents a collection of controls in Audit Manager.
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 controlSetProperty: auditmanager.CfnAssessmentFramework.ControlSetProperty = {
controls: [{
id: 'id',
}],
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| controls | IResolvable | (IResolvable | Control)[] | The list of controls within the control set. |
| name | string | The name of the control set. |
controls
Type:
IResolvable | (IResolvable | Control)[]
The list of controls within the control set.
name
Type:
string
The name of the control set.

.NET
Go
Java
Python
TypeScript