Module Values.GetDNSSECResponseSource

Returns information about DNSSEC for a specific hosted zone, including the key-signing keys (KSKs) in the hosted zone.

Sourcetype nonrec t = {
  1. status : DNSSECStatus.t option;
    (*

    A string representing the status of DNSSEC.

    *)
  2. keySigningKeys : KeySigningKeys.t option;
    (*

    The key-signing keys (KSKs) in your account.

    *)
}
Sourcetype nonrec error = [
  1. | `InvalidArgument of InvalidArgument.t
  2. | `InvalidInput of InvalidInput.t
  3. | `NoSuchHostedZone of NoSuchHostedZone.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?status:??? -> ?keySigningKeys:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InvalidArgument of InvalidArgument.t | `InvalidInput of InvalidInput.t | `NoSuchHostedZone of NoSuchHostedZone.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InvalidArgument of InvalidArgument.t | `InvalidInput of InvalidInput.t | `NoSuchHostedZone of NoSuchHostedZone.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Integer of SigningKeyInteger.t | `String of SigningKeyName.t | `Timestamp of TimeStamp.t ]) list ] list | `Structure of (string * [> `String of ServeSignature.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