Interface ClusterParameterGroupStatus.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ClusterParameterGroupStatus.Builder,ClusterParameterGroupStatus>,SdkBuilder<ClusterParameterGroupStatus.Builder,ClusterParameterGroupStatus>,SdkPojo
- Enclosing class:
- ClusterParameterGroupStatus
public static interface ClusterParameterGroupStatus.Builder extends SdkPojo, CopyableBuilder<ClusterParameterGroupStatus.Builder,ClusterParameterGroupStatus>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClusterParameterGroupStatus.BuilderclusterParameterStatusList(Collection<ClusterParameterStatus> clusterParameterStatusList)The list of parameter statuses.ClusterParameterGroupStatus.BuilderclusterParameterStatusList(Consumer<ClusterParameterStatus.Builder>... clusterParameterStatusList)The list of parameter statuses.ClusterParameterGroupStatus.BuilderclusterParameterStatusList(ClusterParameterStatus... clusterParameterStatusList)The list of parameter statuses.ClusterParameterGroupStatus.BuilderparameterApplyStatus(String parameterApplyStatus)The status of parameter updates.ClusterParameterGroupStatus.BuilderparameterGroupName(String parameterGroupName)The name of the cluster parameter group.-
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
-
parameterGroupName
ClusterParameterGroupStatus.Builder parameterGroupName(String parameterGroupName)
The name of the cluster parameter group.
- Parameters:
parameterGroupName- The name of the cluster parameter group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameterApplyStatus
ClusterParameterGroupStatus.Builder parameterApplyStatus(String parameterApplyStatus)
The status of parameter updates.
- Parameters:
parameterApplyStatus- The status of parameter updates.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clusterParameterStatusList
ClusterParameterGroupStatus.Builder clusterParameterStatusList(Collection<ClusterParameterStatus> clusterParameterStatusList)
The list of parameter statuses.
For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.
- Parameters:
clusterParameterStatusList- The list of parameter statuses.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.
-
clusterParameterStatusList
ClusterParameterGroupStatus.Builder clusterParameterStatusList(ClusterParameterStatus... clusterParameterStatusList)
The list of parameter statuses.
For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.
- Parameters:
clusterParameterStatusList- The list of parameter statuses.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.
-
clusterParameterStatusList
ClusterParameterGroupStatus.Builder clusterParameterStatusList(Consumer<ClusterParameterStatus.Builder>... clusterParameterStatusList)
The list of parameter statuses.
For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.
This is a convenience method that creates an instance of theClusterParameterStatus.Builderavoiding the need to create one manually viaClusterParameterStatus.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#clusterParameterStatusList(List.) - Parameters:
clusterParameterStatusList- a consumer that will call methods onClusterParameterStatus.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#clusterParameterStatusList(java.util.Collection)
-
-