Class: Aws::States::Types::TestStateOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::TestStateOutput
- Defined in:
- gems/aws-sdk-states/lib/aws-sdk-states/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:output, :error, :cause, :inspection_data]
Instance Attribute Summary collapse
-
#cause ⇒ String
A detailed explanation of the cause for the error when the execution of a state fails.
-
#error ⇒ String
The error returned when the execution of a state fails.
-
#inspection_data ⇒ Types::InspectionData
Returns additional details about the state's execution, including its input and output data processing flow, and HTTP request and response information.
-
#next_state ⇒ String
The name of the next state to transition to.
-
#output ⇒ String
The JSON output data of the state.
-
#status ⇒ String
The execution status of the state.
Instance Attribute Details
#cause ⇒ String
A detailed explanation of the cause for the error when the execution of a state fails.
4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 4472 class TestStateOutput < Struct.new( :output, :error, :cause, :inspection_data, :next_state, :status) SENSITIVE = [:output, :error, :cause, :inspection_data] include Aws::Structure end |
#error ⇒ String
The error returned when the execution of a state fails.
4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 4472 class TestStateOutput < Struct.new( :output, :error, :cause, :inspection_data, :next_state, :status) SENSITIVE = [:output, :error, :cause, :inspection_data] include Aws::Structure end |
#inspection_data ⇒ Types::InspectionData
Returns additional details about the state's execution, including
its input and output data processing flow, and HTTP request and
response information. The inspectionLevel
request parameter
specifies which details are returned.
4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 4472 class TestStateOutput < Struct.new( :output, :error, :cause, :inspection_data, :next_state, :status) SENSITIVE = [:output, :error, :cause, :inspection_data] include Aws::Structure end |
#next_state ⇒ String
The name of the next state to transition to. If you haven't defined a next state in your definition or if the execution of the state fails, this field doesn't contain a value.
4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 4472 class TestStateOutput < Struct.new( :output, :error, :cause, :inspection_data, :next_state, :status) SENSITIVE = [:output, :error, :cause, :inspection_data] include Aws::Structure end |
#output ⇒ String
The JSON output data of the state. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.
4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 4472 class TestStateOutput < Struct.new( :output, :error, :cause, :inspection_data, :next_state, :status) SENSITIVE = [:output, :error, :cause, :inspection_data] include Aws::Structure end |
#status ⇒ String
The execution status of the state.
4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 4472 class TestStateOutput < Struct.new( :output, :error, :cause, :inspection_data, :next_state, :status) SENSITIVE = [:output, :error, :cause, :inspection_data] include Aws::Structure end |