interface EndpointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ElastiCache.CfnReplicationGroup.EndpointProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awselasticache#CfnReplicationGroup_EndpointProperty |
Java | software.amazon.awscdk.services.elasticache.CfnReplicationGroup.EndpointProperty |
Python | aws_cdk.aws_elasticache.CfnReplicationGroup.EndpointProperty |
TypeScript | aws-cdk-lib » aws_elasticache » CfnReplicationGroup » EndpointProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_elasticache as elasticache } from 'aws-cdk-lib';
const endpointProperty: elasticache.CfnReplicationGroup.EndpointProperty = {
address: 'address',
port: 'port',
};
Properties
| Name | Type | Description |
|---|---|---|
| address? | string | The DNS hostname of the cache node. |
| port? | string | The port number that the cache engine is listening on. |
address?
Type:
string
(optional)
The DNS hostname of the cache node.
port?
Type:
string
(optional)
The port number that the cache engine is listening on.

.NET
Go
Java
Python
TypeScript