Class: Aws::CognitoIdentityProvider::Types::CompromisedCredentialsRiskConfigurationType
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::CompromisedCredentialsRiskConfigurationType
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Note:
When making an API call, you may pass CompromisedCredentialsRiskConfigurationType data as a hash:
{
event_filter: ["SIGN_IN"], # accepts SIGN_IN, PASSWORD_CHANGE, SIGN_UP
actions: { # required
event_action: "BLOCK", # required, accepts BLOCK, NO_ACTION
},
}
The compromised credentials risk configuration type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#actions ⇒ Types::CompromisedCredentialsActionsType
The compromised credentials risk configuration actions.
-
#event_filter ⇒ Array<String>
Perform the action for these events.
Instance Attribute Details
#actions ⇒ Types::CompromisedCredentialsActionsType
The compromised credentials risk configuration actions.
2595 2596 2597 2598 2599 2600 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 2595 class CompromisedCredentialsRiskConfigurationType < Struct.new( :event_filter, :actions) SENSITIVE = [] include Aws::Structure end |
#event_filter ⇒ Array<String>
Perform the action for these events. The default is to perform all events if no event filter is specified.
2595 2596 2597 2598 2599 2600 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 2595 class CompromisedCredentialsRiskConfigurationType < Struct.new( :event_filter, :actions) SENSITIVE = [] include Aws::Structure end |