interface GlobalReplicationGroupMemberProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ElastiCache.Mixins.CfnGlobalReplicationGroupPropsMixin.GlobalReplicationGroupMemberProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awselasticache/mixins#CfnGlobalReplicationGroupPropsMixin_GlobalReplicationGroupMemberProperty |
Java | software.amazon.awscdk.mixins.preview.services.elasticache.mixins.CfnGlobalReplicationGroupPropsMixin.GlobalReplicationGroupMemberProperty |
Python | aws_cdk.mixins_preview.aws_elasticache.mixins.CfnGlobalReplicationGroupPropsMixin.GlobalReplicationGroupMemberProperty |
TypeScript | @aws-cdk/mixins-preview » aws_elasticache » mixins » CfnGlobalReplicationGroupPropsMixin » 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 { mixins as elasticache_mixins } from '@aws-cdk/mixins-preview/aws-elasticache';
const globalReplicationGroupMemberProperty: elasticache_mixins.CfnGlobalReplicationGroupPropsMixin.GlobalReplicationGroupMemberProperty = {
replicationGroupId: 'replicationGroupId',
replicationGroupRegion: 'replicationGroupRegion',
role: 'role',
};
Properties
| Name | Type | Description |
|---|---|---|
| replication | string | The replication group id of the Global datastore member. |
| replication | string | The Amazon region of the Global datastore member. |
| role? | string | Indicates 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 .

.NET
Go
Java
Python
TypeScript