Interface CfnWorkgroup.VpcEndpointProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkgroup.VpcEndpointProperty.Jsii$Proxy
- Enclosing class:
CfnWorkgroup
@Stability(Stable)
public static interface CfnWorkgroup.VpcEndpointProperty
extends software.amazon.jsii.JsiiSerializable
The connection endpoint for connecting to Amazon Redshift Serverless 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.redshiftserverless.*; 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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnWorkgroup.VpcEndpointProperty
static final class
An implementation forCfnWorkgroup.VpcEndpointProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getNetworkInterfaces
One or more network interfaces of the endpoint.Also known as an interface endpoint.
- See Also:
-
getVpcEndpointId
The connection endpoint ID for connecting to Amazon Redshift Serverless.- See Also:
-
getVpcId
The VPC identifier that the endpoint is associated with.- See Also:
-
builder
-