Module Values.AutoScalingSettingsUpdateSource

Represents the auto scaling settings to be modified 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 : AutoScalingRoleArn.t option;
    (*

    Role ARN used for configuring auto scaling policy.

    *)
  5. scalingPolicyUpdate : AutoScalingPolicyUpdate.t option;
    (*

    The scaling policy to apply for scaling target global table or global secondary index capacity units.

    *)
}
Sourceval make : ?minimumUnits:??? -> ?maximumUnits:??? -> ?autoScalingDisabled:??? -> ?autoScalingRoleArn:??? -> ?scalingPolicyUpdate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanObject.t | `Long of PositiveLongObject.t | `String of AutoScalingRoleArn.t | `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 ]
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