/** * _Stats shape */ export interface _Stats { /** *

Total number of object bytes scanned.

*/ BytesScanned?: number; /** *

Total number of uncompressed object bytes processed.

*/ BytesProcessed?: number; /** *

Total number of bytes of records payload data returned.

*/ BytesReturned?: number; } export declare type _UnmarshalledStats = _Stats;