Class ListTagsResult
- java.lang.Object
-
- com.amazonaws.services.elasticsearch.model.ListTagsResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class ListTagsResult extends Object implements Serializable, Cloneable
The result of a
ListTagsoperation. Contains tags for all requested Elasticsearch domains.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ListTagsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ListTagsResultclone()booleanequals(Object obj)List<Tag>getTagList()List ofTagfor the requested Elasticsearch domain.inthashCode()voidsetTagList(Collection<Tag> tagList)List ofTagfor the requested Elasticsearch domain.StringtoString()Returns a string representation of this object; useful for testing and debugging.ListTagsResultwithTagList(Tag... tagList)List ofTagfor the requested Elasticsearch domain.ListTagsResultwithTagList(Collection<Tag> tagList)List ofTagfor the requested Elasticsearch domain.
-
-
-
Method Detail
-
getTagList
public List<Tag> getTagList()
List of
Tagfor the requested Elasticsearch domain.- Returns:
- List of
Tagfor the requested Elasticsearch domain.
-
setTagList
public void setTagList(Collection<Tag> tagList)
List of
Tagfor the requested Elasticsearch domain.- Parameters:
tagList- List ofTagfor the requested Elasticsearch domain.
-
withTagList
public ListTagsResult withTagList(Tag... tagList)
List of
Tagfor the requested Elasticsearch domain.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- List ofTagfor the requested Elasticsearch domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withTagList
public ListTagsResult withTagList(Collection<Tag> tagList)
List of
Tagfor the requested Elasticsearch domain.- Parameters:
tagList- List ofTagfor the requested Elasticsearch domain.- 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 ListTagsResult clone()
-
-