interface EndpointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MemoryDB.Mixins.CfnClusterPropsMixin.EndpointProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmemorydb/mixins#CfnClusterPropsMixin_EndpointProperty |
Java | software.amazon.awscdk.mixins.preview.services.memorydb.mixins.CfnClusterPropsMixin.EndpointProperty |
Python | aws_cdk.mixins_preview.aws_memorydb.mixins.CfnClusterPropsMixin.EndpointProperty |
TypeScript | @aws-cdk/mixins-preview » aws_memorydb » mixins » 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 { mixins as memorydb_mixins } from '@aws-cdk/mixins-preview/aws-memorydb';
const endpointProperty: memorydb_mixins.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