interface EndpointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.RedshiftServerless.CfnWorkgroup.EndpointProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsredshiftserverless#CfnWorkgroup_EndpointProperty |
Java | software.amazon.awscdk.services.redshiftserverless.CfnWorkgroup.EndpointProperty |
Python | aws_cdk.aws_redshiftserverless.CfnWorkgroup.EndpointProperty |
TypeScript | aws-cdk-lib » aws_redshiftserverless » CfnWorkgroup » EndpointProperty |
The VPC endpoint object.
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 endpointProperty: redshiftserverless.CfnWorkgroup.EndpointProperty = {
address: 'address',
port: 123,
vpcEndpoints: [{
networkInterfaces: [{
availabilityZone: 'availabilityZone',
networkInterfaceId: 'networkInterfaceId',
privateIpAddress: 'privateIpAddress',
subnetId: 'subnetId',
}],
vpcEndpointId: 'vpcEndpointId',
vpcId: 'vpcId',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| address? | string | The DNS address of the VPC endpoint. |
| port? | number | The port that Amazon Redshift Serverless listens on. |
| vpc | IResolvable | (IResolvable | Vpc)[] | An array of VpcEndpoint objects. |
address?
Type:
string
(optional)
The DNS address of the VPC endpoint.
port?
Type:
number
(optional)
The port that Amazon Redshift Serverless listens on.
vpcEndpoints?
Type:
IResolvable | (IResolvable | Vpc)[]
(optional)
An array of VpcEndpoint objects.

.NET
Go
Java
Python
TypeScript