import { ServiceException as __ServiceException__ } from "@aws-sdk/types"; /** *
Indicates that the provided AWS Lambda function is invalid, or that Amazon SES could not execute the provided function, possibly due to permissions issues. For information about giving permissions, see the Amazon SES Developer Guide.
*/ export interface InvalidLambdaFunctionException extends __ServiceException__<_InvalidLambdaFunctionExceptionDetails> { name: "InvalidLambdaFunctionException"; } export interface _InvalidLambdaFunctionExceptionDetails { /** *Indicates that the ARN of the function was not found.
*/ FunctionArn?: string; }