interface VpcEndpointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RedshiftServerless.Mixins.CfnWorkgroupPropsMixin.VpcEndpointProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsredshiftserverless/mixins#CfnWorkgroupPropsMixin_VpcEndpointProperty |
Java | software.amazon.awscdk.mixins.preview.services.redshiftserverless.mixins.CfnWorkgroupPropsMixin.VpcEndpointProperty |
Python | aws_cdk.mixins_preview.aws_redshiftserverless.mixins.CfnWorkgroupPropsMixin.VpcEndpointProperty |
TypeScript | @aws-cdk/mixins-preview » aws_redshiftserverless » mixins » CfnWorkgroupPropsMixin » 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 { mixins as redshiftserverless_mixins } from '@aws-cdk/mixins-preview/aws-redshiftserverless';
const vpcEndpointProperty: redshiftserverless_mixins.CfnWorkgroupPropsMixin.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.

.NET
Go
Java
Python
TypeScript