Interface CompromisedCredentialsRiskConfigurationType.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CompromisedCredentialsRiskConfigurationType.Builder,CompromisedCredentialsRiskConfigurationType>,SdkBuilder<CompromisedCredentialsRiskConfigurationType.Builder,CompromisedCredentialsRiskConfigurationType>,SdkPojo
- Enclosing class:
- CompromisedCredentialsRiskConfigurationType
public static interface CompromisedCredentialsRiskConfigurationType.Builder extends SdkPojo, CopyableBuilder<CompromisedCredentialsRiskConfigurationType.Builder,CompromisedCredentialsRiskConfigurationType>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default CompromisedCredentialsRiskConfigurationType.Builderactions(Consumer<CompromisedCredentialsActionsType.Builder> actions)Settings for the actions that you want your user pool to take when Amazon Cognito detects compromised credentials.CompromisedCredentialsRiskConfigurationType.Builderactions(CompromisedCredentialsActionsType actions)Settings for the actions that you want your user pool to take when Amazon Cognito detects compromised credentials.CompromisedCredentialsRiskConfigurationType.BuildereventFilter(Collection<EventFilterType> eventFilter)Settings for the sign-in activity where you want to configure compromised-credentials actions.CompromisedCredentialsRiskConfigurationType.BuildereventFilter(EventFilterType... eventFilter)Settings for the sign-in activity where you want to configure compromised-credentials actions.CompromisedCredentialsRiskConfigurationType.BuildereventFilterWithStrings(String... eventFilter)Settings for the sign-in activity where you want to configure compromised-credentials actions.CompromisedCredentialsRiskConfigurationType.BuildereventFilterWithStrings(Collection<String> eventFilter)Settings for the sign-in activity where you want to configure compromised-credentials actions.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
eventFilterWithStrings
CompromisedCredentialsRiskConfigurationType.Builder eventFilterWithStrings(Collection<String> eventFilter)
Settings for the sign-in activity where you want to configure compromised-credentials actions. Defaults to all events.
- Parameters:
eventFilter- Settings for the sign-in activity where you want to configure compromised-credentials actions. Defaults to all events.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventFilterWithStrings
CompromisedCredentialsRiskConfigurationType.Builder eventFilterWithStrings(String... eventFilter)
Settings for the sign-in activity where you want to configure compromised-credentials actions. Defaults to all events.
- Parameters:
eventFilter- Settings for the sign-in activity where you want to configure compromised-credentials actions. Defaults to all events.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventFilter
CompromisedCredentialsRiskConfigurationType.Builder eventFilter(Collection<EventFilterType> eventFilter)
Settings for the sign-in activity where you want to configure compromised-credentials actions. Defaults to all events.
- Parameters:
eventFilter- Settings for the sign-in activity where you want to configure compromised-credentials actions. Defaults to all events.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventFilter
CompromisedCredentialsRiskConfigurationType.Builder eventFilter(EventFilterType... eventFilter)
Settings for the sign-in activity where you want to configure compromised-credentials actions. Defaults to all events.
- Parameters:
eventFilter- Settings for the sign-in activity where you want to configure compromised-credentials actions. Defaults to all events.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actions
CompromisedCredentialsRiskConfigurationType.Builder actions(CompromisedCredentialsActionsType actions)
Settings for the actions that you want your user pool to take when Amazon Cognito detects compromised credentials.
- Parameters:
actions- Settings for the actions that you want your user pool to take when Amazon Cognito detects compromised credentials.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actions
default CompromisedCredentialsRiskConfigurationType.Builder actions(Consumer<CompromisedCredentialsActionsType.Builder> actions)
Settings for the actions that you want your user pool to take when Amazon Cognito detects compromised credentials.
This is a convenience method that creates an instance of theCompromisedCredentialsActionsType.Builderavoiding the need to create one manually viaCompromisedCredentialsActionsType.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toactions(CompromisedCredentialsActionsType).- Parameters:
actions- a consumer that will call methods onCompromisedCredentialsActionsType.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
actions(CompromisedCredentialsActionsType)
-
-