Class: Aws::States::Types::TaskSubmitFailedEventDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::TaskSubmitFailedEventDetails
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-states/types.rb
Overview
Contains details about a task that failed to submit 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.
4144 4145 4146 4147 4148 4149 4150 4151 |
# File 'lib/aws-sdk-states/types.rb', line 4144 class TaskSubmitFailedEventDetails < Struct.new( :resource_type, :resource, :error, :cause) SENSITIVE = [:error, :cause] include Aws::Structure end |
#error ⇒ String
The error code of the failure.
4144 4145 4146 4147 4148 4149 4150 4151 |
# File 'lib/aws-sdk-states/types.rb', line 4144 class TaskSubmitFailedEventDetails < 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.
4144 4145 4146 4147 4148 4149 4150 4151 |
# File 'lib/aws-sdk-states/types.rb', line 4144 class TaskSubmitFailedEventDetails < 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.
4144 4145 4146 4147 4148 4149 4150 4151 |
# File 'lib/aws-sdk-states/types.rb', line 4144 class TaskSubmitFailedEventDetails < Struct.new( :resource_type, :resource, :error, :cause) SENSITIVE = [:error, :cause] include Aws::Structure end |