Interface CfnConfigurationPolicy.ParameterValueProperty

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

@Stability(Stable) public static interface CfnConfigurationPolicy.ParameterValueProperty extends software.amazon.jsii.JsiiSerializable
An object that includes the data type of a security control parameter and its current value.

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.*;
 ParameterValueProperty parameterValueProperty = 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();
 

See Also: