Class: Aws::Lambda::Types::ModeNotSupportedException
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::ModeNotSupportedException
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambda/types.rb
Overview
The Lambda function doesn’t support the invocation mode requested. For example, calling ‘Invoke` with `InvocationType=RequestResponse` on a function configured for asynchronous-only invocation, or vice versa. For more information about invocation types, see [Invoking Lambda functions].
[1]: docs.aws.amazon.com/lambda/latest/dg/invocation-options.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#message ⇒ String
The exception message.
-
#type ⇒ String
The exception type.
Instance Attribute Details
#message ⇒ String
The exception message.
7102 7103 7104 7105 7106 7107 |
# File 'lib/aws-sdk-lambda/types.rb', line 7102 class ModeNotSupportedException < Struct.new( :type, :message) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The exception type.
7102 7103 7104 7105 7106 7107 |
# File 'lib/aws-sdk-lambda/types.rb', line 7102 class ModeNotSupportedException < Struct.new( :type, :message) SENSITIVE = [] include Aws::Structure end |