We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bde8f23 commit b6fb913Copy full SHA for b6fb913
python/amazon-verified-permissions-rest-api/stack/cognito/main.py
@@ -20,7 +20,7 @@ def __init__(
20
feature_plan=cognito.FeaturePlan.LITE,
21
sign_in_aliases=cognito.SignInAliases(email=True, username=False),
22
self_sign_up_enabled=True,
23
- removal_policy=RemovalPolicy.DESTROY, # Remove this line for production use
+ removal_policy=RemovalPolicy.DESTROY, # Remove this line for production use
24
)
25
26
cognito.UserPoolGroup(
@@ -45,5 +45,7 @@ def __init__(
45
self,
46
"UserPoolClient",
47
user_pool=self.user_pool,
48
- auth_flows=cognito.AuthFlow(user_srp=True),
+ auth_flows=cognito.AuthFlow(
49
+ user_password=True,
50
+ ),
51
0 commit comments