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