From the documentation, to create an aws elasticache redis (cluster-enabled) cluster one must use the ReplicationGroup
createReplicationGroup(CreateReplicationGroupRequest request)
API and not the CacheCluster createCacheCluster(CreateCacheClusterRequest request)
.
In the createReplicationGroup
there is no parameter that specifies the clusterId
but there is a field for replicationGroupId
.
I have the following questions w.r.t the above context.
- Will clusterId be same as replicationGroupId?
- When I query the cluster information using
describeCacheClusters(DescribeCacheClustersRequest req)
will the cluster created usingcreateReplicationGroup
show up?