Interface CfnConfigurationPolicy.SecurityControlCustomParameterProperty

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

@Stability(Stable) public static interface CfnConfigurationPolicy.SecurityControlCustomParameterProperty extends software.amazon.jsii.JsiiSerializable
A list of security controls and control parameter values that are included in a configuration policy.

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.*;
 SecurityControlCustomParameterProperty securityControlCustomParameterProperty = SecurityControlCustomParameterProperty.builder()
         .parameters(Map.of(
                 "parametersKey", ParameterConfigurationProperty.builder()
                         .valueType("valueType")
                         // the properties below are optional
                         .value(ParameterValueProperty.builder()
                                 .boolean(false)
                                 .double(123)
                                 .enum("enum")
                                 .enumList(List.of("enumList"))
                                 .integer(123)
                                 .integerList(List.of(123))
                                 .string("string")
                                 .stringList(List.of("stringList"))
                                 .build())
                         .build()))
         .securityControlId("securityControlId")
         .build();
 

See Also: