Show / Hide Table of Contents

Class CfnGlobalReplicationGroup.RegionalConfigurationProperty

A list of the replication groups.

Inheritance
object
CfnGlobalReplicationGroup.RegionalConfigurationProperty
Implements
CfnGlobalReplicationGroup.IRegionalConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-globalreplicationgroup-regionalconfiguration.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-globalreplicationgroup-regionalconfiguration.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-globalreplicationgroup-regionalconfiguration.html#cfn-elasticache-globalreplicationgroup-regionalconfiguration-replicationgroupid

ReplicationGroupRegion

The Amazon region where the cluster is stored.

public string? ReplicationGroupRegion { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-globalreplicationgroup-regionalconfiguration.html#cfn-elasticache-globalreplicationgroup-regionalconfiguration-replicationgroupregion

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-globalreplicationgroup-regionalconfiguration.html#cfn-elasticache-globalreplicationgroup-regionalconfiguration-reshardingconfigurations

Type union: either IResolvable or (either IResolvable or CfnGlobalReplicationGroup.IReshardingConfigurationProperty)[]

Implements

CfnGlobalReplicationGroup.IRegionalConfigurationProperty
Back to top Generated by DocFX