interface ReplicationGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.ElastiCache.ReplicationGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awselasticache#ReplicationGroupReference |
Java | software.amazon.awscdk.interfaces.elasticache.ReplicationGroupReference |
Python | aws_cdk.interfaces.aws_elasticache.ReplicationGroupReference |
TypeScript | aws-cdk-lib » interfaces » aws_elasticache » ReplicationGroupReference |
A reference to a ReplicationGroup resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_elasticache as interfaces_aws_elasticache } from 'aws-cdk-lib/interfaces';
const replicationGroupReference: interfaces_aws_elasticache.ReplicationGroupReference = {
replicationGroupId: 'replicationGroupId',
};
Properties
| Name | Type | Description |
|---|---|---|
| replication | string | The ReplicationGroupId of the ReplicationGroup resource. |
replicationGroupId
Type:
string
The ReplicationGroupId of the ReplicationGroup resource.

.NET
Go
Java
Python
TypeScript