interface VpcEndpointProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.RedshiftServerless.CfnWorkgroup.VpcEndpointProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsredshiftserverless#CfnWorkgroup_VpcEndpointProperty |
Java | software.amazon.awscdk.services.redshiftserverless.CfnWorkgroup.VpcEndpointProperty |
Python | aws_cdk.aws_redshiftserverless.CfnWorkgroup.VpcEndpointProperty |
TypeScript | aws-cdk-lib » aws_redshiftserverless » CfnWorkgroup » VpcEndpointProperty |
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 { aws_redshiftserverless as redshiftserverless } from 'aws-cdk-lib';
const vpcEndpointProperty: redshiftserverless.CfnWorkgroup.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 to Amazon Redshift Serverless. |
vpc | string | The VPC identifier that the endpoint is associated with. |
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 to Amazon Redshift Serverless.
vpcId?
Type:
string
(optional)
The VPC identifier that the endpoint is associated with.