Interface DescribeMountTargetsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeMountTargetsResponse.Builder,DescribeMountTargetsResponse>,EfsResponse.Builder,SdkBuilder<DescribeMountTargetsResponse.Builder,DescribeMountTargetsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeMountTargetsResponse
public static interface DescribeMountTargetsResponse.Builder extends EfsResponse.Builder, SdkPojo, CopyableBuilder<DescribeMountTargetsResponse.Builder,DescribeMountTargetsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeMountTargetsResponse.Buildermarker(String marker)If the request included theMarker, the response returns that value in this field.DescribeMountTargetsResponse.BuildermountTargets(Collection<MountTargetDescription> mountTargets)Returns the file system's mount targets as an array ofMountTargetDescriptionobjects.DescribeMountTargetsResponse.BuildermountTargets(Consumer<MountTargetDescription.Builder>... mountTargets)Returns the file system's mount targets as an array ofMountTargetDescriptionobjects.DescribeMountTargetsResponse.BuildermountTargets(MountTargetDescription... mountTargets)Returns the file system's mount targets as an array ofMountTargetDescriptionobjects.DescribeMountTargetsResponse.BuildernextMarker(String nextMarker)If a value is present, there are more mount targets to return.-
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
DescribeMountTargetsResponse.Builder marker(String marker)
If the request included the
Marker, the response returns that value in this field.- Parameters:
marker- If the request included theMarker, the response returns that value in this field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mountTargets
DescribeMountTargetsResponse.Builder mountTargets(Collection<MountTargetDescription> mountTargets)
Returns the file system's mount targets as an array of
MountTargetDescriptionobjects.- Parameters:
mountTargets- Returns the file system's mount targets as an array ofMountTargetDescriptionobjects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mountTargets
DescribeMountTargetsResponse.Builder mountTargets(MountTargetDescription... mountTargets)
Returns the file system's mount targets as an array of
MountTargetDescriptionobjects.- Parameters:
mountTargets- Returns the file system's mount targets as an array ofMountTargetDescriptionobjects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mountTargets
DescribeMountTargetsResponse.Builder mountTargets(Consumer<MountTargetDescription.Builder>... mountTargets)
Returns the file system's mount targets as an array of
This is a convenience method that creates an instance of theMountTargetDescriptionobjects.MountTargetDescription.Builderavoiding the need to create one manually viaMountTargetDescription.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#mountTargets(List.) - Parameters:
mountTargets- a consumer that will call methods onMountTargetDescription.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#mountTargets(java.util.Collection)
-
nextMarker
DescribeMountTargetsResponse.Builder nextMarker(String nextMarker)
If a value is present, there are more mount targets to return. In a subsequent request, you can provide
Markerin your request with this value to retrieve the next set of mount targets.- Parameters:
nextMarker- If a value is present, there are more mount targets to return. In a subsequent request, you can provideMarkerin your request with this value to retrieve the next set of mount targets.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-