Amazon web services 如何获得AWS ElastiCache';s阅读器端点?

Amazon web services 如何获得AWS ElastiCache';s阅读器端点?,amazon-web-services,amazon-elasticache,Amazon Web Services,Amazon Elasticache,我正在部署一个AWS ElastiCache复制组,根据,它应该公开阅读器端点。它确实存在,但仅在UI中,这意味着我无法通过或通过检索此端点。 我正在使用云形成部署一个复制组。以下是与缓存相关的部分: elastiCache: Type: AWS::ElastiCache::ReplicationGroup Properties: AutoMinorVersionUpgrade: false AutomaticFailoverEnabled: true AtRes

我正在部署一个AWS ElastiCache复制组,根据,它应该公开阅读器端点。它确实存在,但仅在UI中,这意味着我无法通过或通过检索此端点。 我正在使用云形成部署一个复制组。以下是与缓存相关的部分:

elastiCache:
  Type: AWS::ElastiCache::ReplicationGroup
  Properties:
    AutoMinorVersionUpgrade: false
    AutomaticFailoverEnabled: true
    AtRestEncryptionEnabled: true
    TransitEncryptionEnabled: true
    SnapshotRetentionLimit: 0
    AuthToken: password123
    CacheNodeType: cache.m4.large
    NumCacheClusters: 2
    CacheSubnetGroupName: !Ref subnetGroup
    ReplicationGroupId: Test
    ReplicationGroupDescription: My ElastiCache
    Engine: redis
    EngineVersion: 5.0.4
    CacheParameterGroupName: default.redis5.0
    Port: 6379
    SecurityGroupIds:
      - !Ref securityGroup
我尝试了很多部署的方法,但都没有成功。我开始想,除了UI,它不会暴露在任何地方。其他人是否有检索此文章的经验?

有从主端点构造读取器端点的解决方法。

有从主端点构造读取器端点的解决方法