Class DescribeTagsResult
- java.lang.Object
-
- com.amazonaws.services.applicationdiscovery.model.DescribeTagsResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DescribeTagsResult extends Object implements Serializable, Cloneable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeTagsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeTagsResult
clone()
boolean
equals(Object obj)
String
getNextToken()
The call returns a token.List<ConfigurationTag>
getTags()
Depending on the input, this is a list of configuration items tagged with a specific tag, or a list of tags for a specific configuration item.int
hashCode()
void
setNextToken(String nextToken)
The call returns a token.void
setTags(Collection<ConfigurationTag> tags)
Depending on the input, this is a list of configuration items tagged with a specific tag, or a list of tags for a specific configuration item.String
toString()
Returns a string representation of this object; useful for testing and debugging.DescribeTagsResult
withNextToken(String nextToken)
The call returns a token.DescribeTagsResult
withTags(ConfigurationTag... tags)
Depending on the input, this is a list of configuration items tagged with a specific tag, or a list of tags for a specific configuration item.DescribeTagsResult
withTags(Collection<ConfigurationTag> tags)
Depending on the input, this is a list of configuration items tagged with a specific tag, or a list of tags for a specific configuration item.
-
-
-
Method Detail
-
getTags
public List<ConfigurationTag> getTags()
Depending on the input, this is a list of configuration items tagged with a specific tag, or a list of tags for a specific configuration item.
- Returns:
- Depending on the input, this is a list of configuration items tagged with a specific tag, or a list of tags for a specific configuration item.
-
setTags
public void setTags(Collection<ConfigurationTag> tags)
Depending on the input, this is a list of configuration items tagged with a specific tag, or a list of tags for a specific configuration item.
- Parameters:
tags
- Depending on the input, this is a list of configuration items tagged with a specific tag, or a list of tags for a specific configuration item.
-
withTags
public DescribeTagsResult withTags(ConfigurationTag... tags)
Depending on the input, this is a list of configuration items tagged with a specific tag, or a list of tags for a specific configuration item.
NOTE: This method appends the values to the existing list (if any). Use
setTags(java.util.Collection)
orwithTags(java.util.Collection)
if you want to override the existing values.- Parameters:
tags
- Depending on the input, this is a list of configuration items tagged with a specific tag, or a list of tags for a specific configuration item.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withTags
public DescribeTagsResult withTags(Collection<ConfigurationTag> tags)
Depending on the input, this is a list of configuration items tagged with a specific tag, or a list of tags for a specific configuration item.
- Parameters:
tags
- Depending on the input, this is a list of configuration items tagged with a specific tag, or a list of tags for a specific configuration item.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setNextToken
public void setNextToken(String nextToken)
The call returns a token. Use this token to get the next set of results.
- Parameters:
nextToken
- The call returns a token. Use this token to get the next set of results.
-
getNextToken
public String getNextToken()
The call returns a token. Use this token to get the next set of results.
- Returns:
- The call returns a token. Use this token to get the next set of results.
-
withNextToken
public DescribeTagsResult withNextToken(String nextToken)
The call returns a token. Use this token to get the next set of results.
- Parameters:
nextToken
- The call returns a token. Use this token to get the next set of results.- 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 DescribeTagsResult clone()
-
-