Module Values_1.ModifyDBShardGroupMessageSource

Modifies the settings of an Aurora Limitless Database DB shard group. You can change one or more settings by specifying these parameters and the new values in the request.

Sourcetype nonrec t = {
  1. dBShardGroupIdentifier : Values_0.DBShardGroupIdentifier.t;
    (*

    The name of the DB shard group to modify.

    *)
  2. maxACU : Values_0.DoubleOptional.t option;
    (*

    The maximum capacity of the DB shard group in Aurora capacity units (ACUs).

    *)
  3. minACU : Values_0.DoubleOptional.t option;
    (*

    The minimum capacity of the DB shard group in Aurora capacity units (ACUs).

    *)
  4. computeRedundancy : Values_0.IntegerOptional.t option;
    (*

    Specifies whether to create standby DB shard groups for the DB shard group. Valid values are the following: 0 - Creates a DB shard group without a standby DB shard group. This is the default value. 1 - Creates a DB shard group with a standby DB shard group in a different Availability Zone (AZ). 2 - Creates a DB shard group with two standby DB shard groups in two different AZs.

    *)
}
Sourceval context_ : string
Sourceval make : ?maxACU:??? -> ?minACU:??? -> ?computeRedundancy:??? -> dBShardGroupIdentifier:Values_0.DBShardGroupIdentifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Values_0.DoubleOptional.t | `Integer of Values_0.IntegerOptional.t | `String of Values_0.DBShardGroupIdentifier.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t