Module Values.UpdateClusterResultSource

The name that you specified for the Cluster.

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

    The ARN of the Cluster.

    *)
  2. channelIds : string list option;
    (*

    An array of the IDs of the Channels that are associated with this Cluster. One Channel is associated with the Cluster as follows: A Channel belongs to a ChannelPlacementGroup. A ChannelPlacementGroup is attached to a Node. A Node belongs to a Cluster.

    *)
  3. clusterType : ClusterType.t option;
    (*

    The hardware type for the Cluster

    *)
  4. id : string option;
    (*

    The unique ID of the Cluster.

    *)
  5. name : string option;
    (*

    The user-specified name of the Cluster.

    *)
  6. networkSettings : ClusterNetworkSettings.t option;
    (*

    Network settings that connect the Nodes in the Cluster to one or more of the Networks that the Cluster is associated with.

    *)
  7. state : ClusterState.t option;
    (*

    The current state of the Cluster.

    *)
}
Sourceval make : ?arn:??? -> ?channelIds:??? -> ?clusterType:??? -> ?id:??? -> ?name:??? -> ?networkSettings:??? -> ?state:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of string ] list | `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