Interface CfnOptionGroupProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnOptionGroupProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:49.077Z") @Stability(Stable) public interface CfnOptionGroupProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnOptionGroup.

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.*;
 CfnOptionGroupProps cfnOptionGroupProps = CfnOptionGroupProps.builder()
         .engineName("engineName")
         .majorEngineVersion("majorEngineVersion")
         .optionGroupDescription("optionGroupDescription")
         // the properties below are optional
         .optionConfigurations(List.of(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()))
         .optionGroupName("optionGroupName")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 
  • Method Details

    • getEngineName

      @Stability(Stable) @NotNull String getEngineName()
      Specifies the name of the engine that this option group should be associated with.

      Valid Values:

      • mariadb
      • mysql
      • oracle-ee
      • oracle-ee-cdb
      • oracle-se2
      • oracle-se2-cdb
      • postgres
      • sqlserver-ee
      • sqlserver-se
      • sqlserver-ex
      • sqlserver-web
    • getMajorEngineVersion

      @Stability(Stable) @NotNull String getMajorEngineVersion()
      Specifies the major version of the engine that this option group should be associated with.
    • getOptionGroupDescription

      @Stability(Stable) @NotNull String getOptionGroupDescription()
      The description of the option group.
    • getOptionConfigurations

      @Stability(Stable) @Nullable default Object getOptionConfigurations()
      A list of options and the settings for each option.
    • getOptionGroupName

      @Stability(Stable) @Nullable default String getOptionGroupName()
      The name of the option group to be created.

      Constraints:

      • Must be 1 to 255 letters, numbers, or hyphens
      • First character must be a letter
      • Can't end with a hyphen or contain two consecutive hyphens

      Example: myoptiongroup

      If you don't specify a value for OptionGroupName property, a name is automatically created for the option group.

      This value is stored as a lowercase string.

    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      An optional array of key-value pairs to apply to this option group.
    • builder

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