interface StandardsControlProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SecurityHub.Mixins.CfnStandardPropsMixin.StandardsControlProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssecurityhub/mixins#CfnStandardPropsMixin_StandardsControlProperty |
Java | software.amazon.awscdk.mixins.preview.services.securityhub.mixins.CfnStandardPropsMixin.StandardsControlProperty |
Python | aws_cdk.mixins_preview.aws_securityhub.mixins.CfnStandardPropsMixin.StandardsControlProperty |
TypeScript | @aws-cdk/mixins-preview » aws_securityhub » mixins » CfnStandardPropsMixin » StandardsControlProperty |
Provides details about an individual security control.
For a list of Security Hub CSPM controls, see Security Hub CSPM controls reference in the AWS Security Hub CSPM User Guide .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as securityhub_mixins } from '@aws-cdk/mixins-preview/aws-securityhub';
const standardsControlProperty: securityhub_mixins.CfnStandardPropsMixin.StandardsControlProperty = {
reason: 'reason',
standardsControlArn: 'standardsControlArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| reason? | string | A user-defined reason for changing a control's enablement status in a specified standard. |
| standards | string | The Amazon Resource Name (ARN) of the control. |
reason?
Type:
string
(optional)
A user-defined reason for changing a control's enablement status in a specified standard.
If you are disabling a control, then this property is required.
standardsControlArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the control.

.NET
Go
Java
Python
TypeScript