interface GlobalReplicationGroupMemberProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ElastiCache.CfnGlobalReplicationGroupPropsMixin.GlobalReplicationGroupMemberProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awselasticache#CfnGlobalReplicationGroupPropsMixin_GlobalReplicationGroupMemberProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.elasticache.CfnGlobalReplicationGroupPropsMixin.GlobalReplicationGroupMemberProperty |
Python | aws_cdk.cfn_property_mixins.aws_elasticache.CfnGlobalReplicationGroupPropsMixin.GlobalReplicationGroupMemberProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_elasticache » 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 { aws_elasticache as elasticache } from '@aws-cdk/cfn-property-mixins';
const globalReplicationGroupMemberProperty: elasticache.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