/** *
Describes Challenge-Handshake Authentication Protocol (CHAP) information that supports authentication between your gateway and iSCSI initiators.
*/ export interface _ChapInfo { /** *The Amazon Resource Name (ARN) of the volume.
Valid Values: 50 to 500 lowercase letters, numbers, periods (.), and hyphens (-).
*/ TargetARN?: string; /** *The secret key that the initiator (for example, the Windows client) must provide to participate in mutual CHAP with the target.
*/ SecretToAuthenticateInitiator?: string; /** *The iSCSI initiator that connects to the target.
*/ InitiatorName?: string; /** *The secret key that the target must provide to participate in mutual CHAP with the initiator (e.g. Windows client).
*/ SecretToAuthenticateTarget?: string; } export declare type _UnmarshalledChapInfo = _ChapInfo;