Module Values.NodeInterfaceMappingCreateRequestSource

Used in CreateNodeRequest.

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

    Specify one of the logicalInterfaceNames that you created in the Cluster that this node belongs to. For example, my-Inputs-Interface.

    *)
  2. networkInterfaceMode : NetworkInterfaceMode.t option;
    (*

    The style of the network -- NAT or BRIDGE.

    *)
  3. physicalInterfaceName : string option;
    (*

    Specify the physical name that corresponds to the logicalInterfaceName that you specified in this interface mapping. For example, Eth1 or ENO1234EXAMPLE.

    *)
}
Sourceval make : ?logicalInterfaceName:??? -> ?networkInterfaceMode:??? -> ?physicalInterfaceName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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