/** *

Contains details about a task that failed to submit during an execution.

*/ export interface _TaskSubmitFailedEventDetails { /** *

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 _UnmarshalledTaskSubmitFailedEventDetails = _TaskSubmitFailedEventDetails;