Module Values.DescribeHsmRequestSource

Contains the inputs for the DescribeHsm operation.

Sourcetype nonrec t = {
  1. hsmArn : HsmArn.t option;
    (*

    The ARN of the HSM. Either the HsmArn or the SerialNumber parameter must be specified.

    *)
  2. hsmSerialNumber : HsmSerialNumber.t option;
    (*

    The serial number of the HSM. Either the HsmArn or the HsmSerialNumber parameter must be specified.

    *)
}
Sourceval make : ?hsmArn:??? -> ?hsmSerialNumber:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of HsmArn.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