Class: Aws::CognitoIdentityProvider::Types::AccountTakeoverActionType
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::AccountTakeoverActionType
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Account takeover action type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#event_action ⇒ String
The action to take in response to the account takeover action.
-
#notify ⇒ Boolean
Flag specifying whether to send a notification.
Instance Attribute Details
#event_action ⇒ String
The action to take in response to the account takeover action. Valid values are as follows:
-
‘BLOCK` Choosing this action will block the request.
-
‘MFA_IF_CONFIGURED` Present an MFA challenge if user has configured it, else allow the request.
-
‘MFA_REQUIRED` Present an MFA challenge if user has configured it, else block the request.
-
‘NO_ACTION` Allow the user to sign in.
50 51 52 53 54 55 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 50 class AccountTakeoverActionType < Struct.new( :notify, :event_action) SENSITIVE = [] include Aws::Structure end |
#notify ⇒ Boolean
Flag specifying whether to send a notification.
50 51 52 53 54 55 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 50 class AccountTakeoverActionType < Struct.new( :notify, :event_action) SENSITIVE = [] include Aws::Structure end |