InvokeFunctionProps¶
-
class
aws_cdk.aws_stepfunctions_tasks.
InvokeFunctionProps
(*, payload=None)¶ Bases:
object
(deprecated) Properties for InvokeFunction.
- Parameters
payload (
Optional
[Mapping
[str
,Any
]]) – (deprecated) The JSON that you want to provide to your Lambda function as input. This parameter is named as payload to keep consistent with RunLambdaTask class. Default: - The JSON data indicated by the task’s InputPath is used as payload- Deprecated
use
LambdaInvoke
- Stability
deprecated
Attributes
-
payload
¶ (deprecated) The JSON that you want to provide to your Lambda function as input.
This parameter is named as payload to keep consistent with RunLambdaTask class.
- Default
The JSON data indicated by the task’s InputPath is used as payload
- Stability
deprecated
- Return type
Optional
[Mapping
[str
,Any
]]