Interface DescribeVpcEndpointsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeVpcEndpointsResponse.Builder,DescribeVpcEndpointsResponse>,Ec2Response.Builder,SdkBuilder<DescribeVpcEndpointsResponse.Builder,DescribeVpcEndpointsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeVpcEndpointsResponse
@Mutable @NotThreadSafe public static interface DescribeVpcEndpointsResponse.Builder extends Ec2Response.Builder, SdkPojo, CopyableBuilder<DescribeVpcEndpointsResponse.Builder,DescribeVpcEndpointsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeVpcEndpointsResponse.BuildernextToken(String nextToken)The token to use when requesting the next set of items.DescribeVpcEndpointsResponse.BuildervpcEndpoints(Collection<VpcEndpoint> vpcEndpoints)Information about the VPC endpoints.DescribeVpcEndpointsResponse.BuildervpcEndpoints(Consumer<VpcEndpoint.Builder>... vpcEndpoints)Information about the VPC endpoints.DescribeVpcEndpointsResponse.BuildervpcEndpoints(VpcEndpoint... vpcEndpoints)Information about the VPC endpoints.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.ec2.model.Ec2Response.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
-
vpcEndpoints
DescribeVpcEndpointsResponse.Builder vpcEndpoints(Collection<VpcEndpoint> vpcEndpoints)
Information about the VPC endpoints.
- Parameters:
vpcEndpoints- Information about the VPC endpoints.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcEndpoints
DescribeVpcEndpointsResponse.Builder vpcEndpoints(VpcEndpoint... vpcEndpoints)
Information about the VPC endpoints.
- Parameters:
vpcEndpoints- Information about the VPC endpoints.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcEndpoints
DescribeVpcEndpointsResponse.Builder vpcEndpoints(Consumer<VpcEndpoint.Builder>... vpcEndpoints)
Information about the VPC endpoints.
This is a convenience method that creates an instance of theVpcEndpoint.Builderavoiding the need to create one manually viaVpcEndpoint.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#vpcEndpoints(List.) - Parameters:
vpcEndpoints- a consumer that will call methods onVpcEndpoint.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#vpcEndpoints(java.util.Collection)
-
nextToken
DescribeVpcEndpointsResponse.Builder nextToken(String nextToken)
The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.
- Parameters:
nextToken- The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-