/** *

Contains details about the execution timeout that occurred during the execution.

*/ export interface _ExecutionTimedOutEventDetails { /** *

The error code of the failure.

*/ error?: string; /** *

A more detailed explanation of the cause of the timeout.

*/ cause?: string; } export declare type _UnmarshalledExecutionTimedOutEventDetails = _ExecutionTimedOutEventDetails;