You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Make an intrinsic States.ArrayContains expression
119
+
*
120
+
* Use this function to determine if a specific value is present in an array. For example, you can use this function to detect if there was an error in a Map state iteration.
* Use this function to get the length of an array.
165
+
* Use this function to remove duplicate values from an array and returns an array containing only unique elements. This function takes an array, which can be unsorted, as its sole argument.
* Make an intrinsic States.Base64Encode expression
175
+
*
176
+
* Use this function to encode data based on MIME Base64 encoding scheme. You can use this function to pass data to other AWS services without using an AWS Lambda function.
* Make an intrinsic States.Base64Decode expression
186
+
*
187
+
* Use this function to decode data based on MIME Base64 decoding scheme. You can use this function to pass data to other AWS services without using a Lambda function.
* Use this function to calculate the hash value of a given input. You can use this function to pass data to other AWS services without using a Lambda function.
* Use this function to return a random number between the specified start and end number. For example, you can use this function to distribute a specific task between two or more resources.
* Use this function to return the sum of two numbers. For example, you can use this function to increment values inside a loop without invoking a Lambda function.
* Use this function to split a string into an array of values. This function takes two arguments.The first argument is a string and the second argument is the delimiting character that the function will use to divide the string.
* Use this function to return a version 4 universally unique identifier (v4 UUID) generated using random numbers. For example, you can use this function to call other AWS services or resources that need a UUID parameter or insert items in a DynamoDB table.
thrownewError(`JSON path values must be exactly '$', '$$', start with '$.', start with '$$.', start with '$[', or start with an intrinsic function: States.Format, States.StringToJson, States.JsonToString, or States.Array. Received: ${path}`);
492
+
constlastItem=intrinsicFunctionFullNames.pop();
493
+
constintrinsicFunctionsStr=intrinsicFunctionFullNames.join(', ')+', or '+lastItem;
494
+
thrownewError(`JSON path values must be exactly '$', '$$', start with '$.', start with '$$.', start with '$[', or start with an intrinsic function: ${intrinsicFunctionsStr}. Received: ${path}`);
0 commit comments