interface ReadEndPointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ElastiCache.CfnReplicationGroup.ReadEndPointProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awselasticache#CfnReplicationGroup_ReadEndPointProperty |
Java | software.amazon.awscdk.services.elasticache.CfnReplicationGroup.ReadEndPointProperty |
Python | aws_cdk.aws_elasticache.CfnReplicationGroup.ReadEndPointProperty |
TypeScript | aws-cdk-lib » aws_elasticache » CfnReplicationGroup » ReadEndPointProperty |
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 readEndPointProperty: elasticache.CfnReplicationGroup.ReadEndPointProperty = {
addresses: 'addresses',
addressesList: ['addressesList'],
ports: 'ports',
portsList: ['portsList'],
};
Properties
| Name | Type | Description |
|---|---|---|
| addresses? | string | A string containing a comma-separated list of endpoints for the primary and read-only replicas, formatted as [address1, address2, ...]. The order of the addresses maps to the order of the ports from the ReadEndPoint.Ports attribute. |
| addresses | string[] | A list of endpoints for the read-only replicas. |
| ports? | string | A string containing a comma-separated list of ports for the read-only replicas, formatted as [port1, port2, ...]. The order of the ports maps to the order of the addresses from the ReadEndPoint.Addresses attribute. |
| ports | string[] | A list of ports for the read-only replicas. |
addresses?
Type:
string
(optional)
A string containing a comma-separated list of endpoints for the primary and read-only replicas, formatted as [address1, address2, ...]. The order of the addresses maps to the order of the ports from the ReadEndPoint.Ports attribute.
addressesList?
Type:
string[]
(optional)
A list of endpoints for the read-only replicas.
The order of the addresses maps to the order of the ports from the ReadEndPoint.Ports attribute.
ports?
Type:
string
(optional)
A string containing a comma-separated list of ports for the read-only replicas, formatted as [port1, port2, ...]. The order of the ports maps to the order of the addresses from the ReadEndPoint.Addresses attribute.
portsList?
Type:
string[]
(optional)
A list of ports for the read-only replicas.
The order of the ports maps to the order of the addresses from the ReadEndPoint.Addresses attribute.

.NET
Go
Java
Python
TypeScript