Module Values.ManagedApplicationAutoScalingPolicySource

The Application Auto Scaling policy created by Amazon ECS when you create an Express service.

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

    The Amazon Resource Name (ARN) of the Application Auto Scaling policy associated with the Express service.

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

    The status of Application Auto Scaling policy creation.

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

    Information about why the Application Auto Scaling policy is in the current status.

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

    The Unix timestamp for when the Application Auto Scaling policy was last updated.

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

    The type of Application Auto Scaling policy associated with the Express service. Valid values are TargetTrackingScaling, StepScaling, and PredictiveScaling.

    *)
  6. targetValue : Double.t option;
    (*

    The target value for the auto scaling metric.

    *)
  7. metric : String_.t option;
    (*

    The metric used for auto scaling decisions. The available metrics are ECSServiceAverageCPUUtilization, ECSServiceAverageMemoryUtilization, and ALBRequestCOuntPerTarget.

    *)
}
Sourceval make : ?arn:??? -> ?status:??? -> ?statusReason:??? -> ?updatedAt:??? -> ?policyType:??? -> ?targetValue:??? -> ?metric:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `Enum of string | `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