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();