Interface CfnStandardProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStandardProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:09.559Z")
@Stability(Stable)
public interface CfnStandardProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnStandard
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.securityhub.*; CfnStandardProps cfnStandardProps = CfnStandardProps.builder() .standardsArn("standardsArn") // the properties below are optional .disabledStandardsControls(List.of(StandardsControlProperty.builder() .standardsControlArn("standardsControlArn") // the properties below are optional .reason("reason") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnStandardProps
static final class
An implementation forCfnStandardProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnStandardProps.Builder
builder()
default Object
Specifies which controls are to be disabled in a standard.The ARN of the standard that you want to enable.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getStandardsArn
The ARN of the standard that you want to enable.To view a list of available Security Hub standards and their ARNs, use the
DescribeStandards
API operation.- See Also:
-
getDisabledStandardsControls
Specifies which controls are to be disabled in a standard.Maximum :
100
- See Also:
-
builder
- Returns:
- a
CfnStandardProps.Builder
ofCfnStandardProps
-