interface ReadEndPointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ElastiCache.CfnReplicationGroupPropsMixin.ReadEndPointProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awselasticache#CfnReplicationGroupPropsMixin_ReadEndPointProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.elasticache.CfnReplicationGroupPropsMixin.ReadEndPointProperty |
Python | aws_cdk.cfn_property_mixins.aws_elasticache.CfnReplicationGroupPropsMixin.ReadEndPointProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_elasticache » CfnReplicationGroupPropsMixin » 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/cfn-property-mixins';
const readEndPointProperty: elasticache.CfnReplicationGroupPropsMixin.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