Class: Aws::States::Types::TaskTimedOutEventDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::TaskTimedOutEventDetails
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-states/types.rb
Overview
Contains details about a resource timeout that occurred during an execution.
Constant Summary collapse
- SENSITIVE =
[:error, :cause]
Instance Attribute Summary collapse
-
#cause ⇒ String
A more detailed explanation of the cause of the failure.
-
#error ⇒ String
The error code of the failure.
-
#resource ⇒ String
The action of the resource called by a task state.
-
#resource_type ⇒ String
The service name of the resource in a task state.
Instance Attribute Details
#cause ⇒ String
A more detailed explanation of the cause of the failure.
4251 4252 4253 4254 4255 4256 4257 4258 |
# File 'lib/aws-sdk-states/types.rb', line 4251 class TaskTimedOutEventDetails < Struct.new( :resource_type, :resource, :error, :cause) SENSITIVE = [:error, :cause] include Aws::Structure end |
#error ⇒ String
The error code of the failure.
4251 4252 4253 4254 4255 4256 4257 4258 |
# File 'lib/aws-sdk-states/types.rb', line 4251 class TaskTimedOutEventDetails < Struct.new( :resource_type, :resource, :error, :cause) SENSITIVE = [:error, :cause] include Aws::Structure end |
#resource ⇒ String
The action of the resource called by a task state.
4251 4252 4253 4254 4255 4256 4257 4258 |
# File 'lib/aws-sdk-states/types.rb', line 4251 class TaskTimedOutEventDetails < Struct.new( :resource_type, :resource, :error, :cause) SENSITIVE = [:error, :cause] include Aws::Structure end |
#resource_type ⇒ String
The service name of the resource in a task state.
4251 4252 4253 4254 4255 4256 4257 4258 |
# File 'lib/aws-sdk-states/types.rb', line 4251 class TaskTimedOutEventDetails < Struct.new( :resource_type, :resource, :error, :cause) SENSITIVE = [:error, :cause] include Aws::Structure end |