Class DescribeTagsResult
- java.lang.Object
-
- com.amazonaws.services.elasticfilesystem.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
getMarker()
If the request included aMarker
, the response returns that value in this field.String
getNextMarker()
If a value is present, there are more tags to return.List<Tag>
getTags()
Returns tags associated with the file system as an array ofTag
objects.int
hashCode()
void
setMarker(String marker)
If the request included aMarker
, the response returns that value in this field.void
setNextMarker(String nextMarker)
If a value is present, there are more tags to return.void
setTags(Collection<Tag> tags)
Returns tags associated with the file system as an array ofTag
objects.String
toString()
Returns a string representation of this object; useful for testing and debugging.DescribeTagsResult
withMarker(String marker)
If the request included aMarker
, the response returns that value in this field.DescribeTagsResult
withNextMarker(String nextMarker)
If a value is present, there are more tags to return.DescribeTagsResult
withTags(Tag... tags)
Returns tags associated with the file system as an array ofTag
objects.DescribeTagsResult
withTags(Collection<Tag> tags)
Returns tags associated with the file system as an array ofTag
objects.
-
-
-
Method Detail
-
setMarker
public void setMarker(String marker)
If the request included a
Marker
, the response returns that value in this field.- Parameters:
marker
- If the request included aMarker
, the response returns that value in this field.
-
getMarker
public String getMarker()
If the request included a
Marker
, the response returns that value in this field.- Returns:
- If the request included a
Marker
, the response returns that value in this field.
-
withMarker
public DescribeTagsResult withMarker(String marker)
If the request included a
Marker
, the response returns that value in this field.- Parameters:
marker
- If the request included aMarker
, the response returns that value in this field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
getTags
public List<Tag> getTags()
Returns tags associated with the file system as an array of
Tag
objects.- Returns:
- Returns tags associated with the file system as an array of
Tag
objects.
-
setTags
public void setTags(Collection<Tag> tags)
Returns tags associated with the file system as an array of
Tag
objects.- Parameters:
tags
- Returns tags associated with the file system as an array ofTag
objects.
-
withTags
public DescribeTagsResult withTags(Tag... tags)
Returns tags associated with the file system as an array of
Tag
objects.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
- Returns tags associated with the file system as an array ofTag
objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withTags
public DescribeTagsResult withTags(Collection<Tag> tags)
Returns tags associated with the file system as an array of
Tag
objects.- Parameters:
tags
- Returns tags associated with the file system as an array ofTag
objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setNextMarker
public void setNextMarker(String nextMarker)
If a value is present, there are more tags to return. In a subsequent request, you can provide the value of
NextMarker
as the value of theMarker
parameter in your next request to retrieve the next set of tags.- Parameters:
nextMarker
- If a value is present, there are more tags to return. In a subsequent request, you can provide the value ofNextMarker
as the value of theMarker
parameter in your next request to retrieve the next set of tags.
-
getNextMarker
public String getNextMarker()
If a value is present, there are more tags to return. In a subsequent request, you can provide the value of
NextMarker
as the value of theMarker
parameter in your next request to retrieve the next set of tags.- Returns:
- If a value is present, there are more tags to return. In a
subsequent request, you can provide the value of
NextMarker
as the value of theMarker
parameter in your next request to retrieve the next set of tags.
-
withNextMarker
public DescribeTagsResult withNextMarker(String nextMarker)
If a value is present, there are more tags to return. In a subsequent request, you can provide the value of
NextMarker
as the value of theMarker
parameter in your next request to retrieve the next set of tags.- Parameters:
nextMarker
- If a value is present, there are more tags to return. In a subsequent request, you can provide the value ofNextMarker
as the value of theMarker
parameter in your next request to retrieve the next set of tags.- 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()
-
-