Module Values.BlueGreenDeploymentConfigurationSource

Information about blue/green deployment options for a deployment group.

Sourcetype nonrec t = {
  1. terminateBlueInstancesOnDeploymentSuccess : BlueInstanceTerminationOption.t option;
    (*

    Information about whether to terminate instances in the original fleet during a blue/green deployment.

    *)
  2. deploymentReadyOption : DeploymentReadyOption.t option;
    (*

    Information about the action to take when newly provisioned instances are ready to receive traffic in a blue/green deployment.

    *)
  3. greenFleetProvisioningOption : GreenFleetProvisioningOption.t option;
    (*

    Information about how instances are provisioned for a replacement environment in a blue/green deployment.

    *)
}
Sourceval make : ?terminateBlueInstancesOnDeploymentSuccess:??? -> ?deploymentReadyOption:??? -> ?greenFleetProvisioningOption:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `Integer of Duration.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