Interface ListAccessPointsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListAccessPointsResponse.Builder,ListAccessPointsResponse>,S3ControlResponse.Builder,SdkBuilder<ListAccessPointsResponse.Builder,ListAccessPointsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListAccessPointsResponse
public static interface ListAccessPointsResponse.Builder extends S3ControlResponse.Builder, SdkPojo, CopyableBuilder<ListAccessPointsResponse.Builder,ListAccessPointsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListAccessPointsResponse.BuilderaccessPointList(Collection<AccessPoint> accessPointList)Contains identification and configuration information for one or more access points associated with the specified bucket.ListAccessPointsResponse.BuilderaccessPointList(Consumer<AccessPoint.Builder>... accessPointList)Contains identification and configuration information for one or more access points associated with the specified bucket.ListAccessPointsResponse.BuilderaccessPointList(AccessPoint... accessPointList)Contains identification and configuration information for one or more access points associated with the specified bucket.ListAccessPointsResponse.BuildernextToken(String nextToken)If the specified bucket has more access points than can be returned in one call to this API, this field contains a continuation token that you can provide in subsequent calls to this API to retrieve additional access points.-
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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
accessPointList
ListAccessPointsResponse.Builder accessPointList(Collection<AccessPoint> accessPointList)
Contains identification and configuration information for one or more access points associated with the specified bucket.
- Parameters:
accessPointList- Contains identification and configuration information for one or more access points associated with the specified bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
accessPointList
ListAccessPointsResponse.Builder accessPointList(AccessPoint... accessPointList)
Contains identification and configuration information for one or more access points associated with the specified bucket.
- Parameters:
accessPointList- Contains identification and configuration information for one or more access points associated with the specified bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
accessPointList
ListAccessPointsResponse.Builder accessPointList(Consumer<AccessPoint.Builder>... accessPointList)
Contains identification and configuration information for one or more access points associated with the specified 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
ListAccessPointsResponse.Builder nextToken(String nextToken)
If the specified bucket has more access points than can be returned in one call to this API, this field contains a continuation token that you can provide in subsequent calls to this API to retrieve additional access points.
- Parameters:
nextToken- If the specified bucket has more access points than can be returned in one call to this API, this field contains a continuation token that you can provide in subsequent calls to this API to retrieve additional access points.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-