Module Values.UpdateClusterRequestSource

A request to update the cluster.

Sourcetype nonrec t = {
  1. clusterId : string;
    (*

    The ID of the cluster

    *)
  2. name : string option;
    (*

    Include this parameter only if you want to change the current name of the Cluster. Specify a name that is unique in the AWS account. You can't change the name. Names are case-sensitive.

    *)
  3. networkSettings : ClusterNetworkSettingsUpdateRequest.t option;
    (*

    Include this property only if you want to change the current connections between the Nodes in the Cluster and the Networks the Cluster is associated with.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?networkSettings:??? -> clusterId:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string | `Structure of (string * [> `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of string ]) 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