Interface CfnWorkgroup.EndpointProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkgroup.EndpointProperty.Jsii$Proxy
- Enclosing class:
- CfnWorkgroup
@Stability(Stable)
public static interface CfnWorkgroup.EndpointProperty
extends software.amazon.jsii.JsiiSerializable
The VPC endpoint object.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.redshiftserverless.*;
EndpointProperty endpointProperty = EndpointProperty.builder()
.address("address")
.port(123)
.vpcEndpoints(List.of(VpcEndpointProperty.builder()
.networkInterfaces(List.of(NetworkInterfaceProperty.builder()
.availabilityZone("availabilityZone")
.networkInterfaceId("networkInterfaceId")
.privateIpAddress("privateIpAddress")
.subnetId("subnetId")
.build()))
.vpcEndpointId("vpcEndpointId")
.vpcId("vpcId")
.build()))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWorkgroup.EndpointPropertystatic final classAn implementation forCfnWorkgroup.EndpointProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAddress
The DNS address of the VPC endpoint. -
getPort
The port that Amazon Redshift Serverless listens on. -
getVpcEndpoints
An array ofVpcEndpointobjects. -
builder
-