Module Values.DescribeHsmResponseSource

Contains the output of the DescribeHsm operation.

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

    The ARN of the HSM.

    *)
  2. status : HsmStatus.t option;
    (*

    The status of the HSM.

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

    Contains additional information about the status of the HSM.

    *)
  4. availabilityZone : AZ.t option;
    (*

    The Availability Zone that the HSM is in.

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

    The identifier of the elastic network interface (ENI) attached to the HSM.

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

    The IP address assigned to the HSM's ENI.

    *)
  7. subscriptionType : SubscriptionType.t option;
  8. subscriptionStartDate : Timestamp.t option;
    (*

    The subscription start date.

    *)
  9. subscriptionEndDate : Timestamp.t option;
    (*

    The subscription end date.

    *)
  10. vpcId : VpcId.t option;
    (*

    The identifier of the VPC that the HSM is in.

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

    The identifier of the subnet that the HSM is in.

    *)
  12. iamRoleArn : IamRoleArn.t option;
    (*

    The ARN of the IAM role assigned to the HSM.

    *)
  13. serialNumber : HsmSerialNumber.t option;
    (*

    The serial number of the HSM.

    *)
  14. vendorName : String_.t option;
    (*

    The name of the HSM vendor.

    *)
  15. hsmType : String_.t option;
    (*

    The HSM model type.

    *)
  16. softwareVersion : String_.t option;
    (*

    The HSM software version.

    *)
  17. sshPublicKey : SshKey.t option;
    (*

    The public SSH key.

    *)
  18. sshKeyLastUpdated : Timestamp.t option;
    (*

    The date and time that the SSH key was last updated.

    *)
  19. serverCertUri : String_.t option;
    (*

    The URI of the certificate server.

    *)
  20. serverCertLastUpdated : Timestamp.t option;
    (*

    The date and time that the server certificate was last updated.

    *)
  21. partitions : PartitionList.t option;
    (*

    The list of partitions on the HSM.

    *)
}
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 : ?hsmArn:??? -> ?status:??? -> ?statusDetails:??? -> ?availabilityZone:??? -> ?eniId:??? -> ?eniIp:??? -> ?subscriptionType:??? -> ?subscriptionStartDate:??? -> ?subscriptionEndDate:??? -> ?vpcId:??? -> ?subnetId:??? -> ?iamRoleArn:??? -> ?serialNumber:??? -> ?vendorName:??? -> ?hsmType:??? -> ?softwareVersion:??? -> ?sshPublicKey:??? -> ?sshKeyLastUpdated:??? -> ?serverCertUri:??? -> ?serverCertLastUpdated:??? -> ?partitions:??? -> 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 * [> `Enum of string | `List of [> `String of PartitionArn.t ] list | `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