You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: action.yml
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,12 @@ inputs:
37
37
Qualifier:
38
38
description: "Specify a version or alias to invoke a published version of the function."
39
39
required: false
40
+
HTTP_TIMEOUT:
41
+
description: Sets the socket to timeout after timeout milliseconds of inactivity on the socket. Defaults to two minutes (120000)
42
+
required: false
43
+
MAX_RETRIES:
44
+
description: Returns the maximum amount of retries to perform for a service request. By default this value is calculated by the specific service object that the request is being made to.
|`FunctionName`|`string`| Yes | Name of the Lambda function to be invoked. |
53
-
|`InvocationType`|`RequestResponse\|`<br>`Event\|`<br>`DryRun`| No | Default `RequestResponse`. See the [AWS Javascript SDK docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/Lambda.html#invoke-property) for more info. |
54
-
|`LogType`|`Tail\|None`| No | Default `None`. Set to `Tail` to include the execution log in the response. |
55
-
|`Payload`|`string`| No | JSON that you want to provide to your Lambda function as input. |
56
-
|`Qualifier`|`string`| No | Version or alias of the function to be invoked. |
57
-
|`ClientContext`|`string`| No | Base64-encoded data about the invoking client to pass to the function. |
|`FunctionName`|`string`| Yes | Name of the Lambda function to be invoked. |
53
+
|`InvocationType`|`RequestResponse\|`<br>`Event\|`<br>`DryRun`| No | Default `RequestResponse`. See the [AWS Javascript SDK docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/Lambda.html#invoke-property) for more info. |
54
+
|`LogType`|`Tail\|None`| No | Default `None`. Set to `Tail` to include the execution log in the response. |
55
+
|`Payload`|`string`| No | JSON that you want to provide to your Lambda function as input. |
56
+
|`Qualifier`|`string`| No | Version or alias of the function to be invoked. |
57
+
|`ClientContext`|`string`| No | Base64-encoded data about the invoking client to pass to the function. |
58
+
|`HTTP_TIMEOUT`|`number`| No | Sets the socket to timeout after timeout milliseconds of inactivity on the socket. Defaults to two minutes (120000). See the [AWS Javascript SDK docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/Config.html)|
59
+
|`MAX_RETRIES`|`number`| No | Returns the maximum amount of retries to perform for a service request. By default this value is calculated by the specific service object that the request is being made to. [AWS Javascript SDK docs](https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/Config.html#maxRetries-property)|
58
60
59
61
For more details on the parameters accepted by `Lambda.invoke()`, see the [AWS Javascript SDK](https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/Lambda.html#invoke-property) docs
60
62
@@ -153,4 +155,4 @@ These steps process logs returned from the invocation:
0 commit comments