Interface IJsonPathCommonOptions
Option properties for JSONPath state.
Namespace: Amazon.CDK.AWS.StepFunctions
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IJsonPathCommonOptions
Syntax (vb)
Public Interface IJsonPathCommonOptions
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 jsonPathCommonOptions = new JsonPathCommonOptions {
InputPath = "inputPath",
OutputPath = "outputPath"
};
Synopsis
Properties
| InputPath | JSONPath expression to select part of the state to be the input to this state. |
| OutputPath | JSONPath expression to select part of the state to be the output to this state. |
Properties
InputPath
JSONPath expression to select part of the state to be the input to this state.
string? InputPath { get; }
Property Value
Remarks
May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}.
Default: $
OutputPath
JSONPath expression to select part of the state to be the output to this state.
string? OutputPath { get; }
Property Value
Remarks
May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}.
Default: $