We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 69b2a45 + e40f1cc commit 6e695a8Copy full SHA for 6e695a8
packages/@aws-cdk/aws-stepfunctions-tasks/lib/lambda/invoke.ts
@@ -39,7 +39,11 @@ export interface LambdaInvokeProps extends sfn.TaskStateBaseProps {
39
/**
40
* Version or alias to invoke a published version of the function
41
*
42
- * @default - No qualifier
+ * You only need to supply this if you want the version of the Lambda Function to depend
43
+ * on data in the state machine state. If not, you can pass the appropriate Alias or Version object
44
+ * directly as the `lambdaFunction` argument.
45
+ *
46
+ * @default - Version or alias inherent to the `lambdaFunction` object.
47
*/
48
readonly qualifier?: string;
49
}
0 commit comments