interface EndpointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Redshift.CfnClusterPropsMixin.EndpointProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsredshift#CfnClusterPropsMixin_EndpointProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.redshift.CfnClusterPropsMixin.EndpointProperty |
Python | aws_cdk.cfn_property_mixins.aws_redshift.CfnClusterPropsMixin.EndpointProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_redshift » CfnClusterPropsMixin » EndpointProperty |
Describes a connection endpoint.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_redshift as redshift } from '@aws-cdk/cfn-property-mixins';
const endpointProperty: redshift.CfnClusterPropsMixin.EndpointProperty = {
address: 'address',
port: 'port',
};
Properties
| Name | Type | Description |
|---|---|---|
| address? | string | The DNS address of the cluster. |
| port? | string | The port that the database engine is listening on. |
address?
Type:
string
(optional)
The DNS address of the cluster.
This property is read only.
port?
Type:
string
(optional)
The port that the database engine is listening on.
This property is read only.

.NET
Go
Java
Python
TypeScript