Module Values.TimeBasedLinearSource

A configuration that shifts traffic from one version of a Lambda function or ECS task set to another in equal increments, with an equal number of minutes between each increment. The original and target Lambda function versions or ECS task sets are specified in the deployment's AppSpec file.

Sourcetype nonrec t = {
  1. linearPercentage : Percentage.t option;
    (*

    The percentage of traffic that is shifted at the start of each increment of a TimeBasedLinear deployment.

    *)
  2. linearInterval : WaitTimeInMins.t option;
    (*

    The number of minutes between each incremental traffic shift of a TimeBasedLinear deployment.

    *)
}
Sourceval make : ?linearPercentage:??? -> ?linearInterval:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Percentage.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