Class InvokeFunctionProps
(deprecated) Properties for InvokeFunction.
Inheritance
System.Object
InvokeFunctionProps
Implements
Namespace: Amazon.CDK.AWS.StepFunctions.Tasks
Assembly: Amazon.CDK.AWS.StepFunctions.Tasks.dll
Syntax (csharp)
public class InvokeFunctionProps : Object, IInvokeFunctionProps
Syntax (vb)
Public Class InvokeFunctionProps
Inherits Object
Implements IInvokeFunctionProps
Remarks
Stability: Deprecated
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.Tasks;
var payload;
var invokeFunctionProps = new InvokeFunctionProps {
Payload = new Dictionary<string, object> {
{ "payloadKey", payload }
}
};
Synopsis
Constructors
InvokeFunctionProps() |
Properties
Payload | (deprecated) The JSON that you want to provide to your Lambda function as input. |
Constructors
InvokeFunctionProps()
public InvokeFunctionProps()
Properties
Payload
(deprecated) The JSON that you want to provide to your Lambda function as input.
public IDictionary<string, object> Payload { get; set; }
Property Value
System.Collections.Generic.IDictionary<System.String, System.Object>
Remarks
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