public class ClusterParameterGroup
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Describes a parameter group.
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
description
The description of the parameter group.
|
private java.lang.String |
parameterGroupFamily
The name of the cluster parameter group family that this cluster
parameter group is compatible with.
|
private java.lang.String |
parameterGroupName
The name of the cluster parameter group.
|
private SdkInternalList<Tag> |
tags
The list of tags for the cluster parameter group.
|
Constructor and Description |
---|
ClusterParameterGroup() |
Modifier and Type | Method and Description |
---|---|
ClusterParameterGroup |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getDescription()
The description of the parameter group.
|
java.lang.String |
getParameterGroupFamily()
The name of the cluster parameter group family that this cluster
parameter group is compatible with.
|
java.lang.String |
getParameterGroupName()
The name of the cluster parameter group.
|
java.util.List<Tag> |
getTags()
The list of tags for the cluster parameter group.
|
int |
hashCode() |
void |
setDescription(java.lang.String description)
The description of the parameter group.
|
void |
setParameterGroupFamily(java.lang.String parameterGroupFamily)
The name of the cluster parameter group family that this cluster
parameter group is compatible with.
|
void |
setParameterGroupName(java.lang.String parameterGroupName)
The name of the cluster parameter group.
|
void |
setTags(java.util.Collection<Tag> tags)
The list of tags for the cluster parameter group.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ClusterParameterGroup |
withDescription(java.lang.String description)
The description of the parameter group.
|
ClusterParameterGroup |
withParameterGroupFamily(java.lang.String parameterGroupFamily)
The name of the cluster parameter group family that this cluster
parameter group is compatible with.
|
ClusterParameterGroup |
withParameterGroupName(java.lang.String parameterGroupName)
The name of the cluster parameter group.
|
ClusterParameterGroup |
withTags(java.util.Collection<Tag> tags)
The list of tags for the cluster parameter group.
|
ClusterParameterGroup |
withTags(Tag... tags)
The list of tags for the cluster parameter group.
|
private java.lang.String parameterGroupName
The name of the cluster parameter group.
private java.lang.String parameterGroupFamily
The name of the cluster parameter group family that this cluster parameter group is compatible with.
private java.lang.String description
The description of the parameter group.
private SdkInternalList<Tag> tags
The list of tags for the cluster parameter group.
public void setParameterGroupName(java.lang.String parameterGroupName)
The name of the cluster parameter group.
parameterGroupName
- The name of the cluster parameter group.public java.lang.String getParameterGroupName()
The name of the cluster parameter group.
public ClusterParameterGroup withParameterGroupName(java.lang.String parameterGroupName)
The name of the cluster parameter group.
parameterGroupName
- The name of the cluster parameter group.public void setParameterGroupFamily(java.lang.String parameterGroupFamily)
The name of the cluster parameter group family that this cluster parameter group is compatible with.
parameterGroupFamily
- The name of the cluster parameter group family that this cluster
parameter group is compatible with.public java.lang.String getParameterGroupFamily()
The name of the cluster parameter group family that this cluster parameter group is compatible with.
public ClusterParameterGroup withParameterGroupFamily(java.lang.String parameterGroupFamily)
The name of the cluster parameter group family that this cluster parameter group is compatible with.
parameterGroupFamily
- The name of the cluster parameter group family that this cluster
parameter group is compatible with.public void setDescription(java.lang.String description)
The description of the parameter group.
description
- The description of the parameter group.public java.lang.String getDescription()
The description of the parameter group.
public ClusterParameterGroup withDescription(java.lang.String description)
The description of the parameter group.
description
- The description of the parameter group.public java.util.List<Tag> getTags()
The list of tags for the cluster parameter group.
public void setTags(java.util.Collection<Tag> tags)
The list of tags for the cluster parameter group.
tags
- The list of tags for the cluster parameter group.public ClusterParameterGroup withTags(Tag... tags)
The list of tags for the cluster parameter group.
NOTE: This method appends the values to the existing list (if
any). Use setTags(java.util.Collection)
or
withTags(java.util.Collection)
if you want to override the
existing values.
tags
- The list of tags for the cluster parameter group.public ClusterParameterGroup withTags(java.util.Collection<Tag> tags)
The list of tags for the cluster parameter group.
tags
- The list of tags for the cluster parameter group.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public ClusterParameterGroup clone()
clone
in class java.lang.Object