Class: Aws::States::Types::InspectionErrorDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::InspectionErrorDetails
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-states/types.rb
Overview
An object containing data about a handled exception in the tested state.
Constant Summary collapse
- SENSITIVE =
[:catch_index, :retry_index, :retry_backoff_interval_seconds]
Instance Attribute Summary collapse
-
#catch_index ⇒ Integer
The array index of the Catch which handled the exception.
-
#retry_backoff_interval_seconds ⇒ Integer
The duration in seconds of the backoff for a retry on a failed state invocation.
-
#retry_index ⇒ Integer
The array index of the Retry which handled the exception.
Instance Attribute Details
#catch_index ⇒ Integer
The array index of the Catch which handled the exception.
2319 2320 2321 2322 2323 2324 2325 |
# File 'lib/aws-sdk-states/types.rb', line 2319 class InspectionErrorDetails < Struct.new( :catch_index, :retry_index, :retry_backoff_interval_seconds) SENSITIVE = [:catch_index, :retry_index, :retry_backoff_interval_seconds] include Aws::Structure end |
#retry_backoff_interval_seconds ⇒ Integer
The duration in seconds of the backoff for a retry on a failed state invocation.
2319 2320 2321 2322 2323 2324 2325 |
# File 'lib/aws-sdk-states/types.rb', line 2319 class InspectionErrorDetails < Struct.new( :catch_index, :retry_index, :retry_backoff_interval_seconds) SENSITIVE = [:catch_index, :retry_index, :retry_backoff_interval_seconds] include Aws::Structure end |
#retry_index ⇒ Integer
The array index of the Retry which handled the exception.
2319 2320 2321 2322 2323 2324 2325 |
# File 'lib/aws-sdk-states/types.rb', line 2319 class InspectionErrorDetails < Struct.new( :catch_index, :retry_index, :retry_backoff_interval_seconds) SENSITIVE = [:catch_index, :retry_index, :retry_backoff_interval_seconds] include Aws::Structure end |