aws-cdk-lib.aws_elasticache.CfnGlobalReplicationGroup.GlobalReplicationGroupMemberProperty

interface GlobalReplicationGroupMemberProperty

LanguageType name
.NETAmazon.CDK.AWS.ElastiCache.CfnGlobalReplicationGroup.GlobalReplicationGroupMemberProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awselasticache#CfnGlobalReplicationGroup_GlobalReplicationGroupMemberProperty
Javasoftware.amazon.awscdk.services.elasticache.CfnGlobalReplicationGroup.GlobalReplicationGroupMemberProperty
Pythonaws_cdk.aws_elasticache.CfnGlobalReplicationGroup.GlobalReplicationGroupMemberProperty
TypeScript aws-cdk-lib » aws_elasticache » CfnGlobalReplicationGroup » GlobalReplicationGroupMemberProperty

A member of a Global datastore.

It contains the Replication Group Id, the Amazon region and the role of the replication group.

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-lib';
const globalReplicationGroupMemberProperty: elasticache.CfnGlobalReplicationGroup.GlobalReplicationGroupMemberProperty = {
  replicationGroupId: 'replicationGroupId',
  replicationGroupRegion: 'replicationGroupRegion',
  role: 'role',
};

Properties

NameTypeDescription
replicationGroupId?stringThe replication group id of the Global datastore member.
replicationGroupRegion?stringThe Amazon region of the Global datastore member.
role?stringIndicates the role of the replication group, PRIMARY or SECONDARY .

replicationGroupId?

Type: string (optional)

The replication group id of the Global datastore member.


replicationGroupRegion?

Type: string (optional)

The Amazon region of the Global datastore member.


role?

Type: string (optional)

Indicates the role of the replication group, PRIMARY or SECONDARY .