Interface CfnConfigurationPolicy.ParameterConfigurationProperty

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

@Stability(Stable) public static interface CfnConfigurationPolicy.ParameterConfigurationProperty extends software.amazon.jsii.JsiiSerializable
An object that provides the current value of a security control parameter and identifies whether it has been customized.

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.*;
 ParameterConfigurationProperty parameterConfigurationProperty = 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();
 

See Also: