NodeGroup
public struct NodeGroup : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The identifier for the node group (shard). A Redis (cluster mode disabled) replication group contains only 1 node group; therefore, the node group ID is 0001. A Redis (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.
Declaration
Swift
public let nodeGroupId: String?
-
A list containing information about individual nodes within the node group (shard).
Declaration
Swift
public let nodeGroupMembers: [NodeGroupMember]?
-
The endpoint of the primary node in this node group (shard).
Declaration
Swift
public let primaryEndpoint: Endpoint?
-
The endpoint of the replica nodes in this node group (shard).
Declaration
Swift
public let readerEndpoint: Endpoint?
-
The keyspace for this node group (shard).
Declaration
Swift
public let slots: String?
-
The current state of this replication group - creating, available, modifying, deleting.
Declaration
Swift
public let status: String?
-
Undocumented
Declaration
Swift
public init(nodeGroupId: String? = nil, nodeGroupMembers: [NodeGroupMember]? = nil, primaryEndpoint: Endpoint? = nil, readerEndpoint: Endpoint? = nil, slots: String? = nil, status: String? = nil)