Module Values.UpdateCrlRequestSource

Updates the certificate revocation list (CRL). A CRL is a list of certificates that have been revoked by the issuing certificate authority (CA). IAM Roles Anywhere validates against the CRL before issuing credentials. Required permissions: rolesanywhere:UpdateCrl.

Sourcetype nonrec t = {
  1. crlId : Uuid.t;
    (*

    The unique identifier of the certificate revocation list (CRL).

    *)
  2. name : ResourceName.t option;
    (*

    The name of the Crl.

    *)
  3. crlData : UpdateCrlRequestCrlDataBlob.t option;
    (*

    The x509 v3 specified certificate revocation list (CRL).

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?crlData:??? -> crlId:Uuid.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Blob of UpdateCrlRequestCrlDataBlob.t | `String of Uuid.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