AuthFlow¶
-
class
aws_cdk.aws_cognito.
AuthFlow
(*, admin_user_password=None, custom=None, user_password=None, user_srp=None)¶ Bases:
object
Types of authentication flow.
- Parameters
admin_user_password (
Optional
[bool
]) – Enable admin based user password authentication flow. Default: falsecustom (
Optional
[bool
]) – Enable custom authentication flow. Default: falseuser_password (
Optional
[bool
]) – Enable auth using username & password. Default: falseuser_srp (
Optional
[bool
]) – Enable SRP based authentication. Default: false
- See
Attributes
-
admin_user_password
¶ Enable admin based user password authentication flow.
- Default
false
- Return type
Optional
[bool
]
-
custom
¶ Enable custom authentication flow.
- Default
false
- Return type
Optional
[bool
]
-
user_password
¶ Enable auth using username & password.
- Default
false
- Return type
Optional
[bool
]
-
user_srp
¶ Enable SRP based authentication.
- Default
false
- Return type
Optional
[bool
]