Skip to content

Commit 20366f7

Browse files
committed
documentation
1 parent 6e2de1a commit 20366f7

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

action.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ inputs:
4040
HTTP_TIMEOUT:
4141
description: Sets the socket to timeout after timeout milliseconds of inactivity on the socket. Defaults to two minutes (120000)
4242
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.
45+
required: false
4346
outputs:
4447
response: # id of output
4548
description: "response from lambda invocation"

readme.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,16 @@ This action allows you to synchronously invoke a Lambda function and get the res
4747

4848
### Invocation
4949

50-
| Key | Type | Required | Description |
51-
| ---------------- | :------------------------------------------: | :------: | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
52-
| `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) |
50+
| Key | Type | Required | Description |
51+
| ---------------- | :------------------------------------------: | :------: | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
52+
| `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) |
5960

6061
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
6162

0 commit comments

Comments
 (0)