interface JsonataStateOptions
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.StepFunctions.JsonataStateOptions |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsstepfunctions#JsonataStateOptions |
![]() | software.amazon.awscdk.services.stepfunctions.JsonataStateOptions |
![]() | aws_cdk.aws_stepfunctions.JsonataStateOptions |
![]() | aws-cdk-lib » aws_stepfunctions » JsonataStateOptions |
Option properties for JSONata task state.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_stepfunctions as stepfunctions } from 'aws-cdk-lib';
declare const arguments_: any;
declare const outputs: any;
const jsonataStateOptions: stepfunctions.JsonataStateOptions = {
arguments: arguments_,
outputs: outputs,
};
Properties
Name | Type | Description |
---|---|---|
arguments? | any | Parameters pass a collection of key-value pairs, either static values or JSONata expressions that select from the input. |
outputs? | any | Used to specify and transform output from the state. |
arguments?
Type:
any
(optional, default: No arguments)
Parameters pass a collection of key-value pairs, either static values or JSONata expressions that select from the input.
See also: https://docs.aws.amazon.com/step-functions/latest/dg/transforming-data.html
outputs?
Type:
any
(optional, default: $states.result or $states.errorOutput)
Used to specify and transform output from the state.
When specified, the value overrides the state output default. The output field accepts any JSON value (object, array, string, number, boolean, null). Any string value, including those inside objects or arrays, will be evaluated as JSONata if surrounded by {% %} characters. Output also accepts a JSONata expression directly.
See also: https://docs.aws.amazon.com/step-functions/latest/dg/concepts-input-output-filtering.html