@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.431Z") @Stability(value=Stable) public interface CfnOptionGroupProps extends software.amazon.jsii.JsiiSerializable
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()))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnOptionGroupProps.Builder
A builder for
CfnOptionGroupProps |
static class |
CfnOptionGroupProps.Jsii$Proxy
An implementation for
CfnOptionGroupProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnOptionGroupProps.Builder |
builder() |
String |
getEngineName()
Specifies the name of the engine that this option group should be associated with.
|
String |
getMajorEngineVersion()
Specifies the major version of the engine that this option group should be associated with.
|
default Object |
getOptionConfigurations()
A list of options and the settings for each option.
|
String |
getOptionGroupDescription()
The description of the option group.
|
default List<CfnTag> |
getTags()
Tags to assign to the option group.
|
@Stability(value=Stable) @NotNull String getEngineName()
Valid Values:
mariadbmysqloracle-eeoracle-se2oracle-se1oracle-sepostgressqlserver-eesqlserver-sesqlserver-exsqlserver-web@Stability(value=Stable) @NotNull String getMajorEngineVersion()
@Stability(value=Stable) @NotNull String getOptionGroupDescription()
@Stability(value=Stable) @Nullable default Object getOptionConfigurations()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnOptionGroupProps.Builder builder()
CfnOptionGroupProps.Builder of CfnOptionGroupPropsCopyright © 2022. All rights reserved.