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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnOptionGroup.OptionSettingProperty
static final class
An implementation forCfnOptionGroup.OptionSettingProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the option that has settings that you can set. -
getValue
The current value of the option setting. -
builder
-