aws-cdk-lib.aws_redshiftserverless.CfnWorkgroup.EndpointProperty

interface EndpointProperty

LanguageType name
.NETAmazon.CDK.AWS.RedshiftServerless.CfnWorkgroup.EndpointProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsredshiftserverless#CfnWorkgroup_EndpointProperty
Javasoftware.amazon.awscdk.services.redshiftserverless.CfnWorkgroup.EndpointProperty
Pythonaws_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

NameTypeDescription
address?stringThe DNS address of the VPC endpoint.
port?numberThe port that Amazon Redshift Serverless listens on.
vpcEndpoints?IResolvable | IResolvable | VpcEndpointProperty[]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 | VpcEndpointProperty[] (optional)

An array of VpcEndpoint objects.