Interface CfnOptionGroup.OptionConfigurationProperty

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

@Stability(Stable) public static interface CfnOptionGroup.OptionConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The OptionConfiguration property type specifies an individual option, and its settings, within an AWS::RDS::OptionGroup resource.

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.*;
 OptionConfigurationProperty optionConfigurationProperty = OptionConfigurationProperty.builder()
         .optionName("optionName")
         // the properties below are optional
         .dbSecurityGroupMemberships(List.of("dbSecurityGroupMemberships"))
         .optionSettings(List.of(OptionSettingProperty.builder()
                 .name("name")
                 .value("value")
                 .build()))
         .optionVersion("optionVersion")
         .port(123)
         .vpcSecurityGroupMemberships(List.of("vpcSecurityGroupMemberships"))
         .build();
 

See Also: