/** *
Contains details about a task failure event.
*/ export interface _TaskFailedEventDetails { /** *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 _UnmarshalledTaskFailedEventDetails = _TaskFailedEventDetails;