Module Values.NetworkInterfaceSource

Describes a network interface.

Sourcetype nonrec t = {
  1. networkInterfaceId : String_.t option;
    (*

    The network interface identifier.

    *)
  2. subnetId : String_.t option;
    (*

    The subnet identifier.

    *)
  3. privateIpAddress : String_.t option;
    (*

    The IPv4 address of the network interface within the subnet.

    *)
  4. availabilityZone : String_.t option;
    (*

    The Availability Zone.

    *)
  5. ipv6Address : String_.t option;
    (*

    The IPv6 address of the network interface within the subnet.

    *)
}
Sourceval make : ?networkInterfaceId:??? -> ?subnetId:??? -> ?privateIpAddress:??? -> ?availabilityZone:??? -> ?ipv6Address:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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