Tabnine Logo
LambdaConfigType.postConfirmation
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: software.amazon.awssdk/cognitoidp

@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()).build();
}
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: software.amazon.awssdk/cognitoidp

@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());
  return hashCode;
}
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: software.amazon.awssdk/cognitoidp

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()));
  default:
    return Optional.empty();
  }
}
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: software.amazon.awssdk/cognitoidp

@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());
}
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());
}
origin: software.amazon.awssdk/cognitoidp

  /**
   * Marshall the given parameter object
   */
  public void marshall(LambdaConfigType lambdaConfigType, ProtocolMarshaller protocolMarshaller) {
    Validate.paramNotNull(lambdaConfigType, "lambdaConfigType");
    Validate.paramNotNull(protocolMarshaller, "protocolMarshaller");
    try {
      protocolMarshaller.marshall(lambdaConfigType.preSignUp(), PRESIGNUP_BINDING);
      protocolMarshaller.marshall(lambdaConfigType.customMessage(), CUSTOMMESSAGE_BINDING);
      protocolMarshaller.marshall(lambdaConfigType.postConfirmation(), POSTCONFIRMATION_BINDING);
      protocolMarshaller.marshall(lambdaConfigType.preAuthentication(), PREAUTHENTICATION_BINDING);
      protocolMarshaller.marshall(lambdaConfigType.postAuthentication(), POSTAUTHENTICATION_BINDING);
      protocolMarshaller.marshall(lambdaConfigType.defineAuthChallenge(), DEFINEAUTHCHALLENGE_BINDING);
      protocolMarshaller.marshall(lambdaConfigType.createAuthChallenge(), CREATEAUTHCHALLENGE_BINDING);
      protocolMarshaller.marshall(lambdaConfigType.verifyAuthChallengeResponse(), VERIFYAUTHCHALLENGERESPONSE_BINDING);
    } catch (Exception e) {
      throw SdkClientException.builder().message("Unable to marshall request to JSON: " + e.getMessage()).cause(e).build();
    }
  }
}
software.amazon.awssdk.services.cognitoidentityprovider.modelLambdaConfigTypepostConfirmation

Javadoc

A post-confirmation AWS Lambda trigger.

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.
  • 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.
  • userMigration
    The user migration Lambda config type.
  • preTokenGeneration,
  • userMigration

Popular in Java

  • Parsing JSON documents to java classes using gson
  • setScale (BigDecimal)
  • startActivity (Activity)
  • getResourceAsStream (ClassLoader)
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
  • Top Sublime Text plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now