/** * A response returned by an Upload Object Using Signed URL operation when processing is yet to be completed. * @export * @interface Result */ export interface Result { /** * A human friendly description of the state of processing. * @type {string} * @memberof Result */ 'result': string; }