CopyableBuilder<OptionGroupOption.Builder,OptionGroupOption>
, SdkBuilder<OptionGroupOption.Builder,OptionGroupOption>
public static interface OptionGroupOption.Builder extends CopyableBuilder<OptionGroupOption.Builder,OptionGroupOption>
Modifier and Type | Method | Description |
---|---|---|
OptionGroupOption.Builder |
defaultPort(Integer defaultPort) |
If the option requires a port, specifies the default port for the option.
|
OptionGroupOption.Builder |
description(String description) |
The description of the option.
|
OptionGroupOption.Builder |
engineName(String engineName) |
The name of the engine that this option can be applied to.
|
OptionGroupOption.Builder |
majorEngineVersion(String majorEngineVersion) |
Indicates the major engine version that the option is available for.
|
OptionGroupOption.Builder |
minimumRequiredMinorEngineVersion(String minimumRequiredMinorEngineVersion) |
The minimum required engine version for the option to be applied.
|
OptionGroupOption.Builder |
name(String name) |
The name of the option.
|
OptionGroupOption.Builder |
optionGroupOptionSettings(Collection<OptionGroupOptionSetting> optionGroupOptionSettings) |
The option settings that are available (and the default value) for each option in an option group.
|
OptionGroupOption.Builder |
optionGroupOptionSettings(OptionGroupOptionSetting... optionGroupOptionSettings) |
The option settings that are available (and the default value) for each option in an option group.
|
OptionGroupOption.Builder |
optionGroupOptionVersions(Collection<OptionVersion> optionGroupOptionVersions) |
The versions that are available for the option.
|
OptionGroupOption.Builder |
optionGroupOptionVersions(OptionVersion... optionGroupOptionVersions) |
The versions that are available for the option.
|
OptionGroupOption.Builder |
optionsConflictsWith(String... optionsConflictsWith) |
The options that conflict with this option.
|
OptionGroupOption.Builder |
optionsConflictsWith(Collection<String> optionsConflictsWith) |
The options that conflict with this option.
|
OptionGroupOption.Builder |
optionsDependedOn(String... optionsDependedOn) |
The options that are prerequisites for this option.
|
OptionGroupOption.Builder |
optionsDependedOn(Collection<String> optionsDependedOn) |
The options that are prerequisites for this option.
|
OptionGroupOption.Builder |
permanent(Boolean permanent) |
Permanent options can never be removed from an option group.
|
OptionGroupOption.Builder |
persistent(Boolean persistent) |
Persistent options can't be removed from an option group while DB instances are associated with the option
group.
|
OptionGroupOption.Builder |
portRequired(Boolean portRequired) |
Specifies whether the option requires a port.
|
copy
apply, build
OptionGroupOption.Builder name(String name)
The name of the option.
name
- The name of the option.OptionGroupOption.Builder description(String description)
The description of the option.
description
- The description of the option.OptionGroupOption.Builder engineName(String engineName)
The name of the engine that this option can be applied to.
engineName
- The name of the engine that this option can be applied to.OptionGroupOption.Builder majorEngineVersion(String majorEngineVersion)
Indicates the major engine version that the option is available for.
majorEngineVersion
- Indicates the major engine version that the option is available for.OptionGroupOption.Builder minimumRequiredMinorEngineVersion(String minimumRequiredMinorEngineVersion)
The minimum required engine version for the option to be applied.
minimumRequiredMinorEngineVersion
- The minimum required engine version for the option to be applied.OptionGroupOption.Builder portRequired(Boolean portRequired)
Specifies whether the option requires a port.
portRequired
- Specifies whether the option requires a port.OptionGroupOption.Builder defaultPort(Integer defaultPort)
If the option requires a port, specifies the default port for the option.
defaultPort
- If the option requires a port, specifies the default port for the option.OptionGroupOption.Builder optionsDependedOn(Collection<String> optionsDependedOn)
The options that are prerequisites for this option.
optionsDependedOn
- The options that are prerequisites for this option.OptionGroupOption.Builder optionsDependedOn(String... optionsDependedOn)
The options that are prerequisites for this option.
NOTE: This method appends the values to the existing list (if any). Use
#setOptionsDependedOn(java.util.Collection)
or #withOptionsDependedOn(java.util.Collection)
if you want to override the existing values.
optionsDependedOn
- The options that are prerequisites for this option.OptionGroupOption.Builder optionsConflictsWith(Collection<String> optionsConflictsWith)
The options that conflict with this option.
optionsConflictsWith
- The options that conflict with this option.OptionGroupOption.Builder optionsConflictsWith(String... optionsConflictsWith)
The options that conflict with this option.
NOTE: This method appends the values to the existing list (if any). Use
#setOptionsConflictsWith(java.util.Collection)
or
#withOptionsConflictsWith(java.util.Collection)
if you want to override the existing values.
optionsConflictsWith
- The options that conflict with this option.OptionGroupOption.Builder persistent(Boolean persistent)
Persistent options can't be removed from an option group while DB instances are associated with the option group. If you disassociate all DB instances from the option group, your can remove the persistent option from the option group.
persistent
- Persistent options can't be removed from an option group while DB instances are associated with the
option group. If you disassociate all DB instances from the option group, your can remove the
persistent option from the option group.OptionGroupOption.Builder permanent(Boolean permanent)
Permanent options can never be removed from an option group. An option group containing a permanent option can't be removed from a DB instance.
permanent
- Permanent options can never be removed from an option group. An option group containing a permanent
option can't be removed from a DB instance.OptionGroupOption.Builder optionGroupOptionSettings(Collection<OptionGroupOptionSetting> optionGroupOptionSettings)
The option settings that are available (and the default value) for each option in an option group.
optionGroupOptionSettings
- The option settings that are available (and the default value) for each option in an option group.OptionGroupOption.Builder optionGroupOptionSettings(OptionGroupOptionSetting... optionGroupOptionSettings)
The option settings that are available (and the default value) for each option in an option group.
NOTE: This method appends the values to the existing list (if any). Use
#setOptionGroupOptionSettings(java.util.Collection)
or
#withOptionGroupOptionSettings(java.util.Collection)
if you want to override the existing values.
optionGroupOptionSettings
- The option settings that are available (and the default value) for each option in an option group.OptionGroupOption.Builder optionGroupOptionVersions(Collection<OptionVersion> optionGroupOptionVersions)
The versions that are available for the option.
optionGroupOptionVersions
- The versions that are available for the option.OptionGroupOption.Builder optionGroupOptionVersions(OptionVersion... optionGroupOptionVersions)
The versions that are available for the option.
NOTE: This method appends the values to the existing list (if any). Use
#setOptionGroupOptionVersions(java.util.Collection)
or
#withOptionGroupOptionVersions(java.util.Collection)
if you want to override the existing values.
optionGroupOptionVersions
- The versions that are available for the option.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.