Interface DescribeVpcEndpointsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<DescribeVpcEndpointsResponse.Builder,DescribeVpcEndpointsResponse>
,ElasticsearchResponse.Builder
,SdkBuilder<DescribeVpcEndpointsResponse.Builder,DescribeVpcEndpointsResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- DescribeVpcEndpointsResponse
public static interface DescribeVpcEndpointsResponse.Builder extends ElasticsearchResponse.Builder, SdkPojo, CopyableBuilder<DescribeVpcEndpointsResponse.Builder,DescribeVpcEndpointsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeVpcEndpointsResponse.Builder
vpcEndpointErrors(Collection<VpcEndpointError> vpcEndpointErrors)
Any errors associated with the request.DescribeVpcEndpointsResponse.Builder
vpcEndpointErrors(Consumer<VpcEndpointError.Builder>... vpcEndpointErrors)
Any errors associated with the request.DescribeVpcEndpointsResponse.Builder
vpcEndpointErrors(VpcEndpointError... vpcEndpointErrors)
Any errors associated with the request.DescribeVpcEndpointsResponse.Builder
vpcEndpoints(Collection<VpcEndpoint> vpcEndpoints)
Information about each requested VPC endpoint.DescribeVpcEndpointsResponse.Builder
vpcEndpoints(Consumer<VpcEndpoint.Builder>... vpcEndpoints)
Information about each requested VPC endpoint.DescribeVpcEndpointsResponse.Builder
vpcEndpoints(VpcEndpoint... vpcEndpoints)
Information about each requested VPC endpoint.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.elasticsearch.model.ElasticsearchResponse.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
-
vpcEndpoints
DescribeVpcEndpointsResponse.Builder vpcEndpoints(Collection<VpcEndpoint> vpcEndpoints)
Information about each requested VPC endpoint.
- Parameters:
vpcEndpoints
- Information about each requested VPC endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcEndpoints
DescribeVpcEndpointsResponse.Builder vpcEndpoints(VpcEndpoint... vpcEndpoints)
Information about each requested VPC endpoint.
- Parameters:
vpcEndpoints
- Information about each requested VPC endpoint.- 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 each requested VPC endpoint.
This is a convenience method that creates an instance of theVpcEndpoint.Builder
avoiding the need to create one manually viaVpcEndpoint.builder()
.When the
Consumer
completes,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
)
-
vpcEndpointErrors
DescribeVpcEndpointsResponse.Builder vpcEndpointErrors(Collection<VpcEndpointError> vpcEndpointErrors)
Any errors associated with the request.
- Parameters:
vpcEndpointErrors
- Any errors associated with the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcEndpointErrors
DescribeVpcEndpointsResponse.Builder vpcEndpointErrors(VpcEndpointError... vpcEndpointErrors)
Any errors associated with the request.
- Parameters:
vpcEndpointErrors
- Any errors associated with the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcEndpointErrors
DescribeVpcEndpointsResponse.Builder vpcEndpointErrors(Consumer<VpcEndpointError.Builder>... vpcEndpointErrors)
Any errors associated with the request.
This is a convenience method that creates an instance of theVpcEndpointError.Builder
avoiding the need to create one manually viaVpcEndpointError.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#vpcEndpointErrors(List
.) - Parameters:
vpcEndpointErrors
- a consumer that will call methods onVpcEndpointError.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#vpcEndpointErrors(java.util.Collection
)
-
-