Codota Logo
LambdaConfigType.userMigration
Code IndexAdd Codota to your IDE (free)

How to use
userMigration
method
in
software.amazon.awssdk.services.cognitoidentityprovider.model.LambdaConfigType

Best Java code snippets using software.amazon.awssdk.services.cognitoidentityprovider.model.LambdaConfigType.userMigration (Showing top 4 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
List l =
  • Codota Iconnew LinkedList()
  • Codota IconCollections.emptyList()
  • Codota Iconnew ArrayList()
  • Smart code suggestions by Codota
}
origin: aws/aws-sdk-java-v2

/**
 * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
 * redacted from this string using a placeholder value.
 */
@Override
public String toString() {
  return ToString.builder("LambdaConfigType").add("PreSignUp", preSignUp()).add("CustomMessage", customMessage())
      .add("PostConfirmation", postConfirmation()).add("PreAuthentication", preAuthentication())
      .add("PostAuthentication", postAuthentication()).add("DefineAuthChallenge", defineAuthChallenge())
      .add("CreateAuthChallenge", createAuthChallenge())
      .add("VerifyAuthChallengeResponse", verifyAuthChallengeResponse())
      .add("PreTokenGeneration", preTokenGeneration()).add("UserMigration", userMigration()).build();
}
origin: aws/aws-sdk-java-v2

@Override
public int hashCode() {
  int hashCode = 1;
  hashCode = 31 * hashCode + Objects.hashCode(preSignUp());
  hashCode = 31 * hashCode + Objects.hashCode(customMessage());
  hashCode = 31 * hashCode + Objects.hashCode(postConfirmation());
  hashCode = 31 * hashCode + Objects.hashCode(preAuthentication());
  hashCode = 31 * hashCode + Objects.hashCode(postAuthentication());
  hashCode = 31 * hashCode + Objects.hashCode(defineAuthChallenge());
  hashCode = 31 * hashCode + Objects.hashCode(createAuthChallenge());
  hashCode = 31 * hashCode + Objects.hashCode(verifyAuthChallengeResponse());
  hashCode = 31 * hashCode + Objects.hashCode(preTokenGeneration());
  hashCode = 31 * hashCode + Objects.hashCode(userMigration());
  return hashCode;
}
origin: aws/aws-sdk-java-v2

public <T> Optional<T> getValueForField(String fieldName, Class<T> clazz) {
  switch (fieldName) {
  case "PreSignUp":
    return Optional.ofNullable(clazz.cast(preSignUp()));
  case "CustomMessage":
    return Optional.ofNullable(clazz.cast(customMessage()));
  case "PostConfirmation":
    return Optional.ofNullable(clazz.cast(postConfirmation()));
  case "PreAuthentication":
    return Optional.ofNullable(clazz.cast(preAuthentication()));
  case "PostAuthentication":
    return Optional.ofNullable(clazz.cast(postAuthentication()));
  case "DefineAuthChallenge":
    return Optional.ofNullable(clazz.cast(defineAuthChallenge()));
  case "CreateAuthChallenge":
    return Optional.ofNullable(clazz.cast(createAuthChallenge()));
  case "VerifyAuthChallengeResponse":
    return Optional.ofNullable(clazz.cast(verifyAuthChallengeResponse()));
  case "PreTokenGeneration":
    return Optional.ofNullable(clazz.cast(preTokenGeneration()));
  case "UserMigration":
    return Optional.ofNullable(clazz.cast(userMigration()));
  default:
    return Optional.empty();
  }
}
origin: aws/aws-sdk-java-v2

@Override
public boolean equals(Object obj) {
  if (this == obj) {
    return true;
  }
  if (obj == null) {
    return false;
  }
  if (!(obj instanceof LambdaConfigType)) {
    return false;
  }
  LambdaConfigType other = (LambdaConfigType) obj;
  return Objects.equals(preSignUp(), other.preSignUp()) && Objects.equals(customMessage(), other.customMessage())
      && Objects.equals(postConfirmation(), other.postConfirmation())
      && Objects.equals(preAuthentication(), other.preAuthentication())
      && Objects.equals(postAuthentication(), other.postAuthentication())
      && Objects.equals(defineAuthChallenge(), other.defineAuthChallenge())
      && Objects.equals(createAuthChallenge(), other.createAuthChallenge())
      && Objects.equals(verifyAuthChallengeResponse(), other.verifyAuthChallengeResponse())
      && Objects.equals(preTokenGeneration(), other.preTokenGeneration())
      && Objects.equals(userMigration(), other.userMigration());
}
software.amazon.awssdk.services.cognitoidentityprovider.modelLambdaConfigTypeuserMigration

Javadoc

The user migration Lambda config type.

Popular methods of LambdaConfigType

  • <init>
  • builder
  • createAuthChallenge
    Creates an authentication challenge.
  • customMessage
    A custom Message AWS Lambda trigger.
  • defineAuthChallenge
    Defines the authentication challenge.
  • postAuthentication
    A post-authentication AWS Lambda trigger.
  • postConfirmation
    A post-confirmation AWS Lambda trigger.
  • preAuthentication
    A pre-authentication AWS Lambda trigger.
  • preSignUp
    A pre-registration AWS Lambda trigger.
  • toBuilder
  • verifyAuthChallengeResponse
    Verifies the authentication challenge response.
  • preTokenGeneration
    A Lambda trigger that is invoked before token generation.
  • verifyAuthChallengeResponse,
  • preTokenGeneration

Popular in Java

  • Finding current android device location
  • runOnUiThread (Activity)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getResourceAsStream (ClassLoader)
    Returns a stream for the resource with the specified name. See #getResource(String) for a descriptio
  • String (java.lang)
  • Selector (java.nio.channels)
    A controller for the selection of SelectableChannel objects. Selectable channels can be registered w
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • JLabel (javax.swing)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now