package aws-route53

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. nameserver : Aws.BaseTypes.String.t;
  2. record_name : Aws.BaseTypes.String.t;
  3. record_type : RRType.t;
  4. record_data : RecordData.t;
  5. response_code : Aws.BaseTypes.String.t;
  6. protocol : Aws.BaseTypes.String.t;
}
val make : nameserver:Aws.BaseTypes.String.t -> record_name:Aws.BaseTypes.String.t -> record_type:RRType.t -> record_data:RecordData.t -> response_code:Aws.BaseTypes.String.t -> protocol:Aws.BaseTypes.String.t -> unit -> t
val parse : Ezxmlm.nodes -> t option
val to_query : t -> Aws.Query.t
val to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]
val of_json : Aws.Json.t -> t