Interface VpcEndpoint.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<VpcEndpoint.Builder,VpcEndpoint>
,SdkBuilder<VpcEndpoint.Builder,VpcEndpoint>
,SdkPojo
- Enclosing class:
- VpcEndpoint
public static interface VpcEndpoint.Builder extends SdkPojo, CopyableBuilder<VpcEndpoint.Builder,VpcEndpoint>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description VpcEndpoint.Builder
domainArn(String domainArn)
The Amazon Resource Name (ARN) of the domain associated with the endpoint.VpcEndpoint.Builder
endpoint(String endpoint)
The connection endpoint ID for connecting to the domain.VpcEndpoint.Builder
status(String status)
The current status of the endpoint.VpcEndpoint.Builder
status(VpcEndpointStatus status)
The current status of the endpoint.VpcEndpoint.Builder
vpcEndpointId(String vpcEndpointId)
The unique identifier of the endpoint.VpcEndpoint.Builder
vpcEndpointOwner(String vpcEndpointOwner)
The creator of the endpoint.default VpcEndpoint.Builder
vpcOptions(Consumer<VPCDerivedInfo.Builder> vpcOptions)
Options to specify the subnets and security groups for an Amazon OpenSearch Service VPC endpoint.VpcEndpoint.Builder
vpcOptions(VPCDerivedInfo vpcOptions)
Options to specify the subnets and security groups for an Amazon OpenSearch Service VPC endpoint.-
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, sdkFields
-
-
-
-
Method Detail
-
vpcEndpointId
VpcEndpoint.Builder vpcEndpointId(String vpcEndpointId)
The unique identifier of the endpoint.
- Parameters:
vpcEndpointId
- The unique identifier of the endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcEndpointOwner
VpcEndpoint.Builder vpcEndpointOwner(String vpcEndpointOwner)
The creator of the endpoint.
- Parameters:
vpcEndpointOwner
- The creator of the endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
domainArn
VpcEndpoint.Builder domainArn(String domainArn)
The Amazon Resource Name (ARN) of the domain associated with the endpoint.
- Parameters:
domainArn
- The Amazon Resource Name (ARN) of the domain associated with the endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcOptions
VpcEndpoint.Builder vpcOptions(VPCDerivedInfo vpcOptions)
Options to specify the subnets and security groups for an Amazon OpenSearch Service VPC endpoint.
- Parameters:
vpcOptions
- Options to specify the subnets and security groups for an Amazon OpenSearch Service VPC endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcOptions
default VpcEndpoint.Builder vpcOptions(Consumer<VPCDerivedInfo.Builder> vpcOptions)
Options to specify the subnets and security groups for an Amazon OpenSearch Service VPC endpoint.
This is a convenience method that creates an instance of theVPCDerivedInfo.Builder
avoiding the need to create one manually viaVPCDerivedInfo.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tovpcOptions(VPCDerivedInfo)
.- Parameters:
vpcOptions
- a consumer that will call methods onVPCDerivedInfo.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
vpcOptions(VPCDerivedInfo)
-
status
VpcEndpoint.Builder status(String status)
The current status of the endpoint.
- Parameters:
status
- The current status of the endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
VpcEndpointStatus
,VpcEndpointStatus
-
status
VpcEndpoint.Builder status(VpcEndpointStatus status)
The current status of the endpoint.
- Parameters:
status
- The current status of the endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
VpcEndpointStatus
,VpcEndpointStatus
-
endpoint
VpcEndpoint.Builder endpoint(String endpoint)
The connection endpoint ID for connecting to the domain.
- Parameters:
endpoint
- The connection endpoint ID for connecting to the domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-