Interface Endpoint.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<Endpoint.Builder,
,Endpoint> SdkBuilder<Endpoint.Builder,
,Endpoint> SdkPojo
- Enclosing class:
Endpoint
@Mutable
@NotThreadSafe
public static interface Endpoint.Builder
extends SdkPojo, CopyableBuilder<Endpoint.Builder,Endpoint>
-
Method Summary
Modifier and TypeMethodDescriptionThe DNS address of the VPC endpoint.The port that Amazon Redshift Serverless listens on.vpcEndpoints
(Collection<VpcEndpoint> vpcEndpoints) An array ofVpcEndpoint
objects.vpcEndpoints
(Consumer<VpcEndpoint.Builder>... vpcEndpoints) An array ofVpcEndpoint
objects.vpcEndpoints
(VpcEndpoint... vpcEndpoints) An array ofVpcEndpoint
objects.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
address
The DNS address of the VPC endpoint.
- Parameters:
address
- The DNS address of the VPC endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
port
The port that Amazon Redshift Serverless listens on.
- Parameters:
port
- The port that Amazon Redshift Serverless listens on.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcEndpoints
An array of
VpcEndpoint
objects.- Parameters:
vpcEndpoints
- An array ofVpcEndpoint
objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcEndpoints
An array of
VpcEndpoint
objects.- Parameters:
vpcEndpoints
- An array ofVpcEndpoint
objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcEndpoints
An array of
This is a convenience method that creates an instance of theVpcEndpoint
objects.VpcEndpoint.Builder
avoiding the need to create one manually viaVpcEndpoint.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tovpcEndpoints(List<VpcEndpoint>)
.- 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:
-