Interface RelationalDatabaseParameter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RelationalDatabaseParameter.Builder,RelationalDatabaseParameter>,SdkBuilder<RelationalDatabaseParameter.Builder,RelationalDatabaseParameter>,SdkPojo
- Enclosing class:
- RelationalDatabaseParameter
public static interface RelationalDatabaseParameter.Builder extends SdkPojo, CopyableBuilder<RelationalDatabaseParameter.Builder,RelationalDatabaseParameter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RelationalDatabaseParameter.BuilderallowedValues(String allowedValues)Specifies the valid range of values for the parameter.RelationalDatabaseParameter.BuilderapplyMethod(String applyMethod)Indicates when parameter updates are applied.RelationalDatabaseParameter.BuilderapplyType(String applyType)Specifies the engine-specific parameter type.RelationalDatabaseParameter.BuilderdataType(String dataType)Specifies the valid data type for the parameter.RelationalDatabaseParameter.Builderdescription(String description)Provides a description of the parameter.RelationalDatabaseParameter.BuilderisModifiable(Boolean isModifiable)A Boolean value indicating whether the parameter can be modified.RelationalDatabaseParameter.BuilderparameterName(String parameterName)Specifies the name of the parameter.RelationalDatabaseParameter.BuilderparameterValue(String parameterValue)Specifies the value of the parameter.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
allowedValues
RelationalDatabaseParameter.Builder allowedValues(String allowedValues)
Specifies the valid range of values for the parameter.
- Parameters:
allowedValues- Specifies the valid range of values for the parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applyMethod
RelationalDatabaseParameter.Builder applyMethod(String applyMethod)
Indicates when parameter updates are applied.
Can be
immediateorpending-reboot.- Parameters:
applyMethod- Indicates when parameter updates are applied.Can be
immediateorpending-reboot.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applyType
RelationalDatabaseParameter.Builder applyType(String applyType)
Specifies the engine-specific parameter type.
- Parameters:
applyType- Specifies the engine-specific parameter type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataType
RelationalDatabaseParameter.Builder dataType(String dataType)
Specifies the valid data type for the parameter.
- Parameters:
dataType- Specifies the valid data type for the parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
RelationalDatabaseParameter.Builder description(String description)
Provides a description of the parameter.
- Parameters:
description- Provides a description of the parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isModifiable
RelationalDatabaseParameter.Builder isModifiable(Boolean isModifiable)
A Boolean value indicating whether the parameter can be modified.
- Parameters:
isModifiable- A Boolean value indicating whether the parameter can be modified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameterName
RelationalDatabaseParameter.Builder parameterName(String parameterName)
Specifies the name of the parameter.
- Parameters:
parameterName- Specifies the name of the parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameterValue
RelationalDatabaseParameter.Builder parameterValue(String parameterValue)
Specifies the value of the parameter.
- Parameters:
parameterValue- Specifies the value of the parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-