Interface CfnGlobalReplicationGroup.IRegionalConfigurationProperty
A list of the replication groups.
Namespace: Amazon.CDK.AWS.ElastiCache
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnGlobalReplicationGroup.IRegionalConfigurationProperty
Syntax (vb)
Public Interface CfnGlobalReplicationGroup.IRegionalConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ElastiCache;
var regionalConfigurationProperty = new RegionalConfigurationProperty {
ReplicationGroupId = "replicationGroupId",
ReplicationGroupRegion = "replicationGroupRegion",
ReshardingConfigurations = new [] { new ReshardingConfigurationProperty {
NodeGroupId = "nodeGroupId",
PreferredAvailabilityZones = new [] { "preferredAvailabilityZones" }
} }
};
Synopsis
Properties
| ReplicationGroupId | The name of the secondary cluster. |
| ReplicationGroupRegion | The Amazon region where the cluster is stored. |
| ReshardingConfigurations | A list of PreferredAvailabilityZones objects that specifies the configuration of a node group in the resharded cluster. |
Properties
ReplicationGroupId
The name of the secondary cluster.
string? ReplicationGroupId { get; }
Property Value
Remarks
ReplicationGroupRegion
The Amazon region where the cluster is stored.
string? ReplicationGroupRegion { get; }
Property Value
Remarks
ReshardingConfigurations
A list of PreferredAvailabilityZones objects that specifies the configuration of a node group in the resharded cluster.
object? ReshardingConfigurations { get; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnGlobalReplicationGroup.IReshardingConfigurationProperty)[]