IncreaseReplicaCountMessage

public struct IncreaseReplicaCountMessage : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • If True, the number of replica nodes is increased immediately. ApplyImmediately=False is not currently supported.

    Declaration

    Swift

    public let applyImmediately: Bool
  • The number of read replica nodes you want at the completion of this operation. For Redis (cluster mode disabled) replication groups, this is the number of replica nodes in the replication group. For Redis (cluster mode enabled) replication groups, this is the number of replica nodes in each of the replication group’s node groups.

    Declaration

    Swift

    public let newReplicaCount: Int?
  • A list of ConfigureShard objects that can be used to configure each shard in a Redis (cluster mode enabled) replication group. The ConfigureShard has three members: NewReplicaCount, NodeGroupId, and PreferredAvailabilityZones.

    Declaration

    Swift

    public let replicaConfiguration: [ConfigureShard]?
  • The id of the replication group to which you want to add replica nodes.

    Declaration

    Swift

    public let replicationGroupId: String
  • Undocumented

    Declaration

    Swift

    public init(applyImmediately: Bool, newReplicaCount: Int? = nil, replicaConfiguration: [ConfigureShard]? = nil, replicationGroupId: String)
  • Declaration

    Swift

    public func validate(name: String) throws