Class: Aws::States::Types::LambdaFunctionScheduleFailedEventDetails

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-states/lib/aws-sdk-states/types.rb

Overview

Contains details about a failed Lambda function schedule event that occurred during an execution.

Constant Summary collapse

SENSITIVE =
[:error, :cause]

Instance Attribute Summary collapse

Instance Attribute Details

#causeString

A more detailed explanation of the cause of the failure.

Returns:

  • (String)


2131
2132
2133
2134
2135
2136
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2131

class LambdaFunctionScheduleFailedEventDetails < Struct.new(
  :error,
  :cause)
  SENSITIVE = [:error, :cause]
  include Aws::Structure
end

#errorString

The error code of the failure.

Returns:

  • (String)


2131
2132
2133
2134
2135
2136
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2131

class LambdaFunctionScheduleFailedEventDetails < Struct.new(
  :error,
  :cause)
  SENSITIVE = [:error, :cause]
  include Aws::Structure
end