Module Values.AutoScalingSettingsDescriptionSource

Represents the auto scaling settings for a global table or global secondary index.

Sourcetype nonrec t = {
  1. minimumUnits : PositiveLongObject.t option;
    (*

    The minimum capacity units that a global table or global secondary index should be scaled down to.

    *)
  2. maximumUnits : PositiveLongObject.t option;
    (*

    The maximum capacity units that a global table or global secondary index should be scaled up to.

    *)
  3. autoScalingDisabled : BooleanObject.t option;
    (*

    Disabled auto scaling for this global table or global secondary index.

    *)
  4. autoScalingRoleArn : String_.t option;
    (*

    Role ARN used for configuring the auto scaling policy.

    *)
  5. scalingPolicies : AutoScalingPolicyDescriptionList.t option;
    (*

    Information about the scaling policies.

    *)
}
Sourceval make : ?minimumUnits:??? -> ?maximumUnits:??? -> ?autoScalingDisabled:??? -> ?autoScalingRoleArn:??? -> ?scalingPolicies:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanObject.t | `List of [> `Structure of (string * [> `String of AutoScalingPolicyName.t | `Structure of (string * [> `Boolean of BooleanObject.t | `Double of DoubleObject.t | `Integer of IntegerObject.t ]) list ]) list ] list | `Long of PositiveLongObject.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