interface CfnStandardProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityHub.CfnStandardProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityhub#CfnStandardProps |
Java | software.amazon.awscdk.services.securityhub.CfnStandardProps |
Python | aws_cdk.aws_securityhub.CfnStandardProps |
TypeScript | aws-cdk-lib » aws_securityhub » CfnStandardProps |
Properties for defining a CfnStandard.
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-lib';
const cfnStandardProps: securityhub.CfnStandardProps = {
standardsArn: 'standardsArn',
// the properties below are optional
disabledStandardsControls: [{
standardsControlArn: 'standardsControlArn',
// the properties below are optional
reason: 'reason',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| standards | string | The ARN of the standard that you want to enable. |
| disabled | IResolvable | (IResolvable | Standards)[] | Specifies which controls are to be disabled in a standard. |
standardsArn
Type:
string
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.
disabledStandardsControls?
Type:
IResolvable | (IResolvable | Standards)[]
(optional)
Specifies which controls are to be disabled in a standard.
Maximum : 100

.NET
Go
Java
Python
TypeScript