This action invokes AWS Lambda from github. you can use it as a scheduled job or on git triggers.
The endpoint URI to send requests to. The Default endpoint is built from the configured region. The endpoint should be a string like 'https://{service}.{region}.amazonaws.com'.
False
Null
your AWS access key ID.
False
Null
your AWS secret access key.
False
Null
the optional AWS session token to sign requests with.
False
Null
the region to send service requests to. See AWS.Lambda.region for more information.
False
Null
the maximum amount of retries to attempt with a request. See AWS.Lambda.maxRetries for more information.
False
Null
the maximum amount of redirects to follow with a request. See AWS.Lambda.maxRedirects for more information.
False
Null
whether to enable SSL for requests.
False
Null
The name of the Lambda function, version, or alias.
True
RequestResponse (Default) - Invoke the function synchronously. Keep the connection open until the function returns a response or times out. The API response includes the function response and additional data.
Event - Invoke the function asynchronously. Send events that fail multiple times to the function's dead-letter queue (if it's configured). The API response only includes a status code.
DryRun - Validate parameter values and verify that the user or role has permission to invoke the function.
Possible values include
- "Event"
- "RequestResponse"
- "DryRun"
False
"RequestResponse"
Set to Tail to include the execution log in the response.
Possible values include
- "None"
- "Tail"
False
"None"
Up to 3583 bytes of base64-encoded data about the invoking client to pass to the function in the context object.
False
Null
The JSON that you want to provide to your Lambda function as input
False
Null
Specify a version or alias to invoke a published version of the function.
False
Null
The HTTP status code is in the 200 range for a successful request. For the RequestResponse invocation type, this status code is 200. For the Event invocation type, this status code is 202. For the DryRun invocation type, the status code is 204.
The version of the function that executed. When you invoke a function with an alias, this indicates which version the alias resolved to.
If present, indicates that an error occurred during function execution. Details about the error are included in the response payload.
The last 4 KB of the execution log, which is base64 encoded.
The response from the function, or an error object.
All descriptions are copied from AWS Reference Guide.