/** *
Lists iSCSI information about a volume.
*/ export interface _VolumeiSCSIAttributes { /** *The Amazon Resource Name (ARN) of the volume target.
*/ TargetARN?: string; /** *The network interface identifier.
*/ NetworkInterfaceId?: string; /** *The port used to communicate with iSCSI targets.
*/ NetworkInterfacePort?: number; /** *The logical disk number.
*/ LunNumber?: number; /** *Indicates whether mutual CHAP is enabled for the iSCSI target.
*/ ChapEnabled?: boolean; } export declare type _UnmarshalledVolumeiSCSIAttributes = _VolumeiSCSIAttributes;