Module Values.DelegationSetSource

A complex type that lists the name servers in a delegation set, as well as the CallerReference and the ID for the delegation set.

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

    The ID that Amazon Route 53 assigns to a reusable delegation set.

    *)
  2. callerReference : Nonce.t option;
    (*

    The value that you specified for CallerReference when you created the reusable delegation set.

    *)
  3. nameServers : DelegationSetNameServers.t option;
    (*

    A complex type that contains a list of the authoritative name servers for a hosted zone or for a reusable delegation set.

    *)
}
Sourceval make : ?id:??? -> ?callerReference:??? -> ?nameServers:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of DNSName.t ] list | `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