interface VpcEndpointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Redshift.Mixins.CfnEndpointAccessPropsMixin.VpcEndpointProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsredshift/mixins#CfnEndpointAccessPropsMixin_VpcEndpointProperty |
Java | software.amazon.awscdk.mixins.preview.services.redshift.mixins.CfnEndpointAccessPropsMixin.VpcEndpointProperty |
Python | aws_cdk.mixins_preview.aws_redshift.mixins.CfnEndpointAccessPropsMixin.VpcEndpointProperty |
TypeScript | @aws-cdk/mixins-preview » aws_redshift » mixins » CfnEndpointAccessPropsMixin » 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 { mixins as redshift_mixins } from '@aws-cdk/mixins-preview/aws-redshift';
const vpcEndpointProperty: redshift_mixins.CfnEndpointAccessPropsMixin.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
Go
Java
Python
TypeScript