/AWS1/IF_LMD_WAITER¶
/AWS1/IF_LMD_WAITER represents the Waiter client for AWS Lambda, representing each waiter as a method call.
List of waiter methods implemented in /AWS1/IF_LMD_WAITER
| Waiter Method | Service Operation | Waiter Description |
|---|---|---|
| FUNCTIONACTIVE | GETFUNCTIONCONFIGURATION() |
Waits for the function's State to be Active. This waiter uses GetFunctionConfiguration API. This should be used after new function creation. |
| FUNCTIONACTIVEV2 | GETFUNCTION() |
Waits for the function's State to be Active. This waiter uses GetFunction API. This should be used after new function creation. |
| FUNCTIONEXISTS | GETFUNCTION() |
Polls GetFunction API to wait until FunctionExists |
| FUNCTIONUPDATED | GETFUNCTIONCONFIGURATION() |
Waits for the function's LastUpdateStatus to be Successful. This waiter uses GetFunctionConfiguration API. This should be used after function updates. |
| FUNCTIONUPDATEDV2 | GETFUNCTION() |
Waits for the function's LastUpdateStatus to be Successful. This waiter uses GetFunction API. This should be used after function updates. |
| PUBLISHEDVERSIONACTIVE | GETFUNCTIONCONFIGURATION() |
Waits for the published version's State to be Active. This waiter uses GetFunctionConfiguration API. This should be used after new version is published. |