Module Values_0.PrivateIpAddressSpecificationSource

Describes a secondary private IPv4 address for a network interface.

Sourcetype nonrec t = {
  1. primary : Boolean.t option;
    (*

    Indicates whether the private IPv4 address is the primary private IPv4 address. Only one IPv4 address can be designated as primary.

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

    The private IPv4 address.

    *)
}
Sourceval make : ?primary:??? -> ?privateIpAddress:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `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