interface EndpointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MemoryDB.CfnClusterPropsMixin.EndpointProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmemorydb#CfnClusterPropsMixin_EndpointProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.memorydb.CfnClusterPropsMixin.EndpointProperty |
Python | aws_cdk.cfn_property_mixins.aws_memorydb.CfnClusterPropsMixin.EndpointProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_memorydb » CfnClusterPropsMixin » 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/cfn-property-mixins';
const endpointProperty: memorydb.CfnClusterPropsMixin.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