Skip to content

Commit ca6dff4

Browse files
committed
add python code type
1 parent 941c55c commit ca6dff4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/en/docs/LocalStack Tools/transparent-execution-mode/patched-sdks.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ The Lambda runtime in LocalStack uses patched AWS SDKs, which are configured to
1111
This behavior is enabled by default for most Lambda runtimes when using LocalStack Pro.
1212

1313
Assuming you had a Python Lambda handler that attempts to list all S3 buckets. In the past, you had to manually configure the `endpoint_url` parameter on the boto3 client (and potentially use environment switches for dev/prod in your test code):
14-
```
14+
```python
1515
import boto3
1616
def handler(event, context):
1717
client = boto3.client("s3", endpoint_url="http://localhost:4566")
1818
print(client.list_buckets())
1919
```
2020

2121
With the patched AWS SDKs, it now becomes possible to deploy your unmodified production code to LocalStack, simply creating a boto3 client with default settings. The invocations of the boto3 client will be automatically forwarded to the local APIs:
22-
```
22+
```python
2323
import boto3
2424
def handler(event, context):
2525
client = boto3.client("s3")

0 commit comments

Comments
 (0)