Module Values.DnssecSigningAttributesSource

Information about a delegation signer (DS) record that was created in the registry by AssociateDelegationSignerToDomain.

Sourcetype nonrec t = {
  1. algorithm : NullableInteger.t option;
    (*

    Algorithm which was used to generate the digest from the public key.

    *)
  2. flags : NullableInteger.t option;
    (*

    Defines the type of key. It can be either a KSK (key-signing-key, value 257) or ZSK (zone-signing-key, value 256). Using KSK is always encouraged. Only use ZSK if your DNS provider isn't Route 53 and you don’t have KSK available. If you have KSK and ZSK keys, always use KSK to create a delegations signer (DS) record. If you have ZSK keys only – use ZSK to create a DS record.

    *)
  3. publicKey : DnssecPublicKey.t option;
    (*

    The base64-encoded public key part of the key pair that is passed to the registry.

    *)
}
Sourceval make : ?algorithm:??? -> ?flags:??? -> ?publicKey:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of NullableInteger.t | `String of DnssecPublicKey.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