Module Values.UpgradeElasticsearchDomainRequestSource

Container for request parameters to UpgradeElasticsearchDomain operation.

Sourcetype nonrec t = {
  1. domainName : DomainName.t;
  2. targetVersion : ElasticsearchVersionString.t;
    (*

    The version of Elasticsearch that you intend to upgrade the domain to.

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

    This flag, when set to True, indicates that an Upgrade Eligibility Check needs to be performed. This will not actually perform the Upgrade.

    *)
}
Sourceval context_ : string
Sourceval make : ?performCheckOnly:??? -> domainName:DomainName.t -> targetVersion:ElasticsearchVersionString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of DomainName.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