Module Values_0.InstancePrivateIpAddressSource

Describes a private IPv4 address.

Sourcetype nonrec t = {
  1. association : InstanceNetworkInterfaceAssociation.t option;
    (*

    The association information for an Elastic IP address for the network interface.

    *)
  2. primary : Boolean.t option;
    (*

    Indicates whether this IPv4 address is the primary private IP address of the network interface.

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

    The private IPv4 DNS name.

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

    The private IPv4 address of the network interface.

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