Class JsonataCommonOptions
Option properties for JSONata state.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.StepFunctions
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class JsonataCommonOptions : Object, IJsonataCommonOptions
Syntax (vb)
Public Class JsonataCommonOptions
Inherits Object
Implements IJsonataCommonOptions
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.StepFunctions;
var outputs;
var jsonataCommonOptions = new JsonataCommonOptions {
Outputs = outputs
};
Synopsis
Constructors
Jsonata |
Properties
Outputs | Used to specify and transform output from the state. |
Constructors
JsonataCommonOptions()
public JsonataCommonOptions()
Properties
Outputs
Used to specify and transform output from the state.
public object Outputs { get; set; }
Property Value
System.
Remarks
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.
Default: - $states.result or $states.errorOutput
See: https://docs.aws.amazon.com/step-functions/latest/dg/concepts-input-output-filtering.html