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

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

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

origin: software.amazon.awssdk/cognitoidp

  @Override
  public LambdaConfigType build() {
    return new LambdaConfigType(this);
  }
}
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

public final LambdaConfigType.Builder getLambdaConfig() {
  return lambdaConfig != null ? lambdaConfig.toBuilder() : null;
}
origin: aws/aws-sdk-java-v2

/**
 * <p>
 * The AWS Lambda triggers associated with the user pool.
 * </p>
 * This is a convenience that creates an instance of the {@link LambdaConfigType.Builder} avoiding the need to
 * create one manually via {@link LambdaConfigType#builder()}.
 *
 * When the {@link Consumer} completes, {@link LambdaConfigType.Builder#build()} is called immediately and its
 * result is passed to {@link #lambdaConfig(LambdaConfigType)}.
 * 
 * @param lambdaConfig
 *        a consumer that will call methods on {@link LambdaConfigType.Builder}
 * @return Returns a reference to this object so that method calls can be chained together.
 * @see #lambdaConfig(LambdaConfigType)
 */
default Builder lambdaConfig(Consumer<LambdaConfigType.Builder> lambdaConfig) {
  return lambdaConfig(LambdaConfigType.builder().applyMutation(lambdaConfig).build());
}
origin: aws/aws-sdk-java-v2

/**
 * <p>
 * The AWS Lambda configuration information in a user pool description.
 * </p>
 * This is a convenience that creates an instance of the {@link LambdaConfigType.Builder} avoiding the need to
 * create one manually via {@link LambdaConfigType#builder()}.
 *
 * When the {@link Consumer} completes, {@link LambdaConfigType.Builder#build()} is called immediately and its
 * result is passed to {@link #lambdaConfig(LambdaConfigType)}.
 * 
 * @param lambdaConfig
 *        a consumer that will call methods on {@link LambdaConfigType.Builder}
 * @return Returns a reference to this object so that method calls can be chained together.
 * @see #lambdaConfig(LambdaConfigType)
 */
default Builder lambdaConfig(Consumer<LambdaConfigType.Builder> lambdaConfig) {
  return lambdaConfig(LambdaConfigType.builder().applyMutation(lambdaConfig).build());
}
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

/**
 * <p>
 * The AWS Lambda configuration information from the request to update the user pool.
 * </p>
 * This is a convenience that creates an instance of the {@link LambdaConfigType.Builder} avoiding the need to
 * create one manually via {@link LambdaConfigType#builder()}.
 *
 * When the {@link Consumer} completes, {@link LambdaConfigType.Builder#build()} is called immediately and its
 * result is passed to {@link #lambdaConfig(LambdaConfigType)}.
 * 
 * @param lambdaConfig
 *        a consumer that will call methods on {@link LambdaConfigType.Builder}
 * @return Returns a reference to this object so that method calls can be chained together.
 * @see #lambdaConfig(LambdaConfigType)
 */
default Builder lambdaConfig(Consumer<LambdaConfigType.Builder> lambdaConfig) {
  return lambdaConfig(LambdaConfigType.builder().applyMutation(lambdaConfig).build());
}
origin: aws/aws-sdk-java-v2

public final LambdaConfigType.Builder getLambdaConfig() {
  return lambdaConfig != null ? lambdaConfig.toBuilder() : null;
}
origin: aws/aws-sdk-java-v2

@Override
public LambdaConfigType build() {
  return new LambdaConfigType(this);
}
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: software.amazon.awssdk/cognitoidp

/**
 * <p>
 * A container for the AWS Lambda triggers associated with a user pool.
 * </p>
 * This is a convenience that creates an instance of the {@link LambdaConfigType.Builder} avoiding the need to
 * create one manually via {@link LambdaConfigType#builder()}.
 *
 * When the {@link Consumer} completes, {@link LambdaConfigType.Builder#build()} is called immediately and its
 * result is passed to {@link #lambdaConfig(LambdaConfigType)}.
 * 
 * @param lambdaConfig
 *        a consumer that will call methods on {@link LambdaConfigType.Builder}
 * @return Returns a reference to this object so that method calls can be chained together.
 * @see #lambdaConfig(LambdaConfigType)
 */
default Builder lambdaConfig(Consumer<LambdaConfigType.Builder> lambdaConfig) {
  return lambdaConfig(LambdaConfigType.builder().applyMutation(lambdaConfig).build());
}
origin: aws/aws-sdk-java-v2

public final LambdaConfigType.Builder getLambdaConfig() {
  return lambdaConfig != null ? lambdaConfig.toBuilder() : null;
}
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

/**
 * <p>
 * The Lambda trigger configuration information for the new user pool.
 * </p>
 * This is a convenience that creates an instance of the {@link LambdaConfigType.Builder} avoiding the need to
 * create one manually via {@link LambdaConfigType#builder()}.
 *
 * When the {@link Consumer} completes, {@link LambdaConfigType.Builder#build()} is called immediately and its
 * result is passed to {@link #lambdaConfig(LambdaConfigType)}.
 * 
 * @param lambdaConfig
 *        a consumer that will call methods on {@link LambdaConfigType.Builder}
 * @return Returns a reference to this object so that method calls can be chained together.
 * @see #lambdaConfig(LambdaConfigType)
 */
default Builder lambdaConfig(Consumer<LambdaConfigType.Builder> lambdaConfig) {
  return lambdaConfig(LambdaConfigType.builder().applyMutation(lambdaConfig).build());
}
origin: aws/aws-sdk-java-v2

public final LambdaConfigType.Builder getLambdaConfig() {
  return lambdaConfig != null ? lambdaConfig.toBuilder() : null;
}
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: software.amazon.awssdk/cognitoidp

/**
 * <p>
 * The AWS Lambda configuration information from the request to update the user pool.
 * </p>
 * This is a convenience that creates an instance of the {@link LambdaConfigType.Builder} avoiding the need to
 * create one manually via {@link LambdaConfigType#builder()}.
 *
 * When the {@link Consumer} completes, {@link LambdaConfigType.Builder#build()} is called immediately and its
 * result is passed to {@link #lambdaConfig(LambdaConfigType)}.
 * 
 * @param lambdaConfig
 *        a consumer that will call methods on {@link LambdaConfigType.Builder}
 * @return Returns a reference to this object so that method calls can be chained together.
 * @see #lambdaConfig(LambdaConfigType)
 */
default Builder lambdaConfig(Consumer<LambdaConfigType.Builder> lambdaConfig) {
  return lambdaConfig(LambdaConfigType.builder().applyMutation(lambdaConfig).build());
}
origin: software.amazon.awssdk/cognitoidp

public final LambdaConfigType.Builder getLambdaConfig() {
  return lambdaConfig != null ? lambdaConfig.toBuilder() : null;
}
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

/**
 * <p>
 * The AWS Lambda configuration information in a user pool description.
 * </p>
 * This is a convenience that creates an instance of the {@link LambdaConfigType.Builder} avoiding the need to
 * create one manually via {@link LambdaConfigType#builder()}.
 *
 * When the {@link Consumer} completes, {@link LambdaConfigType.Builder#build()} is called immediately and its
 * result is passed to {@link #lambdaConfig(LambdaConfigType)}.
 * 
 * @param lambdaConfig
 *        a consumer that will call methods on {@link LambdaConfigType.Builder}
 * @return Returns a reference to this object so that method calls can be chained together.
 * @see #lambdaConfig(LambdaConfigType)
 */
default Builder lambdaConfig(Consumer<LambdaConfigType.Builder> lambdaConfig) {
  return lambdaConfig(LambdaConfigType.builder().applyMutation(lambdaConfig).build());
}
software.amazon.awssdk.services.cognitoidentityprovider.modelLambdaConfigType

Javadoc

Specifies the configuration for AWS Lambda triggers.

Most used methods

  • <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,
  • userMigration

Popular in Java

  • Reactive rest calls using spring rest template
  • setContentView (Activity)
  • putExtra (Intent)
  • getExternalFilesDir (Context)
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • MessageFormat (java.text)
    Produces concatenated messages in language-neutral way. New code should probably use java.util.Forma
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • 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