From c16fb1890a2d179d9a69e68ac339d631b70a5ba6 Mon Sep 17 00:00:00 2001 From: Jon Alm Eriksen Date: Mon, 17 Apr 2023 18:47:14 +0200 Subject: [PATCH] Update README.md (#614) Clarify usage of high level api --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0e1ced7d73..a77c69a32b 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ For example again, to list the objects in an S3 bucket: using AWS: @service @service S3 -S3.list_objects("/your-bucket") +S3.list_objects("your-bucket") # note: no '/' in front of bucket name ``` The high-level function calls are wrapped around the low-level function calls, meaning you can still pass along any low-level `kwargs` such as `aws_config` when making these requests.