Class ClusterParameterGroupStatus
- java.lang.Object
-
- com.amazonaws.services.redshift.model.ClusterParameterGroupStatus
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class ClusterParameterGroupStatus extends Object implements Serializable, Cloneable
Describes the status of a parameter group.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ClusterParameterGroupStatus()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ClusterParameterGroupStatus
clone()
boolean
equals(Object obj)
List<ClusterParameterStatus>
getClusterParameterStatusList()
The list of parameter statuses.String
getParameterApplyStatus()
The status of parameter updates.String
getParameterGroupName()
The name of the cluster parameter group.int
hashCode()
void
setClusterParameterStatusList(Collection<ClusterParameterStatus> clusterParameterStatusList)
The list of parameter statuses.void
setParameterApplyStatus(String parameterApplyStatus)
The status of parameter updates.void
setParameterGroupName(String parameterGroupName)
The name of the cluster parameter group.String
toString()
Returns a string representation of this object; useful for testing and debugging.ClusterParameterGroupStatus
withClusterParameterStatusList(ClusterParameterStatus... clusterParameterStatusList)
The list of parameter statuses.ClusterParameterGroupStatus
withClusterParameterStatusList(Collection<ClusterParameterStatus> clusterParameterStatusList)
The list of parameter statuses.ClusterParameterGroupStatus
withParameterApplyStatus(String parameterApplyStatus)
The status of parameter updates.ClusterParameterGroupStatus
withParameterGroupName(String parameterGroupName)
The name of the cluster parameter group.
-
-
-
Method Detail
-
setParameterGroupName
public void setParameterGroupName(String parameterGroupName)
The name of the cluster parameter group.
- Parameters:
parameterGroupName
- The name of the cluster parameter group.
-
getParameterGroupName
public String getParameterGroupName()
The name of the cluster parameter group.
- Returns:
- The name of the cluster parameter group.
-
withParameterGroupName
public ClusterParameterGroupStatus withParameterGroupName(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.
-
setParameterApplyStatus
public void setParameterApplyStatus(String parameterApplyStatus)
The status of parameter updates.
- Parameters:
parameterApplyStatus
- The status of parameter updates.
-
getParameterApplyStatus
public String getParameterApplyStatus()
The status of parameter updates.
- Returns:
- The status of parameter updates.
-
withParameterApplyStatus
public ClusterParameterGroupStatus withParameterApplyStatus(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.
-
getClusterParameterStatusList
public List<ClusterParameterStatus> getClusterParameterStatusList()
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:
- 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.
-
setClusterParameterStatusList
public void setClusterParameterStatusList(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.
-
withClusterParameterStatusList
public ClusterParameterGroupStatus withClusterParameterStatusList(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.
NOTE: This method appends the values to the existing list (if any). Use
setClusterParameterStatusList(java.util.Collection)
orwithClusterParameterStatusList(java.util.Collection)
if you want to override the existing values.- 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.
-
withClusterParameterStatusList
public ClusterParameterGroupStatus withClusterParameterStatusList(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.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public ClusterParameterGroupStatus clone()
-
-