Interface DescribeFileSystemsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeFileSystemsResponse.Builder,DescribeFileSystemsResponse>,EfsResponse.Builder,SdkBuilder<DescribeFileSystemsResponse.Builder,DescribeFileSystemsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeFileSystemsResponse
public static interface DescribeFileSystemsResponse.Builder extends EfsResponse.Builder, SdkPojo, CopyableBuilder<DescribeFileSystemsResponse.Builder,DescribeFileSystemsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeFileSystemsResponse.BuilderfileSystems(Collection<FileSystemDescription> fileSystems)An array of file system descriptions.DescribeFileSystemsResponse.BuilderfileSystems(Consumer<FileSystemDescription.Builder>... fileSystems)An array of file system descriptions.DescribeFileSystemsResponse.BuilderfileSystems(FileSystemDescription... fileSystems)An array of file system descriptions.DescribeFileSystemsResponse.Buildermarker(String marker)Present if provided by caller in the request (String).DescribeFileSystemsResponse.BuildernextMarker(String nextMarker)Present if there are more file systems than returned in the response (String).-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.efs.model.EfsResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
marker
DescribeFileSystemsResponse.Builder marker(String marker)
Present if provided by caller in the request (String).
- Parameters:
marker- Present if provided by caller in the request (String).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fileSystems
DescribeFileSystemsResponse.Builder fileSystems(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.
-
fileSystems
DescribeFileSystemsResponse.Builder fileSystems(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.
-
fileSystems
DescribeFileSystemsResponse.Builder fileSystems(Consumer<FileSystemDescription.Builder>... fileSystems)
An array of file system descriptions.
This is a convenience method that creates an instance of theFileSystemDescription.Builderavoiding the need to create one manually viaFileSystemDescription.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#fileSystems(List.) - Parameters:
fileSystems- a consumer that will call methods onFileSystemDescription.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#fileSystems(java.util.Collection)
-
nextMarker
DescribeFileSystemsResponse.Builder nextMarker(String nextMarker)
Present if there are more file systems than returned in the response (String). You can use the
NextMarkerin the subsequent request to fetch the descriptions.- Parameters:
nextMarker- Present if there are more file systems than returned in the response (String). 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.
-
-