Module Values.DryRunResultsSource

Results of a dry run performed in an update domain request.

Sourcetype nonrec t = {
  1. deploymentType : DeploymentType.t option;
    (*

    Specifies the way in which OpenSearch Service will apply an update. Possible values are: Blue/Green - The update requires a blue/green deployment. DynamicUpdate - No blue/green deployment required Undetermined - The domain is in the middle of an update and can't predict the deployment type. Try again after the update is complete. None - The request doesn't include any configuration changes.

    *)
  2. message : Message.t option;
    (*

    A message corresponding to the deployment type.

    *)
}
Sourceval make : ?deploymentType:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DeploymentType.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