/** *
Contains one or more certificates or a certificate signing request (CSR).
*/ export interface _Certificates { /** *The cluster's certificate signing request (CSR). The CSR exists only when the cluster's state is UNINITIALIZED.
The HSM certificate issued (signed) by the HSM hardware.
*/ HsmCertificate?: string; /** *The HSM hardware certificate issued (signed) by AWS CloudHSM.
*/ AwsHardwareCertificate?: string; /** *The HSM hardware certificate issued (signed) by the hardware manufacturer.
*/ ManufacturerHardwareCertificate?: string; /** *The cluster certificate issued (signed) by the issuing certificate authority (CA) of the cluster's owner.
*/ ClusterCertificate?: string; } export declare type _UnmarshalledCertificates = _Certificates;