Interface CfnOptionGroup.OptionSettingProperty

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

@Stability(Stable) public static interface CfnOptionGroup.OptionSettingProperty extends software.amazon.jsii.JsiiSerializable
The OptionSetting property type specifies the value for an option within an OptionSetting property.

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.rds.*;
 OptionSettingProperty optionSettingProperty = OptionSettingProperty.builder()
         .name("name")
         .value("value")
         .build();