Interface CfnStandard.StandardsControlProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnStandard.StandardsControlProperty.Jsii$Proxy
Enclosing class:
CfnStandard

@Stability(Stable) public static interface CfnStandard.StandardsControlProperty extends software.amazon.jsii.JsiiSerializable
Provides details about an individual security control.

For a list of Security Hub controls, see Security Hub controls reference in the AWS Security Hub User Guide .

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.*;
 StandardsControlProperty standardsControlProperty = StandardsControlProperty.builder()
         .standardsControlArn("standardsControlArn")
         // the properties below are optional
         .reason("reason")
         .build();
 

See Also: