interface EndpointProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.MemoryDB.CfnCluster.EndpointProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmemorydb#CfnCluster_EndpointProperty | 
  Java | software.amazon.awscdk.services.memorydb.CfnCluster.EndpointProperty | 
  Python | aws_cdk.aws_memorydb.CfnCluster.EndpointProperty | 
  TypeScript  | aws-cdk-lib » aws_memorydb » CfnCluster » EndpointProperty | 
Represents the information required for client programs to connect to the cluster and its nodes.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_memorydb as memorydb } from 'aws-cdk-lib';
const endpointProperty: memorydb.CfnCluster.EndpointProperty = {
  address: 'address',
  port: 123,
};
Properties
| Name | Type | Description | 
|---|---|---|
| address? | string | The DNS hostname of the node. | 
| port? | number | The port number that the engine is listening on. | 
address?
Type:
string
(optional)
The DNS hostname of the node.
port?
Type:
number
(optional)
The port number that the engine is listening on.

 .NET
 Go
 Java
 Python
 TypeScript