Show / Hide Table of Contents

Class CfnGlobalReplicationGroup.ReshardingConfigurationProperty

A list of PreferredAvailabilityZones objects that specifies the configuration of a node group in the resharded cluster.

Inheritance
object
CfnGlobalReplicationGroup.ReshardingConfigurationProperty
Implements
CfnGlobalReplicationGroup.IReshardingConfigurationProperty
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.ReshardingConfigurationProperty : CfnGlobalReplicationGroup.IReshardingConfigurationProperty
Syntax (vb)
Public Class CfnGlobalReplicationGroup.ReshardingConfigurationProperty Implements CfnGlobalReplicationGroup.IReshardingConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-globalreplicationgroup-reshardingconfiguration.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 reshardingConfigurationProperty = new ReshardingConfigurationProperty {
                 NodeGroupId = "nodeGroupId",
                 PreferredAvailabilityZones = new [] { "preferredAvailabilityZones" }
             };

Synopsis

Constructors

ReshardingConfigurationProperty()

A list of PreferredAvailabilityZones objects that specifies the configuration of a node group in the resharded cluster.

Properties

NodeGroupId

Either the ElastiCache supplied 4-digit id or a user supplied id for the node group these configuration values apply to.

PreferredAvailabilityZones

A list of preferred availability zones for the nodes in this cluster.

Constructors

ReshardingConfigurationProperty()

A list of PreferredAvailabilityZones objects that specifies the configuration of a node group in the resharded cluster.

public ReshardingConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-globalreplicationgroup-reshardingconfiguration.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 reshardingConfigurationProperty = new ReshardingConfigurationProperty {
                 NodeGroupId = "nodeGroupId",
                 PreferredAvailabilityZones = new [] { "preferredAvailabilityZones" }
             };

Properties

NodeGroupId

Either the ElastiCache supplied 4-digit id or a user supplied id for the node group these configuration values apply to.

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

string

Remarks

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

PreferredAvailabilityZones

A list of preferred availability zones for the nodes in this cluster.

public string[]? PreferredAvailabilityZones { get; set; }
Property Value

string[]

Remarks

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

Implements

CfnGlobalReplicationGroup.IReshardingConfigurationProperty
Back to top Generated by DocFX