interface EndpointProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.RedshiftServerless.CfnWorkgroup.EndpointProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsredshiftserverless#CfnWorkgroup_EndpointProperty |
![]() | software.amazon.awscdk.services.redshiftserverless.CfnWorkgroup.EndpointProperty |
![]() | aws_cdk.aws_redshiftserverless.CfnWorkgroup.EndpointProperty |
![]() | 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.