Class DescribeDBClusterParameterGroupsResult
- java.lang.Object
-
- com.amazonaws.services.rds.model.DescribeDBClusterParameterGroupsResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DescribeDBClusterParameterGroupsResult extends Object implements Serializable, Cloneable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeDBClusterParameterGroupsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeDBClusterParameterGroupsResult
clone()
boolean
equals(Object obj)
List<DBClusterParameterGroup>
getDBClusterParameterGroups()
A list of DB cluster parameter groups.String
getMarker()
An optional pagination token provided by a previousDescribeDBClusterParameterGroups
request.int
hashCode()
void
setDBClusterParameterGroups(Collection<DBClusterParameterGroup> dBClusterParameterGroups)
A list of DB cluster parameter groups.void
setMarker(String marker)
An optional pagination token provided by a previousDescribeDBClusterParameterGroups
request.String
toString()
Returns a string representation of this object; useful for testing and debugging.DescribeDBClusterParameterGroupsResult
withDBClusterParameterGroups(DBClusterParameterGroup... dBClusterParameterGroups)
A list of DB cluster parameter groups.DescribeDBClusterParameterGroupsResult
withDBClusterParameterGroups(Collection<DBClusterParameterGroup> dBClusterParameterGroups)
A list of DB cluster parameter groups.DescribeDBClusterParameterGroupsResult
withMarker(String marker)
An optional pagination token provided by a previousDescribeDBClusterParameterGroups
request.
-
-
-
Method Detail
-
setMarker
public void setMarker(String marker)
An optional pagination token provided by a previous
DescribeDBClusterParameterGroups
request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified byMaxRecords
.- Parameters:
marker
- An optional pagination token provided by a previousDescribeDBClusterParameterGroups
request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified byMaxRecords
.
-
getMarker
public String getMarker()
An optional pagination token provided by a previous
DescribeDBClusterParameterGroups
request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified byMaxRecords
.- Returns:
- An optional pagination token provided by a previous
DescribeDBClusterParameterGroups
request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified byMaxRecords
.
-
withMarker
public DescribeDBClusterParameterGroupsResult withMarker(String marker)
An optional pagination token provided by a previous
DescribeDBClusterParameterGroups
request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified byMaxRecords
.- Parameters:
marker
- An optional pagination token provided by a previousDescribeDBClusterParameterGroups
request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified byMaxRecords
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
getDBClusterParameterGroups
public List<DBClusterParameterGroup> getDBClusterParameterGroups()
A list of DB cluster parameter groups.
- Returns:
- A list of DB cluster parameter groups.
-
setDBClusterParameterGroups
public void setDBClusterParameterGroups(Collection<DBClusterParameterGroup> dBClusterParameterGroups)
A list of DB cluster parameter groups.
- Parameters:
dBClusterParameterGroups
- A list of DB cluster parameter groups.
-
withDBClusterParameterGroups
public DescribeDBClusterParameterGroupsResult withDBClusterParameterGroups(DBClusterParameterGroup... dBClusterParameterGroups)
A list of DB cluster parameter groups.
NOTE: This method appends the values to the existing list (if any). Use
setDBClusterParameterGroups(java.util.Collection)
orwithDBClusterParameterGroups(java.util.Collection)
if you want to override the existing values.- Parameters:
dBClusterParameterGroups
- A list of DB cluster parameter groups.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withDBClusterParameterGroups
public DescribeDBClusterParameterGroupsResult withDBClusterParameterGroups(Collection<DBClusterParameterGroup> dBClusterParameterGroups)
A list of DB cluster parameter groups.
- Parameters:
dBClusterParameterGroups
- A list of DB cluster parameter groups.- 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 DescribeDBClusterParameterGroupsResult clone()
-
-