Class: Aws::CognitoIdentityProvider::Types::AccountTakeoverActionsType
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::AccountTakeoverActionsType
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Note:
When making an API call, you may pass AccountTakeoverActionsType data as a hash:
{
low_action: {
notify: false, # required
event_action: "BLOCK", # required, accepts BLOCK, MFA_IF_CONFIGURED, MFA_REQUIRED, NO_ACTION
},
medium_action: {
notify: false, # required
event_action: "BLOCK", # required, accepts BLOCK, MFA_IF_CONFIGURED, MFA_REQUIRED, NO_ACTION
},
high_action: {
notify: false, # required
event_action: "BLOCK", # required, accepts BLOCK, MFA_IF_CONFIGURED, MFA_REQUIRED, NO_ACTION
},
}
Account takeover actions type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#high_action ⇒ Types::AccountTakeoverActionType
Action to take for a high risk.
-
#low_action ⇒ Types::AccountTakeoverActionType
Action to take for a low risk.
-
#medium_action ⇒ Types::AccountTakeoverActionType
Action to take for a medium risk.
Instance Attribute Details
#high_action ⇒ Types::AccountTakeoverActionType
Action to take for a high risk.
111 112 113 114 115 116 117 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 111 class AccountTakeoverActionsType < Struct.new( :low_action, :medium_action, :high_action) SENSITIVE = [] include Aws::Structure end |
#low_action ⇒ Types::AccountTakeoverActionType
Action to take for a low risk.
111 112 113 114 115 116 117 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 111 class AccountTakeoverActionsType < Struct.new( :low_action, :medium_action, :high_action) SENSITIVE = [] include Aws::Structure end |
#medium_action ⇒ Types::AccountTakeoverActionType
Action to take for a medium risk.
111 112 113 114 115 116 117 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 111 class AccountTakeoverActionsType < Struct.new( :low_action, :medium_action, :high_action) SENSITIVE = [] include Aws::Structure end |