Module Values.DeploymentCanarySettingsSource

The input configuration for a canary deployment.

Sourcetype nonrec t = {
  1. percentTraffic : Double.t option;
    (*

    The percentage (0.0-100.0) of traffic routed to the canary deployment.

    *)
  2. stageVariableOverrides : MapOfStringToString.t option;
    (*

    A stage variable overrides used for the canary release deployment. They can override existing stage variables or add new stage variables for the canary release deployment. These stage variables are represented as a string-to-string map between stage variable names and their values.

    *)
  3. useStageCache : Boolean.t option;
    (*

    A Boolean flag to indicate whether the canary release deployment uses the stage cache or not.

    *)
}
Sourceval make : ?percentTraffic:??? -> ?stageVariableOverrides:??? -> ?useStageCache:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Double of Double.t | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list ]) 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