/** *
Contains details about a lambda function scheduled during an execution.
*/ export interface _LambdaFunctionScheduledEventDetails { /** *The Amazon Resource Name (ARN) of the scheduled lambda function.
*/ resource: string; /** *The JSON data input to the lambda function.
*/ input?: string; /** *The maximum allowed duration of the lambda function.
*/ timeoutInSeconds?: number; } export declare type _UnmarshalledLambdaFunctionScheduledEventDetails = _LambdaFunctionScheduledEventDetails;