Interface DescribeFileSystemsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<DescribeFileSystemsRequest.Builder,DescribeFileSystemsRequest>
,EfsRequest.Builder
,SdkBuilder<DescribeFileSystemsRequest.Builder,DescribeFileSystemsRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- DescribeFileSystemsRequest
public static interface DescribeFileSystemsRequest.Builder extends EfsRequest.Builder, SdkPojo, CopyableBuilder<DescribeFileSystemsRequest.Builder,DescribeFileSystemsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeFileSystemsRequest.Builder
creationToken(String creationToken)
(Optional) Restricts the list to the file system with this creation token (String).DescribeFileSystemsRequest.Builder
fileSystemId(String fileSystemId)
(Optional) ID of the file system whose description you want to retrieve (String).DescribeFileSystemsRequest.Builder
marker(String marker)
(Optional) Opaque pagination token returned from a previousDescribeFileSystems
operation (String).DescribeFileSystemsRequest.Builder
maxItems(Integer maxItems)
(Optional) Specifies the maximum number of file systems to return in the response (integer).DescribeFileSystemsRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
DescribeFileSystemsRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.efs.model.EfsRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
maxItems
DescribeFileSystemsRequest.Builder maxItems(Integer maxItems)
(Optional) Specifies the maximum number of file systems to return in the response (integer). This number is automatically set to 100. The response is paginated at 100 per page if you have more than 100 file systems.
- Parameters:
maxItems
- (Optional) Specifies the maximum number of file systems to return in the response (integer). This number is automatically set to 100. The response is paginated at 100 per page if you have more than 100 file systems.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
marker
DescribeFileSystemsRequest.Builder marker(String marker)
(Optional) Opaque pagination token returned from a previous
DescribeFileSystems
operation (String). If present, specifies to continue the list from where the returning call had left off.- Parameters:
marker
- (Optional) Opaque pagination token returned from a previousDescribeFileSystems
operation (String). If present, specifies to continue the list from where the returning call had left off.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationToken
DescribeFileSystemsRequest.Builder creationToken(String creationToken)
(Optional) Restricts the list to the file system with this creation token (String). You specify a creation token when you create an Amazon EFS file system.
- Parameters:
creationToken
- (Optional) Restricts the list to the file system with this creation token (String). You specify a creation token when you create an Amazon EFS file system.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fileSystemId
DescribeFileSystemsRequest.Builder fileSystemId(String fileSystemId)
(Optional) ID of the file system whose description you want to retrieve (String).
- Parameters:
fileSystemId
- (Optional) ID of the file system whose description you want to retrieve (String).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
DescribeFileSystemsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
DescribeFileSystemsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-