Module Values.DestinationInfoSource

Describes the destination of a record.

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

    The ID of the resource created at the destination.

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

    The destination service of the record.

    *)
}
Sourceval make : ?id:??? -> ?service:??? -> 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