Interface Parameter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Parameter.Builder,Parameter>,SdkBuilder<Parameter.Builder,Parameter>,SdkPojo
- Enclosing class:
- Parameter
public static interface Parameter.Builder extends SdkPojo, CopyableBuilder<Parameter.Builder,Parameter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Parameter.BuilderallowedValues(String allowedValues)The valid range of values for the parameter.Parameter.BuilderapplyType(String applyType)Specifies how to apply the WLM configuration parameter.Parameter.BuilderapplyType(ParameterApplyType applyType)Specifies how to apply the WLM configuration parameter.Parameter.BuilderdataType(String dataType)The data type of the parameter.Parameter.Builderdescription(String description)A description of the parameter.Parameter.BuilderisModifiable(Boolean isModifiable)Iftrue, the parameter can be modified.Parameter.BuilderminimumEngineVersion(String minimumEngineVersion)The earliest engine version to which the parameter can apply.Parameter.BuilderparameterName(String parameterName)The name of the parameter.Parameter.BuilderparameterValue(String parameterValue)The value of the parameter.Parameter.Buildersource(String source)The source of the parameter value, such as "engine-default" or "user".-
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
-
parameterName
Parameter.Builder parameterName(String parameterName)
The name of the parameter.
- Parameters:
parameterName- The name of the parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameterValue
Parameter.Builder parameterValue(String parameterValue)
The value of the parameter. If
ParameterNameiswlm_json_configuration, then the maximum size ofParameterValueis 8000 characters.- Parameters:
parameterValue- The value of the parameter. IfParameterNameiswlm_json_configuration, then the maximum size ofParameterValueis 8000 characters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
Parameter.Builder description(String description)
A description of the parameter.
- Parameters:
description- A description of the parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
source
Parameter.Builder source(String source)
The source of the parameter value, such as "engine-default" or "user".
- Parameters:
source- The source of the parameter value, such as "engine-default" or "user".- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataType
Parameter.Builder dataType(String dataType)
The data type of the parameter.
- Parameters:
dataType- The data type of the parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
allowedValues
Parameter.Builder allowedValues(String allowedValues)
The valid range of values for the parameter.
- Parameters:
allowedValues- The valid range of values for the parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applyType
Parameter.Builder applyType(String applyType)
Specifies how to apply the WLM configuration parameter. Some properties can be applied dynamically, while other properties require that any associated clusters be rebooted for the configuration changes to be applied. For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.
- Parameters:
applyType- Specifies how to apply the WLM configuration parameter. Some properties can be applied dynamically, while other properties require that any associated clusters be rebooted for the configuration changes to be applied. For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ParameterApplyType,ParameterApplyType
-
applyType
Parameter.Builder applyType(ParameterApplyType applyType)
Specifies how to apply the WLM configuration parameter. Some properties can be applied dynamically, while other properties require that any associated clusters be rebooted for the configuration changes to be applied. For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.
- Parameters:
applyType- Specifies how to apply the WLM configuration parameter. Some properties can be applied dynamically, while other properties require that any associated clusters be rebooted for the configuration changes to be applied. For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ParameterApplyType,ParameterApplyType
-
isModifiable
Parameter.Builder isModifiable(Boolean isModifiable)
If
true, the parameter can be modified. Some parameters have security or operational implications that prevent them from being changed.- Parameters:
isModifiable- Iftrue, the parameter can be modified. Some parameters have security or operational implications that prevent them from being changed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
minimumEngineVersion
Parameter.Builder minimumEngineVersion(String minimumEngineVersion)
The earliest engine version to which the parameter can apply.
- Parameters:
minimumEngineVersion- The earliest engine version to which the parameter can apply.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-