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();
 
  • Method Details

    • getOptionName

      @Stability(Stable) @NotNull String getOptionName()
      The configuration of options to include in a group.
    • getDbSecurityGroupMemberships

      @Stability(Stable) @Nullable default List<String> getDbSecurityGroupMemberships()
      A list of DBSecurityGroupMembership name strings used for this option.
    • getOptionSettings

      @Stability(Stable) @Nullable default Object getOptionSettings()
      The option settings to include in an option group.
    • getOptionVersion

      @Stability(Stable) @Nullable default String getOptionVersion()
      The version for the option.
    • getPort

      @Stability(Stable) @Nullable default Number getPort()
      The optional port for the option.
    • getVpcSecurityGroupMemberships

      @Stability(Stable) @Nullable default List<String> getVpcSecurityGroupMemberships()
      A list of VpcSecurityGroupMembership name strings used for this option.
    • builder

      @Stability(Stable) static CfnOptionGroup.OptionConfigurationProperty.Builder builder()
      Returns:
      a CfnOptionGroup.OptionConfigurationProperty.Builder of CfnOptionGroup.OptionConfigurationProperty