/** *
Contains details about a resource timeout that occurred during an execution.
*/ export interface _TaskTimedOutEventDetails { /** *The action of the resource called by a task state.
*/ resourceType: string; /** *The service name of the resource in a task state.
*/ resource: string; /** *The error code of the failure.
*/ error?: string; /** *A more detailed explanation of the cause of the failure.
*/ cause?: string; } export declare type _UnmarshalledTaskTimedOutEventDetails = _TaskTimedOutEventDetails;