interface CfnStandardMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SecurityHub.CfnStandardMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssecurityhub#CfnStandardMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.securityhub.CfnStandardMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_securityhub.CfnStandardMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_securityhub » CfnStandardMixinProps |
Properties for CfnStandardPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-standard.html
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 cfnStandardMixinProps: securityhub.CfnStandardMixinProps = {
disabledStandardsControls: [{
reason: 'reason',
standardsControlArn: 'standardsControlArn',
}],
standardsArn: 'standardsArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| disabled | IResolvable | (IResolvable | Standards)[] | Specifies which controls are to be disabled in a standard. |
| standards | string | The ARN of the standard that you want to enable. |
disabledStandardsControls?
Type:
IResolvable | (IResolvable | Standards)[]
(optional)
Specifies which controls are to be disabled in a standard.
Maximum : 100
standardsArn?
Type:
string
(optional)
The ARN of the standard that you want to enable.
To view a list of available Security Hub CSPM standards and their ARNs, use the DescribeStandards API operation.

.NET
Go
Java
Python
TypeScript