aws_sdk_sfn/client/
test_state.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`TestState`](crate::operation::test_state::builders::TestStateFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`definition(impl Into<String>)`](crate::operation::test_state::builders::TestStateFluentBuilder::definition) / [`set_definition(Option<String>)`](crate::operation::test_state::builders::TestStateFluentBuilder::set_definition):<br>required: **true**<br><p>The <a href="https://docs.aws.amazon.com/step-functions/latest/dg/concepts-amazon-states-language.html">Amazon States Language</a> (ASL) definition of the state or state machine.</p><br>
7    ///   - [`role_arn(impl Into<String>)`](crate::operation::test_state::builders::TestStateFluentBuilder::role_arn) / [`set_role_arn(Option<String>)`](crate::operation::test_state::builders::TestStateFluentBuilder::set_role_arn):<br>required: **false**<br><p>The Amazon Resource Name (ARN) of the execution role with the required IAM permissions for the state.</p><br>
8    ///   - [`input(impl Into<String>)`](crate::operation::test_state::builders::TestStateFluentBuilder::input) / [`set_input(Option<String>)`](crate::operation::test_state::builders::TestStateFluentBuilder::set_input):<br>required: **false**<br><p>A string that contains the JSON input data for the state.</p><br>
9    ///   - [`inspection_level(InspectionLevel)`](crate::operation::test_state::builders::TestStateFluentBuilder::inspection_level) / [`set_inspection_level(Option<InspectionLevel>)`](crate::operation::test_state::builders::TestStateFluentBuilder::set_inspection_level):<br>required: **false**<br><p>Determines the values to return when a state is tested. You can specify one of the following types:</p> <ul>  <li>   <p><code>INFO</code>: Shows the final state output. By default, Step Functions sets <code>inspectionLevel</code> to <code>INFO</code> if you don't specify a level.</p></li>  <li>   <p><code>DEBUG</code>: Shows the final state output along with the input and output data processing result.</p></li>  <li>   <p><code>TRACE</code>: Shows the HTTP request and response for an HTTP Task. This level also shows the final state output along with the input and output data processing result.</p></li> </ul> <p>Each of these levels also provide information about the status of the state execution and the next state to transition to.</p><br>
10    ///   - [`reveal_secrets(bool)`](crate::operation::test_state::builders::TestStateFluentBuilder::reveal_secrets) / [`set_reveal_secrets(Option<bool>)`](crate::operation::test_state::builders::TestStateFluentBuilder::set_reveal_secrets):<br>required: **false**<br><p>Specifies whether or not to include secret information in the test result. For HTTP Tasks, a secret includes the data that an EventBridge connection adds to modify the HTTP request headers, query parameters, and body. Step Functions doesn't omit any information included in the state definition or the HTTP response.</p> <p>If you set <code>revealSecrets</code> to <code>true</code>, you must make sure that the IAM user that calls the <code>TestState</code> API has permission for the <code>states:RevealSecrets</code> action. For an example of IAM policy that sets the <code>states:RevealSecrets</code> permission, see <a href="https://docs.aws.amazon.com/step-functions/latest/dg/test-state-isolation.html#test-state-permissions">IAM permissions to test a state</a>. Without this permission, Step Functions throws an access denied error.</p> <p>By default, <code>revealSecrets</code> is set to <code>false</code>.</p><br>
11    ///   - [`variables(impl Into<String>)`](crate::operation::test_state::builders::TestStateFluentBuilder::variables) / [`set_variables(Option<String>)`](crate::operation::test_state::builders::TestStateFluentBuilder::set_variables):<br>required: **false**<br><p>JSON object literal that sets variables used in the state under test. Object keys are the variable names and values are the variable values.</p><br>
12    ///   - [`state_name(impl Into<String>)`](crate::operation::test_state::builders::TestStateFluentBuilder::state_name) / [`set_state_name(Option<String>)`](crate::operation::test_state::builders::TestStateFluentBuilder::set_state_name):<br>required: **false**<br><p>Denotes the particular state within a state machine definition to be tested. If this field is specified, the <code>definition</code> must contain a fully-formed state machine definition.</p><br>
13    ///   - [`mock(MockInput)`](crate::operation::test_state::builders::TestStateFluentBuilder::mock) / [`set_mock(Option<MockInput>)`](crate::operation::test_state::builders::TestStateFluentBuilder::set_mock):<br>required: **false**<br><p>Defines a mocked result or error for the state under test.</p> <p>A mock can only be specified for Task, Map, or Parallel states. If it is specified for another state type, an exception will be thrown.</p><br>
14    ///   - [`context(impl Into<String>)`](crate::operation::test_state::builders::TestStateFluentBuilder::context) / [`set_context(Option<String>)`](crate::operation::test_state::builders::TestStateFluentBuilder::set_context):<br>required: **false**<br><p>A JSON string representing a valid Context object for the state under test. This field may only be specified if a mock is specified in the same request.</p><br>
15    ///   - [`state_configuration(TestStateConfiguration)`](crate::operation::test_state::builders::TestStateFluentBuilder::state_configuration) / [`set_state_configuration(Option<TestStateConfiguration>)`](crate::operation::test_state::builders::TestStateFluentBuilder::set_state_configuration):<br>required: **false**<br><p>Contains configurations for the state under test.</p><br>
16    /// - On success, responds with [`TestStateOutput`](crate::operation::test_state::TestStateOutput) with field(s):
17    ///   - [`output(Option<String>)`](crate::operation::test_state::TestStateOutput::output): <p>The JSON output data of the state. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.</p>
18    ///   - [`error(Option<String>)`](crate::operation::test_state::TestStateOutput::error): <p>The error returned when the execution of a state fails.</p>
19    ///   - [`cause(Option<String>)`](crate::operation::test_state::TestStateOutput::cause): <p>A detailed explanation of the cause for the error when the execution of a state fails.</p>
20    ///   - [`inspection_data(Option<InspectionData>)`](crate::operation::test_state::TestStateOutput::inspection_data): <p>Returns additional details about the state's execution, including its input and output data processing flow, and HTTP request and response information. The <code>inspectionLevel</code> request parameter specifies which details are returned.</p>
21    ///   - [`next_state(Option<String>)`](crate::operation::test_state::TestStateOutput::next_state): <p>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.</p>
22    ///   - [`status(Option<TestExecutionStatus>)`](crate::operation::test_state::TestStateOutput::status): <p>The execution status of the state.</p>
23    /// - On failure, responds with [`SdkError<TestStateError>`](crate::operation::test_state::TestStateError)
24    pub fn test_state(&self) -> crate::operation::test_state::builders::TestStateFluentBuilder {
25        crate::operation::test_state::builders::TestStateFluentBuilder::new(self.handle.clone())
26    }
27}