Class: Aws::SES::Types::InvalidLambdaFunctionException
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::InvalidLambdaFunctionException
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ses/types.rb
Overview
Indicates that the provided Amazon Web Services 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].
[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#function_arn ⇒ String
Indicates that the ARN of the function was not found.
Instance Attribute Details
#function_arn ⇒ String
Indicates that the ARN of the function was not found.
2201 2202 2203 2204 2205 |
# File 'lib/aws-sdk-ses/types.rb', line 2201 class InvalidLambdaFunctionException < Struct.new( :function_arn) SENSITIVE = [] include Aws::Structure end |