Module Values.ManagedScalableTargetSource

Represents a scalable target.

Sourcetype nonrec t = {
  1. arn : String_.t option;
    (*

    The ARN of the scalable target.

    *)
  2. status : ManagedResourceStatus.t option;
    (*

    The status of the scalable target.

    *)
  3. statusReason : String_.t option;
    (*

    Information about why the scalable target is in the current status.

    *)
  4. updatedAt : Timestamp.t option;
    (*

    The Unix timestamp for when the target was most recently updated.

    *)
  5. minCapacity : Integer.t option;
    (*

    The minimum value to scale to in response to a scale-in activity.

    *)
  6. maxCapacity : Integer.t option;
    (*

    The maximum value to scale to in response to a scale-out activity.

    *)
}
Sourceval make : ?arn:??? -> ?status:??? -> ?statusReason:??? -> ?updatedAt:??? -> ?minCapacity:??? -> ?maxCapacity:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `String of String_.t | `Timestamp of Timestamp.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