Class OptionSetting
- java.lang.Object
-
- software.amazon.awssdk.services.rds.model.OptionSetting
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<OptionSetting.Builder,OptionSetting>
@Generated("software.amazon.awssdk:codegen") public final class OptionSetting extends Object implements SdkPojo, Serializable, ToCopyableBuilder<OptionSetting.Builder,OptionSetting>
Option settings are the actual settings being applied or configured for that option. It is used when you modify an option group or describe option groups. For example, the NATIVE_NETWORK_ENCRYPTION option has a setting called SQLNET.ENCRYPTION_SERVER that can have several different values.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceOptionSetting.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringallowedValues()The allowed values of the option setting.StringapplyType()The DB engine specific parameter type.static OptionSetting.Builderbuilder()StringdataType()The data type of the option setting.StringdefaultValue()The default value of the option setting.Stringdescription()The description of the option setting.booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()BooleanisCollection()Indicates whether the option setting is part of a collection.BooleanisModifiable()Indicates whether the option setting can be modified from the default.Stringname()The name of the option that has settings that you can set.Map<String,SdkField<?>>sdkFieldNameToField()List<SdkField<?>>sdkFields()static Class<? extends OptionSetting.Builder>serializableBuilderClass()OptionSetting.BuildertoBuilder()StringtoString()Returns a string representation of this object.Stringvalue()The current value of the option setting.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
name
public final String name()
The name of the option that has settings that you can set.
- Returns:
- The name of the option that has settings that you can set.
-
value
public final String value()
The current value of the option setting.
- Returns:
- The current value of the option setting.
-
defaultValue
public final String defaultValue()
The default value of the option setting.
- Returns:
- The default value of the option setting.
-
description
public final String description()
The description of the option setting.
- Returns:
- The description of the option setting.
-
applyType
public final String applyType()
The DB engine specific parameter type.
- Returns:
- The DB engine specific parameter type.
-
dataType
public final String dataType()
The data type of the option setting.
- Returns:
- The data type of the option setting.
-
allowedValues
public final String allowedValues()
The allowed values of the option setting.
- Returns:
- The allowed values of the option setting.
-
isModifiable
public final Boolean isModifiable()
Indicates whether the option setting can be modified from the default.
- Returns:
- Indicates whether the option setting can be modified from the default.
-
isCollection
public final Boolean isCollection()
Indicates whether the option setting is part of a collection.
- Returns:
- Indicates whether the option setting is part of a collection.
-
toBuilder
public OptionSetting.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<OptionSetting.Builder,OptionSetting>
-
builder
public static OptionSetting.Builder builder()
-
serializableBuilderClass
public static Class<? extends OptionSetting.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
sdkFieldNameToField
public final Map<String,SdkField<?>> sdkFieldNameToField()
- Specified by:
sdkFieldNameToFieldin interfaceSdkPojo
-
-