Module Values.HsmSource

Contains information about a hardware security module (HSM) in an CloudHSM cluster.

Sourcetype nonrec t = {
  1. availabilityZone : ExternalAz.t option;
    (*

    The Availability Zone that contains the HSM.

    *)
  2. clusterId : ClusterId.t option;
    (*

    The identifier (ID) of the cluster that contains the HSM.

    *)
  3. subnetId : SubnetId.t option;
    (*

    The subnet that contains the HSM's elastic network interface (ENI).

    *)
  4. eniId : EniId.t option;
    (*

    The identifier (ID) of the HSM's elastic network interface (ENI).

    *)
  5. eniIp : IpAddress.t option;
    (*

    The IP address of the HSM's elastic network interface (ENI).

    *)
  6. eniIpV6 : IpV6Address.t option;
    (*

    The IPv6 address (if any) of the HSM's elastic network interface (ENI).

    *)
  7. hsmId : HsmId.t option;
    (*

    The HSM's identifier (ID).

    *)
  8. hsmType : HsmType.t option;
    (*

    The type of HSM.

    *)
  9. state : HsmState.t option;
    (*

    The HSM's state.

    *)
  10. stateMessage : String_.t option;
    (*

    A description of the HSM's state.

    *)
}
Sourceval make : ?availabilityZone:??? -> ?clusterId:??? -> ?subnetId:??? -> ?eniId:??? -> ?eniIp:??? -> ?eniIpV6:??? -> ?hsmId:??? -> ?hsmType:??? -> ?state:??? -> ?stateMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ExternalAz.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