Module Values.TimeBasedCanarySource

A configuration that shifts traffic from one version of a Lambda function or Amazon ECS task set to another in two increments. The original and target Lambda function versions or ECS task sets are specified in the deployment's AppSpec file.

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

    The percentage of traffic to shift in the first increment of a TimeBasedCanary deployment.

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

    The number of minutes between the first and second traffic shifts of a TimeBasedCanary deployment.

    *)
}
Sourceval make : ?canaryPercentage:??? -> ?canaryInterval:??? -> 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