interface MapBaseJsonataOptions
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.StepFunctions.MapBaseJsonataOptions |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsstepfunctions#MapBaseJsonataOptions |
![]() | software.amazon.awscdk.services.stepfunctions.MapBaseJsonataOptions |
![]() | aws_cdk.aws_stepfunctions.MapBaseJsonataOptions |
![]() | aws-cdk-lib » aws_stepfunctions » MapBaseJsonataOptions |
Base properties for defining a Map state that using JSONata.
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 outputs: any;
declare const provideItems: stepfunctions.ProvideItems;
const mapBaseJsonataOptions: stepfunctions.MapBaseJsonataOptions = {
items: provideItems,
outputs: outputs,
};
Properties
Name | Type | Description |
---|---|---|
items? | Provide | The array that the Map state will iterate over. |
outputs? | any | Used to specify and transform output from the state. |
items?
Type:
Provide
(optional, default: The state input as is.)
The array that the Map state will iterate over.
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.