Class: Aws::Lambda::Types::EventError

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-lambda/types.rb

Overview

Error information for an event.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#payloadTypes::ErrorObject

The error payload.

Returns:



3085
3086
3087
3088
3089
3090
# File 'lib/aws-sdk-lambda/types.rb', line 3085

class EventError < Struct.new(
  :payload,
  :truncated)
  SENSITIVE = []
  include Aws::Structure
end

#truncatedBoolean

Indicates if the error payload was truncated due to size limits.

Returns:

  • (Boolean)


3085
3086
3087
3088
3089
3090
# File 'lib/aws-sdk-lambda/types.rb', line 3085

class EventError < Struct.new(
  :payload,
  :truncated)
  SENSITIVE = []
  include Aws::Structure
end