Class: Aws::ElastiCache::Types::NodeGroup
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::ElastiCache::Types::NodeGroup
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-elasticache/types.rb
 
Overview
Represents a collection of cache nodes in a replication group. One node in the node group is the read/write primary node. All the other nodes are read-only Replica nodes.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #node_group_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The identifier for the node group (shard).
 - 
  
    
      #node_group_members  ⇒ Array<Types::NodeGroupMember> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list containing information about individual nodes within the node group (shard).
 - 
  
    
      #primary_endpoint  ⇒ Types::Endpoint 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The endpoint of the primary node in this node group (shard).
 - 
  
    
      #reader_endpoint  ⇒ Types::Endpoint 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The endpoint of the replica nodes in this node group (shard).
 - 
  
    
      #slots  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The keyspace for this node group (shard).
 - 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The current state of this replication group - ‘creating`, `available`, `modifying`, `deleting`.
 
Instance Attribute Details
#node_group_id ⇒ String
The identifier for the node group (shard). A Valkey or Redis OSS (cluster mode disabled) replication group contains only 1 node group; therefore, the node group ID is 0001. A Valkey or Redis OSS (cluster mode enabled) replication group contains 1 to 90 node groups numbered 0001 to 0090. Optionally, the user can provide the id for a node group.
      6912 6913 6914 6915 6916 6917 6918 6919 6920 6921  | 
    
      # File 'lib/aws-sdk-elasticache/types.rb', line 6912 class NodeGroup < Struct.new( :node_group_id, :status, :primary_endpoint, :reader_endpoint, :slots, :node_group_members) SENSITIVE = [] include Aws::Structure end  | 
  
#node_group_members ⇒ Array<Types::NodeGroupMember>
A list containing information about individual nodes within the node group (shard).
      6912 6913 6914 6915 6916 6917 6918 6919 6920 6921  | 
    
      # File 'lib/aws-sdk-elasticache/types.rb', line 6912 class NodeGroup < Struct.new( :node_group_id, :status, :primary_endpoint, :reader_endpoint, :slots, :node_group_members) SENSITIVE = [] include Aws::Structure end  | 
  
#primary_endpoint ⇒ Types::Endpoint
The endpoint of the primary node in this node group (shard).
      6912 6913 6914 6915 6916 6917 6918 6919 6920 6921  | 
    
      # File 'lib/aws-sdk-elasticache/types.rb', line 6912 class NodeGroup < Struct.new( :node_group_id, :status, :primary_endpoint, :reader_endpoint, :slots, :node_group_members) SENSITIVE = [] include Aws::Structure end  | 
  
#reader_endpoint ⇒ Types::Endpoint
The endpoint of the replica nodes in this node group (shard). This value is read-only.
      6912 6913 6914 6915 6916 6917 6918 6919 6920 6921  | 
    
      # File 'lib/aws-sdk-elasticache/types.rb', line 6912 class NodeGroup < Struct.new( :node_group_id, :status, :primary_endpoint, :reader_endpoint, :slots, :node_group_members) SENSITIVE = [] include Aws::Structure end  | 
  
#slots ⇒ String
The keyspace for this node group (shard).
      6912 6913 6914 6915 6916 6917 6918 6919 6920 6921  | 
    
      # File 'lib/aws-sdk-elasticache/types.rb', line 6912 class NodeGroup < Struct.new( :node_group_id, :status, :primary_endpoint, :reader_endpoint, :slots, :node_group_members) SENSITIVE = [] include Aws::Structure end  | 
  
#status ⇒ String
The current state of this replication group - ‘creating`, `available`, `modifying`, `deleting`.
      6912 6913 6914 6915 6916 6917 6918 6919 6920 6921  | 
    
      # File 'lib/aws-sdk-elasticache/types.rb', line 6912 class NodeGroup < Struct.new( :node_group_id, :status, :primary_endpoint, :reader_endpoint, :slots, :node_group_members) SENSITIVE = [] include Aws::Structure end  |