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 DescribeTagsResultclone()booleanequals(Object obj)StringgetMarker()If the request included aMarker, the response returns that value in this field.StringgetNextMarker()If a value is present, there are more tags to return.List<Tag>getTags()Returns tags associated with the file system as an array ofTagobjects.inthashCode()voidsetMarker(String marker)If the request included aMarker, the response returns that value in this field.voidsetNextMarker(String nextMarker)If a value is present, there are more tags to return.voidsetTags(Collection<Tag> tags)Returns tags associated with the file system as an array ofTagobjects.StringtoString()Returns a string representation of this object; useful for testing and debugging.DescribeTagsResultwithMarker(String marker)If the request included aMarker, the response returns that value in this field.DescribeTagsResultwithNextMarker(String nextMarker)If a value is present, there are more tags to return.DescribeTagsResultwithTags(Tag... tags)Returns tags associated with the file system as an array ofTagobjects.DescribeTagsResultwithTags(Collection<Tag> tags)Returns tags associated with the file system as an array ofTagobjects.
-
-
-
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
Tagobjects.- Returns:
- Returns tags associated with the file system as an array of
Tagobjects.
-
setTags
public void setTags(Collection<Tag> tags)
Returns tags associated with the file system as an array of
Tagobjects.- Parameters:
tags- Returns tags associated with the file system as an array ofTagobjects.
-
withTags
public DescribeTagsResult withTags(Tag... tags)
Returns tags associated with the file system as an array of
Tagobjects.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 ofTagobjects.- 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
Tagobjects.- Parameters:
tags- Returns tags associated with the file system as an array ofTagobjects.- 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
NextMarkeras the value of theMarkerparameter 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 ofNextMarkeras the value of theMarkerparameter 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
NextMarkeras the value of theMarkerparameter 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
NextMarkeras the value of theMarkerparameter 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
NextMarkeras the value of theMarkerparameter 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 ofNextMarkeras the value of theMarkerparameter 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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public DescribeTagsResult clone()
-
-