Interface CfnEndpointAccess.VpcEndpointProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEndpointAccess.VpcEndpointProperty.Jsii$Proxy
Enclosing class:
CfnEndpointAccess

@Stability(Stable) public static interface CfnEndpointAccess.VpcEndpointProperty extends software.amazon.jsii.JsiiSerializable
The connection endpoint for connecting to an Amazon Redshift cluster through the proxy.

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.redshift.*;
 VpcEndpointProperty vpcEndpointProperty = VpcEndpointProperty.builder()
         .networkInterfaces(List.of(NetworkInterfaceProperty.builder()
                 .availabilityZone("availabilityZone")
                 .networkInterfaceId("networkInterfaceId")
                 .privateIpAddress("privateIpAddress")
                 .subnetId("subnetId")
                 .build()))
         .vpcEndpointId("vpcEndpointId")
         .vpcId("vpcId")
         .build();
 

See Also: