Module Values.AwsEc2NetworkInterfacePrivateIpAddressDetailSource

Provides information about a private IPv4 address that is with the network interface.

Sourcetype nonrec t = {
  1. privateIpAddress : NonEmptyString.t option;
    (*

    The IP address.

    *)
  2. privateDnsName : NonEmptyString.t option;
    (*

    The private DNS name for the IP address.

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