From d02acbcc77f96ae270f5e783ebbec2256a880694 Mon Sep 17 00:00:00 2001 From: rokas g Date: Sun, 25 Aug 2019 17:40:36 +0100 Subject: [PATCH] added user_poor_region parameter to the Cognito invocation in the example with all arguments. The argument exists in __init__.py but not mentioned. --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2d717119..c15f4353 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,8 @@ u = Cognito('your-user-pool-id','your-client-id', refresh_token='optional-refresh-token', access_token='optional-access-token', access_key='optional-access-key', - secret_key='optional-secret-key') + secret_key='optional-secret-key', + user_pool_region='optional-user-pool-region') ``` #### Arguments @@ -87,7 +88,7 @@ u = Cognito('your-user-pool-id','your-client-id', - **access_token:** Access Token returned by authentication - **access_key:** AWS IAM access key - **secret_key:** AWS IAM secret key - +- **user_poor_region:** Region Cognito User Pool is hosted in ### Examples with Realistic Arguments ###