Values.AwsApiGatewayCanarySettingsSourceContains information about settings for canary deployment in the stage.
type nonrec t = {percentTraffic : Double.t option;The percentage of traffic that is diverted to a canary deployment.
*)deploymentId : NonEmptyString.t option;The deployment identifier for the canary deployment.
*)stageVariableOverrides : FieldMap.t option;Stage variables that are overridden in the canary release deployment. The variables include new stage variables that are introduced in the canary. Each variable is represented as a string-to-string map between the stage variable name and the variable value.
*)useStageCache : Boolean.t option;Indicates whether the canary deployment uses the stage cache.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Double of Double.t
| `Map of
([> `String of NonEmptyString.t ]
* [> `String of NonEmptyString.t ])
list
| `String of NonEmptyString.t ])
list ]