/** *

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

*/ export interface _Hsm { /** *

The Availability Zone that contains the HSM.

*/ AvailabilityZone?: string; /** *

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

*/ ClusterId?: string; /** *

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

*/ SubnetId?: string; /** *

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

*/ EniId?: string; /** *

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

*/ EniIp?: string; /** *

The HSM's identifier (ID).

*/ HsmId: string; /** *

The HSM's state.

*/ State?: "CREATE_IN_PROGRESS" | "ACTIVE" | "DEGRADED" | "DELETE_IN_PROGRESS" | "DELETED" | string; /** *

A description of the HSM's state.

*/ StateMessage?: string; } export declare type _UnmarshalledHsm = _Hsm;