Interface ListAccessPointsForDirectoryBucketsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListAccessPointsForDirectoryBucketsResponse.Builder,ListAccessPointsForDirectoryBucketsResponse>,S3ControlResponse.Builder,SdkBuilder<ListAccessPointsForDirectoryBucketsResponse.Builder,ListAccessPointsForDirectoryBucketsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListAccessPointsForDirectoryBucketsResponse
@Mutable @NotThreadSafe public static interface ListAccessPointsForDirectoryBucketsResponse.Builder extends S3ControlResponse.Builder, SdkPojo, CopyableBuilder<ListAccessPointsForDirectoryBucketsResponse.Builder,ListAccessPointsForDirectoryBucketsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListAccessPointsForDirectoryBucketsResponse.BuilderaccessPointList(Collection<AccessPoint> accessPointList)Contains identification and configuration information for one or more access points associated with the directory bucket.ListAccessPointsForDirectoryBucketsResponse.BuilderaccessPointList(Consumer<AccessPoint.Builder>... accessPointList)Contains identification and configuration information for one or more access points associated with the directory bucket.ListAccessPointsForDirectoryBucketsResponse.BuilderaccessPointList(AccessPoint... accessPointList)Contains identification and configuration information for one or more access points associated with the directory bucket.ListAccessPointsForDirectoryBucketsResponse.BuildernextToken(String nextToken)IfNextTokenis returned, there are more access points available than requested in themaxResultsvalue.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.s3control.model.S3ControlResponse.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
-
accessPointList
ListAccessPointsForDirectoryBucketsResponse.Builder accessPointList(Collection<AccessPoint> accessPointList)
Contains identification and configuration information for one or more access points associated with the directory bucket.
- Parameters:
accessPointList- Contains identification and configuration information for one or more access points associated with the directory bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
accessPointList
ListAccessPointsForDirectoryBucketsResponse.Builder accessPointList(AccessPoint... accessPointList)
Contains identification and configuration information for one or more access points associated with the directory bucket.
- Parameters:
accessPointList- Contains identification and configuration information for one or more access points associated with the directory bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
accessPointList
ListAccessPointsForDirectoryBucketsResponse.Builder accessPointList(Consumer<AccessPoint.Builder>... accessPointList)
Contains identification and configuration information for one or more access points associated with the directory bucket.
This is a convenience method that creates an instance of theAccessPoint.Builderavoiding the need to create one manually viaAccessPoint.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#accessPointList(List.) - Parameters:
accessPointList- a consumer that will call methods onAccessPoint.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#accessPointList(java.util.Collection)
-
nextToken
ListAccessPointsForDirectoryBucketsResponse.Builder nextToken(String nextToken)
If
NextTokenis returned, there are more access points available than requested in themaxResultsvalue. The value ofNextTokenis a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours.- Parameters:
nextToken- IfNextTokenis returned, there are more access points available than requested in themaxResultsvalue. The value ofNextTokenis a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-