CloudFormation - ReplicationGroup - 指定名称

CloudFormation - ReplicationGroup - Specify the name

我正在创建 CloudFormation 模板以在 ElastiCache 集群中创建 Redis,一切正常。 但是我无法修改集群的名称。

这是我的代码:

Resources:
Redis:
    Type: 'AWS::ElastiCache::ReplicationGroup'
    Properties:

        ReplicationGroupDescription: RedisCluster
        NumCacheClusters: '2'
        Engine: redis
        MultiAZEnabled: yes
        CacheNodeType: cache.t2.micro
        AutomaticFailoverEnabled: 'true'
        CacheSubnetGroupName: !Ref RedisSubnetGroup
        EngineVersion: 5.0.6
        PreferredMaintenanceWindow: mon:03:00-mon:04:00
        Tags: 
            - Key: Cluster Name
              Value: "Redis"
            - Key: Name
              Value: "Redis"
        SecurityGroupIds: 
            - !Ref RedisSecurityGroup

在这种情况下,标签似乎不起作用。

指定集群名称的正确方法是什么?

名称使用ReplicationGroupId设置:

The replication group identifier. This parameter is stored as a lowercase string.