Module Values.ImportCrlRequestSource

Imports the certificate revocation list (CRL). A CRL is a list of certificates that have been revoked by the issuing certificate Authority (CA).In order to be properly imported, a CRL must be in PEM format. IAM Roles Anywhere validates against the CRL before issuing credentials. Required permissions: rolesanywhere:ImportCrl.

Sourcetype nonrec t = {
  1. name : ResourceName.t;
    (*

    The name of the certificate revocation list (CRL).

    *)
  2. crlData : ImportCrlRequestCrlDataBlob.t;
    (*

    The x509 v3 specified certificate revocation list (CRL).

    *)
  3. enabled : Boolean.t option;
    (*

    Specifies whether the certificate revocation list (CRL) is enabled.

    *)
  4. tags : TagList.t option;
    (*

    A list of tags to attach to the certificate revocation list (CRL).

    *)
  5. trustAnchorArn : TrustAnchorArn.t;
    (*

    The ARN of the TrustAnchor the certificate revocation list (CRL) will provide revocation for.

    *)
}
Sourceval context_ : string
Sourceval make : ?enabled:??? -> ?tags:??? -> name:ResourceName.t -> crlData:ImportCrlRequestCrlDataBlob.t -> trustAnchorArn:TrustAnchorArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Blob of ImportCrlRequestCrlDataBlob.t | `Boolean of Boolean.t | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of ResourceName.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