Values.ManagedScalableTargetSourceRepresents a scalable target.
type nonrec t = {arn : String_.t option;The ARN of the scalable target.
*)status : ManagedResourceStatus.t option;The status of the scalable target.
*)statusReason : String_.t option;Information about why the scalable target is in the current status.
*)updatedAt : Timestamp.t option;The Unix timestamp for when the target was most recently updated.
*)minCapacity : Integer.t option;The minimum value to scale to in response to a scale-in activity.
*)maxCapacity : Integer.t option;The maximum value to scale to in response to a scale-out activity.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of Integer.t
| `String of String_.t
| `Timestamp of Timestamp.t ])
list ]