Class: Aws::States::Types::InspectionData
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::InspectionData
- Defined in:
- gems/aws-sdk-states/lib/aws-sdk-states/types.rb
Overview
Contains additional details about the state's execution, including its input and output data processing flow, and HTTP request and response information.
Constant Summary collapse
- SENSITIVE =
[:input, :after_arguments, :after_input_path, :after_parameters, :result, :after_result_selector, :after_result_path, :variables]
Instance Attribute Summary collapse
-
#after_arguments ⇒ String
The input after Step Functions applies an Arguments filter.
-
#after_input_path ⇒ String
The input after Step Functions applies the [InputPath][1] filter.
-
#after_parameters ⇒ String
The effective input after Step Functions applies the [Parameters][1] filter.
-
#after_result_path ⇒ String
The effective result combined with the raw state input after Step Functions applies the [ResultPath][1] filter.
-
#after_result_selector ⇒ String
The effective result after Step Functions applies the [ResultSelector][1] filter.
-
#input ⇒ String
The raw state input.
-
#request ⇒ Types::InspectionDataRequest
The raw HTTP request that is sent when you test an HTTP Task.
-
#response ⇒ Types::InspectionDataResponse
The raw HTTP response that is returned when you test an HTTP Task.
-
#result ⇒ String
The state's raw result.
-
#variables ⇒ String
JSON string that contains the set of workflow variables after execution of the state.
Instance Attribute Details
#after_arguments ⇒ String
The input after Step Functions applies an Arguments filter. This event will only be present when QueryLanguage for the state machine or individual states is set to JSONata. For more info, see Transforming data with Step Functions.
2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2164 class InspectionData < Struct.new( :input, :after_arguments, :after_input_path, :after_parameters, :result, :after_result_selector, :after_result_path, :request, :response, :variables) SENSITIVE = [:input, :after_arguments, :after_input_path, :after_parameters, :result, :after_result_selector, :after_result_path, :variables] include Aws::Structure end |
#after_input_path ⇒ String
The input after Step Functions applies the InputPath filter. Not populated when QueryLanguage is JSONata.
2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2164 class InspectionData < Struct.new( :input, :after_arguments, :after_input_path, :after_parameters, :result, :after_result_selector, :after_result_path, :request, :response, :variables) SENSITIVE = [:input, :after_arguments, :after_input_path, :after_parameters, :result, :after_result_selector, :after_result_path, :variables] include Aws::Structure end |
#after_parameters ⇒ String
The effective input after Step Functions applies the Parameters filter. Not populated when QueryLanguage is JSONata.
2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2164 class InspectionData < Struct.new( :input, :after_arguments, :after_input_path, :after_parameters, :result, :after_result_selector, :after_result_path, :request, :response, :variables) SENSITIVE = [:input, :after_arguments, :after_input_path, :after_parameters, :result, :after_result_selector, :after_result_path, :variables] include Aws::Structure end |
#after_result_path ⇒ String
The effective result combined with the raw state input after Step Functions applies the ResultPath filter. Not populated when QueryLanguage is JSONata.
2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2164 class InspectionData < Struct.new( :input, :after_arguments, :after_input_path, :after_parameters, :result, :after_result_selector, :after_result_path, :request, :response, :variables) SENSITIVE = [:input, :after_arguments, :after_input_path, :after_parameters, :result, :after_result_selector, :after_result_path, :variables] include Aws::Structure end |
#after_result_selector ⇒ String
The effective result after Step Functions applies the ResultSelector filter. Not populated when QueryLanguage is JSONata.
2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2164 class InspectionData < Struct.new( :input, :after_arguments, :after_input_path, :after_parameters, :result, :after_result_selector, :after_result_path, :request, :response, :variables) SENSITIVE = [:input, :after_arguments, :after_input_path, :after_parameters, :result, :after_result_selector, :after_result_path, :variables] include Aws::Structure end |
#input ⇒ String
The raw state input.
2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2164 class InspectionData < Struct.new( :input, :after_arguments, :after_input_path, :after_parameters, :result, :after_result_selector, :after_result_path, :request, :response, :variables) SENSITIVE = [:input, :after_arguments, :after_input_path, :after_parameters, :result, :after_result_selector, :after_result_path, :variables] include Aws::Structure end |
#request ⇒ Types::InspectionDataRequest
The raw HTTP request that is sent when you test an HTTP Task.
2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2164 class InspectionData < Struct.new( :input, :after_arguments, :after_input_path, :after_parameters, :result, :after_result_selector, :after_result_path, :request, :response, :variables) SENSITIVE = [:input, :after_arguments, :after_input_path, :after_parameters, :result, :after_result_selector, :after_result_path, :variables] include Aws::Structure end |
#response ⇒ Types::InspectionDataResponse
The raw HTTP response that is returned when you test an HTTP Task.
2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2164 class InspectionData < Struct.new( :input, :after_arguments, :after_input_path, :after_parameters, :result, :after_result_selector, :after_result_path, :request, :response, :variables) SENSITIVE = [:input, :after_arguments, :after_input_path, :after_parameters, :result, :after_result_selector, :after_result_path, :variables] include Aws::Structure end |
#result ⇒ String
The state's raw result.
2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2164 class InspectionData < Struct.new( :input, :after_arguments, :after_input_path, :after_parameters, :result, :after_result_selector, :after_result_path, :request, :response, :variables) SENSITIVE = [:input, :after_arguments, :after_input_path, :after_parameters, :result, :after_result_selector, :after_result_path, :variables] include Aws::Structure end |
#variables ⇒ String
JSON string that contains the set of workflow variables after execution of the state. The set will include variables assigned in the state and variables set up as test state input.
2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2164 class InspectionData < Struct.new( :input, :after_arguments, :after_input_path, :after_parameters, :result, :after_result_selector, :after_result_path, :request, :response, :variables) SENSITIVE = [:input, :after_arguments, :after_input_path, :after_parameters, :result, :after_result_selector, :after_result_path, :variables] include Aws::Structure end |