Class CfnGlobalReplicationGroup.RegionalConfigurationProperty
A list of the replication groups.
Inherited Members
Namespace: Amazon.CDK.AWS.ElastiCache
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnGlobalReplicationGroup.RegionalConfigurationProperty : CfnGlobalReplicationGroup.IRegionalConfigurationProperty
Syntax (vb)
Public Class CfnGlobalReplicationGroup.RegionalConfigurationProperty Implements 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
Constructors
| RegionalConfigurationProperty() | A list of the replication groups. |
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. |
Constructors
RegionalConfigurationProperty()
A list of the replication groups.
public RegionalConfigurationProperty()
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" }
} }
};
Properties
ReplicationGroupId
The name of the secondary cluster.
public string? ReplicationGroupId { get; set; }
Property Value
Remarks
ReplicationGroupRegion
The Amazon region where the cluster is stored.
public string? ReplicationGroupRegion { get; set; }
Property Value
Remarks
ReshardingConfigurations
A list of PreferredAvailabilityZones objects that specifies the configuration of a node group in the resharded cluster.
public object? ReshardingConfigurations { get; set; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnGlobalReplicationGroup.IReshardingConfigurationProperty)[]