Interface CfnReplicationGroup.NodeGroupConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnReplicationGroup.NodeGroupConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnReplicationGroup

@Stability(Stable) public static interface CfnReplicationGroup.NodeGroupConfigurationProperty extends software.amazon.jsii.JsiiSerializable
NodeGroupConfiguration is a property of the AWS::ElastiCache::ReplicationGroup resource that configures an Amazon ElastiCache (ElastiCache) Redis cluster node group.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.elasticache.*;
 NodeGroupConfigurationProperty nodeGroupConfigurationProperty = NodeGroupConfigurationProperty.builder()
         .nodeGroupId("nodeGroupId")
         .primaryAvailabilityZone("primaryAvailabilityZone")
         .replicaAvailabilityZones(List.of("replicaAvailabilityZones"))
         .replicaCount(123)
         .slots("slots")
         .build();
 

See Also: