Class DescribeFileSystemsResult
- java.lang.Object
-
- com.amazonaws.services.elasticfilesystem.model.DescribeFileSystemsResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class DescribeFileSystemsResult extends Object implements Serializable, Cloneable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeFileSystemsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeFileSystemsResultclone()booleanequals(Object obj)List<FileSystemDescription>getFileSystems()An array of file system descriptions.StringgetMarker()A string, present if provided by caller in the request.StringgetNextMarker()A string, present if there are more file systems than returned in the response.inthashCode()voidsetFileSystems(Collection<FileSystemDescription> fileSystems)An array of file system descriptions.voidsetMarker(String marker)A string, present if provided by caller in the request.voidsetNextMarker(String nextMarker)A string, present if there are more file systems than returned in the response.StringtoString()Returns a string representation of this object; useful for testing and debugging.DescribeFileSystemsResultwithFileSystems(FileSystemDescription... fileSystems)An array of file system descriptions.DescribeFileSystemsResultwithFileSystems(Collection<FileSystemDescription> fileSystems)An array of file system descriptions.DescribeFileSystemsResultwithMarker(String marker)A string, present if provided by caller in the request.DescribeFileSystemsResultwithNextMarker(String nextMarker)A string, present if there are more file systems than returned in the response.
-
-
-
Method Detail
-
setMarker
public void setMarker(String marker)
A string, present if provided by caller in the request.
- Parameters:
marker- A string, present if provided by caller in the request.
-
getMarker
public String getMarker()
A string, present if provided by caller in the request.
- Returns:
- A string, present if provided by caller in the request.
-
withMarker
public DescribeFileSystemsResult withMarker(String marker)
A string, present if provided by caller in the request.
- Parameters:
marker- A string, present if provided by caller in the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
getFileSystems
public List<FileSystemDescription> getFileSystems()
An array of file system descriptions.
- Returns:
- An array of file system descriptions.
-
setFileSystems
public void setFileSystems(Collection<FileSystemDescription> fileSystems)
An array of file system descriptions.
- Parameters:
fileSystems- An array of file system descriptions.
-
withFileSystems
public DescribeFileSystemsResult withFileSystems(FileSystemDescription... fileSystems)
An array of file system descriptions.
NOTE: This method appends the values to the existing list (if any). Use
setFileSystems(java.util.Collection)orwithFileSystems(java.util.Collection)if you want to override the existing values.- Parameters:
fileSystems- An array of file system descriptions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withFileSystems
public DescribeFileSystemsResult withFileSystems(Collection<FileSystemDescription> fileSystems)
An array of file system descriptions.
- Parameters:
fileSystems- An array of file system descriptions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setNextMarker
public void setNextMarker(String nextMarker)
A string, present if there are more file systems than returned in the response. You can use the
NextMarkerin the subsequent request to fetch the descriptions.- Parameters:
nextMarker- A string, present if there are more file systems than returned in the response. You can use theNextMarkerin the subsequent request to fetch the descriptions.
-
getNextMarker
public String getNextMarker()
A string, present if there are more file systems than returned in the response. You can use the
NextMarkerin the subsequent request to fetch the descriptions.- Returns:
- A string, present if there are more file systems than returned in
the response. You can use the
NextMarkerin the subsequent request to fetch the descriptions.
-
withNextMarker
public DescribeFileSystemsResult withNextMarker(String nextMarker)
A string, present if there are more file systems than returned in the response. You can use the
NextMarkerin the subsequent request to fetch the descriptions.- Parameters:
nextMarker- A string, present if there are more file systems than returned in the response. You can use theNextMarkerin the subsequent request to fetch the descriptions.- 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 DescribeFileSystemsResult clone()
-
-