interface VpcEndpointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Redshift.CfnEndpointAccess.VpcEndpointProperty |
Java | software.amazon.awscdk.services.redshift.CfnEndpointAccess.VpcEndpointProperty |
Python | aws_cdk.aws_redshift.CfnEndpointAccess.VpcEndpointProperty |
TypeScript | @aws-cdk/aws-redshift » CfnEndpointAccess » VpcEndpointProperty |
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 * as redshift from '@aws-cdk/aws-redshift';
const vpcEndpointProperty: redshift.CfnEndpointAccess.VpcEndpointProperty = {
networkInterfaces: [{
availabilityZone: 'availabilityZone',
networkInterfaceId: 'networkInterfaceId',
privateIpAddress: 'privateIpAddress',
subnetId: 'subnetId',
}],
vpcEndpointId: 'vpcEndpointId',
vpcId: 'vpcId',
};
Properties
| Name | Type | Description |
|---|---|---|
| network | IResolvable | IResolvable | Network[] | One or more network interfaces of the endpoint. |
| vpc | string | The connection endpoint ID for connecting an Amazon Redshift cluster through the proxy. |
| vpc | string | The VPC identifier that the endpoint is associated. |
networkInterfaces?
Type:
IResolvable | IResolvable | Network[]
(optional)
One or more network interfaces of the endpoint.
Also known as an interface endpoint.
vpcEndpointId?
Type:
string
(optional)
The connection endpoint ID for connecting an Amazon Redshift cluster through the proxy.
vpcId?
Type:
string
(optional)
The VPC identifier that the endpoint is associated.

.NET
Java
Python
TypeScript