interface StandardsControlProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SecurityHub.CfnStandardPropsMixin.StandardsControlProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssecurityhub#CfnStandardPropsMixin_StandardsControlProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.securityhub.CfnStandardPropsMixin.StandardsControlProperty |
Python | aws_cdk.cfn_property_mixins.aws_securityhub.CfnStandardPropsMixin.StandardsControlProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_securityhub » 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 { aws_securityhub as securityhub } from '@aws-cdk/cfn-property-mixins';
const standardsControlProperty: securityhub.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