Module Values.CreateNodeRequestSource

A request to create a node

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

    The ID of the cluster.

    *)
  2. name : string option;
    (*

    The user-specified name of the Node to be created.

    *)
  3. nodeInterfaceMappings : NodeInterfaceMappingCreateRequest.t list option;
    (*

    Documentation update needed

    *)
  4. requestId : string option;
    (*

    An ID that you assign to a create request. This ID ensures idempotency when creating resources.

    *)
  5. role : NodeRole.t option;
    (*

    The initial role of the Node in the Cluster. ACTIVE means the Node is available for encoding. BACKUP means the Node is a redundant Node and might get used if an ACTIVE Node fails.

    *)
  6. tags : Tags.t option;
    (*

    A collection of key-value pairs.

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