Interface IParallelJsonataProps
Properties for defining a Parallel state that using JSONata.
Inherited Members
Namespace: Amazon.CDK.AWS.StepFunctions
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IParallelJsonataProps : IStateBaseProps, IAssignableStateOptions, IJsonataCommonOptions
Syntax (vb)
Public Interface IParallelJsonataProps Inherits IStateBaseProps, IAssignableStateOptions, 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 arguments_;
var assign;
var outputs;
var parallelJsonataProps = new ParallelJsonataProps {
Arguments = new Dictionary<string, object> {
{ "argumentsKey", arguments_ }
},
Assign = new Dictionary<string, object> {
{ "assignKey", assign }
},
Comment = "comment",
Outputs = outputs,
QueryLanguage = QueryLanguage.JSON_PATH,
StateName = "stateName"
};
Synopsis
Properties
| Arguments | Parameters pass a collection of key-value pairs, either static values or JSONata expressions that select from the input. |
Properties
Arguments
Parameters pass a collection of key-value pairs, either static values or JSONata expressions that select from the input.
IDictionary<string, object>? Arguments { get; }
Property Value
Remarks
Default: No arguments
See: https://docs.aws.amazon.com/step-functions/latest/dg/transforming-data.html