Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Unanswered
AWS Cognito change email - require verification before update

https://stackoverflow.com/questions/65918340/aws-cognito-change-email-require-verification-before-update

To opt-in to this behavior, follow the steps on that page:

  • Sign in to the Amazon Cognito console. If prompted, enter your AWS credentials.

  • In the navigation pane, choose User Pools, and choose the user pool you want to edit.

  • In the Sign-up experience tab, choose Edit under Attribute verification and user account confirmation.

  • Choose Keep original attribute value active when an update is pending.

  • Under Active attribute values when an update is pending, choose the attributes that you want to require your users verify before Amazon Cognito updates the value.

  • Choose Save changes.

This will enable what should be the default behavior for user pools: The attribute will keep its old value until the user actually verifies the new value, at which point Cognito updates the value to the new one.

  
  
Posted 2 years ago
Votes Newest

Answers