/** *

Contains details about a lambda function timeout that occurred during an execution.

*/ export interface _LambdaFunctionTimedOutEventDetails { /** *

The error code of the failure.

*/ error?: string; /** *

A more detailed explanation of the cause of the timeout.

*/ cause?: string; } export declare type _UnmarshalledLambdaFunctionTimedOutEventDetails = _LambdaFunctionTimedOutEventDetails;