Module Values.CrlDetailSource

The state of the certificate revocation list (CRL) after a read or write operation.

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

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

    *)
  2. crlArn : String_.t option;
    (*

    The ARN of the certificate revocation list (CRL).

    *)
  3. name : String_.t option;
    (*

    The name of the certificate revocation list (CRL).

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

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

    *)
  5. crlData : Blob.t option;
    (*

    The state of the certificate revocation list (CRL) after a read or write operation.

    *)
  6. trustAnchorArn : String_.t option;
    (*

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

    *)
  7. createdAt : SyntheticTimestamp_date_time.t option;
    (*

    The ISO-8601 timestamp when the certificate revocation list (CRL) was created.

    *)
  8. updatedAt : SyntheticTimestamp_date_time.t option;
    (*

    The ISO-8601 timestamp when the certificate revocation list (CRL) was last updated.

    *)
}
Sourceval make : ?crlId:??? -> ?crlArn:??? -> ?name:??? -> ?enabled:??? -> ?crlData:??? -> ?trustAnchorArn:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Blob of Blob.t | `Boolean of Boolean.t | `String of Uuid.t | `Timestamp of SyntheticTimestamp_date_time.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