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:
 
- 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEnabledControl.EnabledControlParameterPropertystatic final classAn implementation forCfnEnabledControl.EnabledControlParameterProperty - 
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getKey
The key of a key/value pair.It is of type
string.- See Also:
 
 - 
getValue
The value of a key/value pair.It can be of type
array,string,number,object, orboolean. [Note: The Type field that follows may show a single type such as Number, which is only one possible type.]- See Also:
 
 - 
builder
 
 -