Skip to content

Commit c1e1349

Browse files
authored
Typo in functions-states.md
1 parent afca609 commit c1e1349

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc_source/functions-states.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Lambda includes a state field in the function configuration for all functions to
66
+ `Failed` – Indicates that resource configuration or provisioning encountered an error\.
77
+ `Inactive` – A function becomes inactive when it has been idle long enough for Lambda to reclaim the external resources that were configured for it\. When you try to invoke a function that is inactive, the invocation fails and Lambda sets the function to pending state until the function resources are recreated\. If Lambda fails to recreate the resources, the function is set to the inactive state\.
88

9-
If you are utilzing SDK\-based automation workflows or calling Lambda’s service APIs directly, ensure that you check a function's state before invocation to verify that it is active\. You can do this with the Lambda API action [GetFunction](API_GetFunction.md), or by configuring a waiter using the [AWS SDK for Java 2\.0](https://github.com/aws/aws-sdk-java-v2)\.
9+
If you are utilizing SDK\-based automation workflows or calling Lambda’s service APIs directly, ensure that you check a function's state before invocation to verify that it is active\. You can do this with the Lambda API action [GetFunction](API_GetFunction.md), or by configuring a waiter using the [AWS SDK for Java 2\.0](https://github.com/aws/aws-sdk-java-v2)\.
1010

1111
```
1212
aws lambda get-function --function-name my-function --query 'Configuration.[State, LastUpdateStatus]'
@@ -66,4 +66,4 @@ The following is the result of `get-function-configuration` on a function underg
6666
The following operations fail while an asynchronous update is in progress:
6767
+ [UpdateFunctionCode](API_UpdateFunctionCode.md)
6868
+ [UpdateFunctionConfiguration](API_UpdateFunctionConfiguration.md)
69-
+ [PublishVersion](API_PublishVersion.md)
69+
+ [PublishVersion](API_PublishVersion.md)

0 commit comments

Comments
 (0)