Module Values.ContinueDeploymentInputSource

For a blue/green deployment, starts the process of rerouting traffic from instances in the original environment to instances in the replacement environment without waiting for a specified wait time to elapse. (Traffic rerouting, which is achieved by registering instances in the replacement environment with the load balancer, can start as soon as all instances have a status of Ready.)

Sourcetype nonrec t = {
  1. deploymentId : DeploymentId.t option;
    (*

    The unique ID of a blue/green deployment for which you want to start rerouting traffic to the replacement environment.

    *)
  2. deploymentWaitType : DeploymentWaitType.t option;
    (*

    The status of the deployment's waiting period. READY_WAIT indicates that the deployment is ready to start shifting traffic. TERMINATION_WAIT indicates that the traffic is shifted, but the original target is not terminated.

    *)
}
Sourceval make : ?deploymentId:??? -> ?deploymentWaitType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DeploymentId.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