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 DescribeFileSystemsResult
clone()
boolean
equals(Object obj)
List<FileSystemDescription>
getFileSystems()
An array of file system descriptions.String
getMarker()
A string, present if provided by caller in the request.String
getNextMarker()
A string, present if there are more file systems than returned in the response.int
hashCode()
void
setFileSystems(Collection<FileSystemDescription> fileSystems)
An array of file system descriptions.void
setMarker(String marker)
A string, present if provided by caller in the request.void
setNextMarker(String nextMarker)
A string, present if there are more file systems than returned in the response.String
toString()
Returns a string representation of this object; useful for testing and debugging.DescribeFileSystemsResult
withFileSystems(FileSystemDescription... fileSystems)
An array of file system descriptions.DescribeFileSystemsResult
withFileSystems(Collection<FileSystemDescription> fileSystems)
An array of file system descriptions.DescribeFileSystemsResult
withMarker(String marker)
A string, present if provided by caller in the request.DescribeFileSystemsResult
withNextMarker(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
NextMarker
in 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 theNextMarker
in 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
NextMarker
in 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
NextMarker
in 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
NextMarker
in 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 theNextMarker
in 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:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public DescribeFileSystemsResult clone()
-
-