We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7183cb2 commit e40f1ccCopy full SHA for e40f1cc
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