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 DescribeDBClusterParameterGroupsResultclone()booleanequals(Object obj)List<DBClusterParameterGroup>getDBClusterParameterGroups()A list of DB cluster parameter groups.StringgetMarker()An optional pagination token provided by a previousDescribeDBClusterParameterGroupsrequest.inthashCode()voidsetDBClusterParameterGroups(Collection<DBClusterParameterGroup> dBClusterParameterGroups)A list of DB cluster parameter groups.voidsetMarker(String marker)An optional pagination token provided by a previousDescribeDBClusterParameterGroupsrequest.StringtoString()Returns a string representation of this object; useful for testing and debugging.DescribeDBClusterParameterGroupsResultwithDBClusterParameterGroups(DBClusterParameterGroup... dBClusterParameterGroups)A list of DB cluster parameter groups.DescribeDBClusterParameterGroupsResultwithDBClusterParameterGroups(Collection<DBClusterParameterGroup> dBClusterParameterGroups)A list of DB cluster parameter groups.DescribeDBClusterParameterGroupsResultwithMarker(String marker)An optional pagination token provided by a previousDescribeDBClusterParameterGroupsrequest.
-
-
-
Method Detail
-
setMarker
public void setMarker(String marker)
An optional pagination token provided by a previous
DescribeDBClusterParameterGroupsrequest. 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 previousDescribeDBClusterParameterGroupsrequest. 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
DescribeDBClusterParameterGroupsrequest. 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
DescribeDBClusterParameterGroupsrequest. 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
DescribeDBClusterParameterGroupsrequest. 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 previousDescribeDBClusterParameterGroupsrequest. 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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public DescribeDBClusterParameterGroupsResult clone()
-
-