/** *
Contains details about a task that failed to start during an execution.
*/ export interface _TaskStartFailedEventDetails { /** *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 _UnmarshalledTaskStartFailedEventDetails = _TaskStartFailedEventDetails;