Module Values.IpAddressResponseSource

In the response to a GetResolverEndpoint request, information about the IP addresses that the Resolver endpoint uses for DNS queries.

Sourcetype nonrec t = {
  1. ipId : ResourceId.t option;
    (*

    The ID of one IP address.

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

    The ID of one subnet.

    *)
  3. ip : Ip.t option;
    (*

    One IPv4 address that the Resolver endpoint uses for DNS queries.

    *)
  4. ipv6 : Ipv6.t option;
    (*

    One IPv6 address that the Resolver endpoint uses for DNS queries.

    *)
  5. status : IpAddressStatus.t option;
    (*

    A status code that gives the current status of the request.

    *)
  6. statusMessage : StatusMessage.t option;
    (*

    A message that provides additional information about the status of the request.

    *)
  7. creationTime : Rfc3339TimeString.t option;
    (*

    The date and time that the IP address was created, in Unix time format and Coordinated Universal Time (UTC).

    *)
  8. modificationTime : Rfc3339TimeString.t option;
    (*

    The date and time that the IP address was last modified, in Unix time format and Coordinated Universal Time (UTC).

    *)
}
Sourceval make : ?ipId:??? -> ?subnetId:??? -> ?ip:??? -> ?ipv6:??? -> ?status:??? -> ?statusMessage:??? -> ?creationTime:??? -> ?modificationTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ResourceId.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