Class RemoveTagsFromResourceResult
- java.lang.Object
-
- com.amazonaws.services.elasticache.model.RemoveTagsFromResourceResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class RemoveTagsFromResourceResult extends Object implements Serializable, Cloneable
Represents the output from the AddTagsToResource, ListTagsOnResource, and RemoveTagsFromResource actions.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RemoveTagsFromResourceResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RemoveTagsFromResourceResultclone()booleanequals(Object obj)List<Tag>getTagList()A list of cost allocation tags as key-value pairs.inthashCode()voidsetTagList(Collection<Tag> tagList)A list of cost allocation tags as key-value pairs.StringtoString()Returns a string representation of this object; useful for testing and debugging.RemoveTagsFromResourceResultwithTagList(Tag... tagList)A list of cost allocation tags as key-value pairs.RemoveTagsFromResourceResultwithTagList(Collection<Tag> tagList)A list of cost allocation tags as key-value pairs.
-
-
-
Method Detail
-
getTagList
public List<Tag> getTagList()
A list of cost allocation tags as key-value pairs.
- Returns:
- A list of cost allocation tags as key-value pairs.
-
setTagList
public void setTagList(Collection<Tag> tagList)
A list of cost allocation tags as key-value pairs.
- Parameters:
tagList- A list of cost allocation tags as key-value pairs.
-
withTagList
public RemoveTagsFromResourceResult withTagList(Tag... tagList)
A list of cost allocation tags as key-value pairs.
NOTE: This method appends the values to the existing list (if any). Use
setTagList(java.util.Collection)orwithTagList(java.util.Collection)if you want to override the existing values.- Parameters:
tagList- A list of cost allocation tags as key-value pairs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withTagList
public RemoveTagsFromResourceResult withTagList(Collection<Tag> tagList)
A list of cost allocation tags as key-value pairs.
- Parameters:
tagList- A list of cost allocation tags as key-value pairs.- 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 RemoveTagsFromResourceResult clone()
-
-