Class DescribeCacheParametersResult
- java.lang.Object
-
- com.amazonaws.services.elasticache.model.DescribeCacheParametersResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class DescribeCacheParametersResult extends Object implements Serializable, Cloneable
Represents the output of a DescribeCacheParameters action.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeCacheParametersResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeCacheParametersResultclone()booleanequals(Object obj)List<CacheNodeTypeSpecificParameter>getCacheNodeTypeSpecificParameters()A list of parameters specific to a particular cache node type.StringgetMarker()Provides an identifier to allow retrieval of paginated results.List<Parameter>getParameters()A list of Parameter instances.inthashCode()voidsetCacheNodeTypeSpecificParameters(Collection<CacheNodeTypeSpecificParameter> cacheNodeTypeSpecificParameters)A list of parameters specific to a particular cache node type.voidsetMarker(String marker)Provides an identifier to allow retrieval of paginated results.voidsetParameters(Collection<Parameter> parameters)A list of Parameter instances.StringtoString()Returns a string representation of this object; useful for testing and debugging.DescribeCacheParametersResultwithCacheNodeTypeSpecificParameters(CacheNodeTypeSpecificParameter... cacheNodeTypeSpecificParameters)A list of parameters specific to a particular cache node type.DescribeCacheParametersResultwithCacheNodeTypeSpecificParameters(Collection<CacheNodeTypeSpecificParameter> cacheNodeTypeSpecificParameters)A list of parameters specific to a particular cache node type.DescribeCacheParametersResultwithMarker(String marker)Provides an identifier to allow retrieval of paginated results.DescribeCacheParametersResultwithParameters(Parameter... parameters)A list of Parameter instances.DescribeCacheParametersResultwithParameters(Collection<Parameter> parameters)A list of Parameter instances.
-
-
-
Method Detail
-
setMarker
public void setMarker(String marker)
Provides an identifier to allow retrieval of paginated results.
- Parameters:
marker- Provides an identifier to allow retrieval of paginated results.
-
getMarker
public String getMarker()
Provides an identifier to allow retrieval of paginated results.
- Returns:
- Provides an identifier to allow retrieval of paginated results.
-
withMarker
public DescribeCacheParametersResult withMarker(String marker)
Provides an identifier to allow retrieval of paginated results.
- Parameters:
marker- Provides an identifier to allow retrieval of paginated results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
getParameters
public List<Parameter> getParameters()
A list of Parameter instances.
- Returns:
- A list of Parameter instances.
-
setParameters
public void setParameters(Collection<Parameter> parameters)
A list of Parameter instances.
- Parameters:
parameters- A list of Parameter instances.
-
withParameters
public DescribeCacheParametersResult withParameters(Parameter... parameters)
A list of Parameter instances.
NOTE: This method appends the values to the existing list (if any). Use
setParameters(java.util.Collection)orwithParameters(java.util.Collection)if you want to override the existing values.- Parameters:
parameters- A list of Parameter instances.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withParameters
public DescribeCacheParametersResult withParameters(Collection<Parameter> parameters)
A list of Parameter instances.
- Parameters:
parameters- A list of Parameter instances.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
getCacheNodeTypeSpecificParameters
public List<CacheNodeTypeSpecificParameter> getCacheNodeTypeSpecificParameters()
A list of parameters specific to a particular cache node type. Each element in the list contains detailed information about one parameter.
- Returns:
- A list of parameters specific to a particular cache node type. Each element in the list contains detailed information about one parameter.
-
setCacheNodeTypeSpecificParameters
public void setCacheNodeTypeSpecificParameters(Collection<CacheNodeTypeSpecificParameter> cacheNodeTypeSpecificParameters)
A list of parameters specific to a particular cache node type. Each element in the list contains detailed information about one parameter.
- Parameters:
cacheNodeTypeSpecificParameters- A list of parameters specific to a particular cache node type. Each element in the list contains detailed information about one parameter.
-
withCacheNodeTypeSpecificParameters
public DescribeCacheParametersResult withCacheNodeTypeSpecificParameters(CacheNodeTypeSpecificParameter... cacheNodeTypeSpecificParameters)
A list of parameters specific to a particular cache node type. Each element in the list contains detailed information about one parameter.
NOTE: This method appends the values to the existing list (if any). Use
setCacheNodeTypeSpecificParameters(java.util.Collection)orwithCacheNodeTypeSpecificParameters(java.util.Collection)if you want to override the existing values.- Parameters:
cacheNodeTypeSpecificParameters- A list of parameters specific to a particular cache node type. Each element in the list contains detailed information about one parameter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withCacheNodeTypeSpecificParameters
public DescribeCacheParametersResult withCacheNodeTypeSpecificParameters(Collection<CacheNodeTypeSpecificParameter> cacheNodeTypeSpecificParameters)
A list of parameters specific to a particular cache node type. Each element in the list contains detailed information about one parameter.
- Parameters:
cacheNodeTypeSpecificParameters- A list of parameters specific to a particular cache node type. Each element in the list contains detailed information about one parameter.- 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 DescribeCacheParametersResult clone()
-
-