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

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

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

origin: aws/aws-sdk-java-v2

@Override
public DescribeUserImportJobRequest build() {
  return new DescribeUserImportJobRequest(this);
}
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 DescribeUserImportJobRequest)) {
    return false;
  }
  DescribeUserImportJobRequest other = (DescribeUserImportJobRequest) obj;
  return Objects.equals(userPoolId(), other.userPoolId()) && Objects.equals(jobId(), other.jobId());
}
origin: aws/aws-sdk-java-v2

return describeUserImportJob(DescribeUserImportJobRequest.builder().applyMutation(describeUserImportJobRequest).build());
origin: aws/aws-sdk-java-v2

  InvalidParameterException, TooManyRequestsException, NotAuthorizedException, InternalErrorException,
  AwsServiceException, SdkClientException, CognitoIdentityProviderException {
return describeUserImportJob(DescribeUserImportJobRequest.builder().applyMutation(describeUserImportJobRequest).build());
origin: aws/aws-sdk-java-v2

@Override
public int hashCode() {
  int hashCode = 1;
  hashCode = 31 * hashCode + Objects.hashCode(userPoolId());
  hashCode = 31 * hashCode + Objects.hashCode(jobId());
  return hashCode;
}
origin: software.amazon.awssdk/cognitoidp

return describeUserImportJob(DescribeUserImportJobRequest.builder().applyMutation(describeUserImportJobRequest).build());
origin: software.amazon.awssdk/cognitoidp

  @Override
  public DescribeUserImportJobRequest build() {
    return new DescribeUserImportJobRequest(this);
  }
}
origin: software.amazon.awssdk/cognitoidp

@Override
public boolean equals(Object obj) {
  if (this == obj) {
    return true;
  }
  if (obj == null) {
    return false;
  }
  if (!(obj instanceof DescribeUserImportJobRequest)) {
    return false;
  }
  DescribeUserImportJobRequest other = (DescribeUserImportJobRequest) obj;
  return Objects.equals(userPoolId(), other.userPoolId()) && Objects.equals(jobId(), other.jobId());
}
origin: software.amazon.awssdk/cognitoidp

  InvalidParameterException, TooManyRequestsException, NotAuthorizedException, InternalErrorException,
  AwsServiceException, SdkClientException, CognitoIdentityProviderException {
return describeUserImportJob(DescribeUserImportJobRequest.builder().applyMutation(describeUserImportJobRequest).build());
origin: software.amazon.awssdk/cognitoidp

@Override
public int hashCode() {
  int hashCode = 1;
  hashCode = 31 * hashCode + Objects.hashCode(userPoolId());
  hashCode = 31 * hashCode + Objects.hashCode(jobId());
  return hashCode;
}
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("DescribeUserImportJobRequest").add("UserPoolId", userPoolId()).add("JobId", jobId()).build();
}
origin: aws/aws-sdk-java-v2

public <T> Optional<T> getValueForField(String fieldName, Class<T> clazz) {
  switch (fieldName) {
  case "UserPoolId":
    return Optional.ofNullable(clazz.cast(userPoolId()));
  case "JobId":
    return Optional.ofNullable(clazz.cast(jobId()));
  default:
    return Optional.empty();
  }
}
origin: software.amazon.awssdk/cognitoidp

@Override
public String toString() {
  return ToString.builder("DescribeUserImportJobRequest").add("UserPoolId", userPoolId()).add("JobId", jobId()).build();
}
origin: software.amazon.awssdk/cognitoidp

public <T> Optional<T> getValueForField(String fieldName, Class<T> clazz) {
  switch (fieldName) {
  case "UserPoolId":
    return Optional.ofNullable(clazz.cast(userPoolId()));
  case "JobId":
    return Optional.ofNullable(clazz.cast(jobId()));
  default:
    return Optional.empty();
  }
}
origin: software.amazon.awssdk/cognitoidp

  /**
   * Marshall the given parameter object
   */
  public void marshall(DescribeUserImportJobRequest describeUserImportJobRequest, ProtocolMarshaller protocolMarshaller) {
    Validate.paramNotNull(describeUserImportJobRequest, "describeUserImportJobRequest");
    Validate.paramNotNull(protocolMarshaller, "protocolMarshaller");
    try {
      protocolMarshaller.marshall(describeUserImportJobRequest.userPoolId(), USERPOOLID_BINDING);
      protocolMarshaller.marshall(describeUserImportJobRequest.jobId(), JOBID_BINDING);
    } catch (Exception e) {
      throw SdkClientException.builder().message("Unable to marshall request to JSON: " + e.getMessage()).cause(e).build();
    }
  }
}
software.amazon.awssdk.services.cognitoidentityprovider.modelDescribeUserImportJobRequest

Javadoc

Represents the request to describe the user import job.

Most used methods

  • <init>
  • builder
  • jobId
    The job ID for the user import job.
  • userPoolId
    The user pool ID for the user pool that the users are being imported into.

Popular in Java

  • Making http requests using okhttp
  • addToBackStack (FragmentTransaction)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • requestLocationUpdates (LocationManager)
  • IOException (java.io)
    Signals a general, I/O-related error. Error details may be specified when calling the constructor, a
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • MessageFormat (java.text)
    Produces concatenated messages in language-neutral way. New code should probably use java.util.Forma
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • JTextField (javax.swing)
  • Best plugins for Eclipse
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