Interface CfnEnabledControlPropsMixin.EnabledControlParameterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEnabledControlPropsMixin.EnabledControlParameterProperty.Jsii$Proxy
- Enclosing class:
CfnEnabledControlPropsMixin
@Stability(Stable)
public static interface CfnEnabledControlPropsMixin.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.cfnpropertymixins.services.controltower.*;
Object value;
EnabledControlParameterProperty enabledControlParameterProperty = EnabledControlParameterProperty.builder()
.key("key")
.value(value)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnEnabledControlPropsMixin.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
@Stability(Stable) static CfnEnabledControlPropsMixin.EnabledControlParameterProperty.Builder builder()
-