public static interface CfnEndpointAccess.VpcEndpointProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnEndpointAccess.VpcEndpointProperty.Builder
A builder for
CfnEndpointAccess.VpcEndpointProperty |
static class |
CfnEndpointAccess.VpcEndpointProperty.Jsii$Proxy
An implementation for
CfnEndpointAccess.VpcEndpointProperty |
Modifier and Type | Method and Description |
---|---|
static CfnEndpointAccess.VpcEndpointProperty.Builder |
builder() |
default java.lang.Object |
getNetworkInterfaces()
One or more network interfaces of the endpoint.
|
default java.lang.String |
getVpcEndpointId()
The connection endpoint ID for connecting an Amazon Redshift cluster through the proxy.
|
default java.lang.String |
getVpcId()
The VPC identifier that the endpoint is associated.
|
default java.lang.Object getNetworkInterfaces()
Also known as an interface endpoint.
default java.lang.String getVpcEndpointId()
default java.lang.String getVpcId()
static CfnEndpointAccess.VpcEndpointProperty.Builder builder()