Class: Aws::States::Types::TestStateConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::TestStateConfiguration
- Defined in:
- gems/aws-sdk-states/lib/aws-sdk-states/types.rb
Overview
Contains configurations for the tested state.
Constant Summary collapse
- SENSITIVE =
[:error_caused_by_state, :map_item_reader_data]
Instance Attribute Summary collapse
-
#error_caused_by_state ⇒ String
The name of the state from which an error originates when an error is mocked for a Map or Parallel state.
-
#map_item_reader_data ⇒ String
The data read by ItemReader in Distributed Map states as found in its original source.
-
#map_iteration_failure_count ⇒ Integer
The number of Map state iterations that failed during the Map state invocation.
-
#retrier_retry_count ⇒ Integer
The number of retry attempts that have occurred for the state's Retry that applies to the mocked error.
Instance Attribute Details
#error_caused_by_state ⇒ String
The name of the state from which an error originates when an error is mocked for a Map or Parallel state.
4612 4613 4614 4615 4616 4617 4618 4619 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 4612 class TestStateConfiguration < Struct.new( :retrier_retry_count, :error_caused_by_state, :map_iteration_failure_count, :map_item_reader_data) SENSITIVE = [:error_caused_by_state, :map_item_reader_data] include Aws::Structure end |
#map_item_reader_data ⇒ String
The data read by ItemReader in Distributed Map states as found in its original source.
4612 4613 4614 4615 4616 4617 4618 4619 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 4612 class TestStateConfiguration < Struct.new( :retrier_retry_count, :error_caused_by_state, :map_iteration_failure_count, :map_item_reader_data) SENSITIVE = [:error_caused_by_state, :map_item_reader_data] include Aws::Structure end |
#map_iteration_failure_count ⇒ Integer
The number of Map state iterations that failed during the Map state invocation.
4612 4613 4614 4615 4616 4617 4618 4619 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 4612 class TestStateConfiguration < Struct.new( :retrier_retry_count, :error_caused_by_state, :map_iteration_failure_count, :map_item_reader_data) SENSITIVE = [:error_caused_by_state, :map_item_reader_data] include Aws::Structure end |
#retrier_retry_count ⇒ Integer
The number of retry attempts that have occurred for the state's Retry that applies to the mocked error.
4612 4613 4614 4615 4616 4617 4618 4619 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 4612 class TestStateConfiguration < Struct.new( :retrier_retry_count, :error_caused_by_state, :map_iteration_failure_count, :map_item_reader_data) SENSITIVE = [:error_caused_by_state, :map_item_reader_data] include Aws::Structure end |