Class: Aws::States::Types::ActivityTimedOutEventDetails

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

Overview

Contains details about an activity timeout 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 timeout.

Returns:

  • (String)


203
204
205
206
207
208
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 203

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

#errorString

The error code of the failure.

Returns:

  • (String)


203
204
205
206
207
208
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 203

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