/** *
Contains details about a lambda function that failed to start during an execution.
*/ export interface _LambdaFunctionStartFailedEventDetails { /** *The error code of the failure.
*/ error?: string; /** *A more detailed explanation of the cause of the failure.
*/ cause?: string; } export declare type _UnmarshalledLambdaFunctionStartFailedEventDetails = _LambdaFunctionStartFailedEventDetails;