Interface CfnEnabledControl.EnabledControlParameterProperty

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

@Stability(Stable) public static interface CfnEnabledControl.EnabledControlParameterProperty extends software.amazon.jsii.JsiiSerializable
A set of parameters that configure the behavior of the enabled control.

Expressed as a key/value pair, where Key is of type String and Value is of type Document .

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.controltower.*;
 Object value;
 EnabledControlParameterProperty enabledControlParameterProperty = EnabledControlParameterProperty.builder()
         .key("key")
         .value(value)
         .build();
 

See Also: