Module Values_0.ScalingConfigurationInfoSource

The scaling configuration for an Aurora DB cluster in serverless DB engine mode. For more information, see Using Amazon Aurora Serverless v1 in the Amazon Aurora User Guide.

Sourcetype nonrec t = {
  1. minCapacity : IntegerOptional.t option;
    (*

    The minimum capacity for an Aurora DB cluster in serverless DB engine mode.

    *)
  2. maxCapacity : IntegerOptional.t option;
    (*

    The maximum capacity for an Aurora DB cluster in serverless DB engine mode.

    *)
  3. autoPause : BooleanOptional.t option;
    (*

    Indicates whether automatic pause is allowed for the Aurora DB cluster in serverless DB engine mode. When the value is set to false for an Aurora Serverless v1 DB cluster, the DB cluster automatically resumes.

    *)
  4. secondsUntilAutoPause : IntegerOptional.t option;
    (*

    The remaining amount of time, in seconds, before the Aurora DB cluster in serverless mode is paused. A DB cluster can be paused only when it's idle (it has no connections).

    *)
  5. timeoutAction : String_.t option;
    (*

    The action that occurs when Aurora times out while attempting to change the capacity of an Aurora Serverless v1 cluster. The value is either ForceApplyCapacityChange or RollbackCapacityChange. ForceApplyCapacityChange, the default, sets the capacity to the specified value as soon as possible. RollbackCapacityChange ignores the capacity change if a scaling point isn't found in the timeout period.

    *)
  6. secondsBeforeTimeout : IntegerOptional.t option;
    (*

    The number of seconds before scaling times out. What happens when an attempted scaling action times out is determined by the TimeoutAction setting.

    *)
}
Sourceval make : ?minCapacity:??? -> ?maxCapacity:??? -> ?autoPause:??? -> ?secondsUntilAutoPause:??? -> ?timeoutAction:??? -> ?secondsBeforeTimeout:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanOptional.t | `Integer of IntegerOptional.t | `String of String_.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