Module Values.DescribeLunaClientResponseSource

This is documentation for AWS CloudHSM Classic. For more information, see AWS CloudHSM Classic FAQs, the AWS CloudHSM Classic User Guide, and the AWS CloudHSM Classic API Reference. For information about the current version of AWS CloudHSM, see AWS CloudHSM, the AWS CloudHSM User Guide, and the AWS CloudHSM API Reference. Retrieves information about an HSM client.

Sourcetype nonrec t = {
  1. clientArn : ClientArn.t option;
    (*

    The ARN of the client.

    *)
  2. certificate : Certificate.t option;
    (*

    The certificate installed on the HSMs used by this client.

    *)
  3. certificateFingerprint : CertificateFingerprint.t option;
    (*

    The certificate fingerprint.

    *)
  4. lastModifiedTimestamp : Timestamp.t option;
    (*

    The date and time the client was last modified.

    *)
  5. label : Label.t option;
    (*

    The label of the client.

    *)
}
Sourcetype nonrec error = [
  1. | `CloudHsmInternalException of CloudHsmInternalException.t
  2. | `CloudHsmServiceException of CloudHsmServiceException.t
  3. | `InvalidRequestException of InvalidRequestException.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?clientArn:??? -> ?certificate:??? -> ?certificateFingerprint:??? -> ?lastModifiedTimestamp:??? -> ?label:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `CloudHsmInternalException of unit | `CloudHsmServiceException of CloudHsmServiceException.t | `InvalidRequestException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `CloudHsmInternalException of unit | `CloudHsmServiceException of CloudHsmServiceException.t | `InvalidRequestException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ClientArn.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