Interface ListFileSystemAssociationsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListFileSystemAssociationsResponse.Builder,ListFileSystemAssociationsResponse>,SdkBuilder<ListFileSystemAssociationsResponse.Builder,ListFileSystemAssociationsResponse>,SdkPojo,SdkResponse.Builder,StorageGatewayResponse.Builder
- Enclosing class:
- ListFileSystemAssociationsResponse
public static interface ListFileSystemAssociationsResponse.Builder extends StorageGatewayResponse.Builder, SdkPojo, CopyableBuilder<ListFileSystemAssociationsResponse.Builder,ListFileSystemAssociationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListFileSystemAssociationsResponse.BuilderfileSystemAssociationSummaryList(Collection<FileSystemAssociationSummary> fileSystemAssociationSummaryList)An array of information about the Amazon FSx gateway's file system associations.ListFileSystemAssociationsResponse.BuilderfileSystemAssociationSummaryList(Consumer<FileSystemAssociationSummary.Builder>... fileSystemAssociationSummaryList)An array of information about the Amazon FSx gateway's file system associations.ListFileSystemAssociationsResponse.BuilderfileSystemAssociationSummaryList(FileSystemAssociationSummary... fileSystemAssociationSummaryList)An array of information about the Amazon FSx gateway's file system associations.ListFileSystemAssociationsResponse.Buildermarker(String marker)If the request includesMarker, the response returns that value in this field.ListFileSystemAssociationsResponse.BuildernextMarker(String nextMarker)If a value is present, there are more file system associations to return.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Methods inherited from interface software.amazon.awssdk.services.storagegateway.model.StorageGatewayResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
marker
ListFileSystemAssociationsResponse.Builder marker(String marker)
If the request includes
Marker, the response returns that value in this field.- Parameters:
marker- If the request includesMarker, the response returns that value in this field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextMarker
ListFileSystemAssociationsResponse.Builder nextMarker(String nextMarker)
If a value is present, there are more file system associations to return. In a subsequent request, use
NextMarkeras the value forMarkerto retrieve the next set of file system associations.- Parameters:
nextMarker- If a value is present, there are more file system associations to return. In a subsequent request, useNextMarkeras the value forMarkerto retrieve the next set of file system associations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fileSystemAssociationSummaryList
ListFileSystemAssociationsResponse.Builder fileSystemAssociationSummaryList(Collection<FileSystemAssociationSummary> fileSystemAssociationSummaryList)
An array of information about the Amazon FSx gateway's file system associations.
- Parameters:
fileSystemAssociationSummaryList- An array of information about the Amazon FSx gateway's file system associations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fileSystemAssociationSummaryList
ListFileSystemAssociationsResponse.Builder fileSystemAssociationSummaryList(FileSystemAssociationSummary... fileSystemAssociationSummaryList)
An array of information about the Amazon FSx gateway's file system associations.
- Parameters:
fileSystemAssociationSummaryList- An array of information about the Amazon FSx gateway's file system associations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fileSystemAssociationSummaryList
ListFileSystemAssociationsResponse.Builder fileSystemAssociationSummaryList(Consumer<FileSystemAssociationSummary.Builder>... fileSystemAssociationSummaryList)
An array of information about the Amazon FSx gateway's file system associations.
This is a convenience method that creates an instance of theFileSystemAssociationSummary.Builderavoiding the need to create one manually viaFileSystemAssociationSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#fileSystemAssociationSummaryList(List.) - Parameters:
fileSystemAssociationSummaryList- a consumer that will call methods onFileSystemAssociationSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#fileSystemAssociationSummaryList(java.util.Collection)
-
-