ListKeysRequest
Code IndexAdd Codota to your IDE (free)

Best code snippets using com.amazonaws.services.kms.model.ListKeysRequest(Showing top 15 results out of 315)

origin: aws/aws-sdk-java

/**
 * Simplified method form for invoking the ListKeys operation with an AsyncHandler.
 *
 * @see #listKeysAsync(ListKeysRequest, com.amazonaws.handlers.AsyncHandler)
 */
@Override
public java.util.concurrent.Future<ListKeysResult> listKeysAsync(com.amazonaws.handlers.AsyncHandler<ListKeysRequest, ListKeysResult> asyncHandler) {
  return listKeysAsync(new ListKeysRequest(), asyncHandler);
}
origin: aws/aws-sdk-java

@Override
public int hashCode() {
  final int prime = 31;
  int hashCode = 1;
  hashCode = prime * hashCode + ((getLimit() == null) ? 0 : getLimit().hashCode());
  hashCode = prime * hashCode + ((getMarker() == null) ? 0 : getMarker().hashCode());
  return hashCode;
}
origin: aws/aws-sdk-java

@Override
public ListKeysResult listKeys() {
  return listKeys(new ListKeysRequest());
}
origin: aws/aws-sdk-java

/**
 * <p>
 * Use this parameter in a subsequent request after you receive a response with truncated results. Set it to the
 * value of <code>NextMarker</code> from the truncated response you just received.
 * </p>
 * 
 * @param marker
 *        Use this parameter in a subsequent request after you receive a response with truncated results. Set it to
 *        the value of <code>NextMarker</code> from the truncated response you just received.
 * @return Returns a reference to this object so that method calls can be chained together.
 */
public ListKeysRequest withMarker(String marker) {
  setMarker(marker);
  return this;
}
origin: aws/aws-sdk-java

/**
 * Marshall the given parameter object.
 */
public void marshall(ListKeysRequest listKeysRequest, ProtocolMarshaller protocolMarshaller) {
  if (listKeysRequest == null) {
    throw new SdkClientException("Invalid argument passed to marshall(...)");
  }
  try {
    protocolMarshaller.marshall(listKeysRequest.getLimit(), LIMIT_BINDING);
    protocolMarshaller.marshall(listKeysRequest.getMarker(), MARKER_BINDING);
  } catch (Exception e) {
    throw new SdkClientException("Unable to marshall request to JSON: " + e.getMessage(), e);
  }
}
origin: aws/aws-sdk-java

/**
 * <p>
 * Use this parameter to specify the maximum number of items to return. When this value is present, AWS KMS does not
 * return more than the specified number of items, but it might return fewer.
 * </p>
 * <p>
 * This value is optional. If you include a value, it must be between 1 and 1000, inclusive. If you do not include a
 * value, it defaults to 100.
 * </p>
 * 
 * @param limit
 *        Use this parameter to specify the maximum number of items to return. When this value is present, AWS KMS
 *        does not return more than the specified number of items, but it might return fewer.</p>
 *        <p>
 *        This value is optional. If you include a value, it must be between 1 and 1000, inclusive. If you do not
 *        include a value, it defaults to 100.
 * @return Returns a reference to this object so that method calls can be chained together.
 */
public ListKeysRequest withLimit(Integer limit) {
  setLimit(limit);
  return this;
}
origin: aws/aws-sdk-java

/**
 * Simplified method form for invoking the ListKeys operation.
 *
 * @see #listKeysAsync(ListKeysRequest)
 */
@Override
public java.util.concurrent.Future<ListKeysResult> listKeysAsync() {
  return listKeysAsync(new ListKeysRequest());
}
origin: aws/aws-sdk-java

@Override
public boolean equals(Object obj) {
  if (this == obj)
    return true;
  if (obj == null)
    return false;
  if (obj instanceof ListKeysRequest == false)
    return false;
  ListKeysRequest other = (ListKeysRequest) obj;
  if (other.getLimit() == null ^ this.getLimit() == null)
    return false;
  if (other.getLimit() != null && other.getLimit().equals(this.getLimit()) == false)
    return false;
  if (other.getMarker() == null ^ this.getMarker() == null)
    return false;
  if (other.getMarker() != null && other.getMarker().equals(this.getMarker()) == false)
    return false;
  return true;
}
origin: aws/aws-sdk-java

/**
 * Returns a string representation of this object; useful for testing and debugging.
 *
 * @return A string representation of this object.
 *
 * @see java.lang.Object#toString()
 */
@Override
public String toString() {
  StringBuilder sb = new StringBuilder();
  sb.append("{");
  if (getLimit() != null)
    sb.append("Limit: ").append(getLimit()).append(",");
  if (getMarker() != null)
    sb.append("Marker: ").append(getMarker());
  sb.append("}");
  return sb.toString();
}
origin: aws/aws-sdk-java

/**
 * Simplified method form for invoking the ListKeys operation with an AsyncHandler.
 *
 * @see #listKeysAsync(ListKeysRequest, com.amazonaws.handlers.AsyncHandler)
 */
@Override
public java.util.concurrent.Future<ListKeysResult> listKeysAsync(com.amazonaws.handlers.AsyncHandler<ListKeysRequest, ListKeysResult> asyncHandler) {
  return listKeysAsync(new ListKeysRequest(), asyncHandler);
}
origin: aws/aws-sdk-java

/**
 * Simplified method form for invoking the ListKeys operation.
 *
 * @see #listKeysAsync(ListKeysRequest)
 */
@Override
public java.util.concurrent.Future<ListKeysResult> listKeysAsync() {
  return listKeysAsync(new ListKeysRequest());
}
origin: aws/aws-sdk-java

@Override
public ListKeysResult listKeys() {
  return listKeys(new ListKeysRequest());
}
origin: com.amazonaws/aws-java-sdk-bundle

/**
 * Simplified method form for invoking the ListKeys operation.
 *
 * @see #listKeysAsync(ListKeysRequest)
 */
@Override
public java.util.concurrent.Future<ListKeysResult> listKeysAsync() {
  return listKeysAsync(new ListKeysRequest());
}
origin: com.amazonaws/aws-java-sdk-bundle

/**
 * Simplified method form for invoking the ListKeys operation with an AsyncHandler.
 *
 * @see #listKeysAsync(ListKeysRequest, com.amazonaws.handlers.AsyncHandler)
 */
@Override
public java.util.concurrent.Future<ListKeysResult> listKeysAsync(com.amazonaws.handlers.AsyncHandler<ListKeysRequest, ListKeysResult> asyncHandler) {
  return listKeysAsync(new ListKeysRequest(), asyncHandler);
}
origin: Nextdoor/bender

@Override
public int hashCode() {
  final int prime = 31;
  int hashCode = 1;
  hashCode = prime * hashCode + ((getLimit() == null) ? 0 : getLimit().hashCode());
  hashCode = prime * hashCode + ((getMarker() == null) ? 0 : getMarker().hashCode());
  return hashCode;
}
com.amazonaws.services.kms.modelListKeysRequest

Most used methods

  • <init>
  • getLimit
    Use this parameter to specify the maximum number of items to return. When this value is present, AW
  • getMarker
    Use this parameter in a subsequent request after you receive a response with truncated results. Set
  • setLimit
    Use this parameter to specify the maximum number of items to return. When this value is present, AW
  • setMarker
    Use this parameter in a subsequent request after you receive a response with truncated results. Set
  • withLimit
    Use this parameter to specify the maximum number of items to return. When this value is present, AW

Popular classes and methods

  • putExtra (Intent)
  • getOriginalFilename (MultipartFile)
  • onCreateOptionsMenu (Activity)
  • Thread (java.lang)
    A Thread is a concurrent unit of execution. It has its own call stack for methods being invoked, the
  • Charset (java.nio.charset)
    A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
  • BitSet (java.util)
    This implementation uses bit groups of size 32 to keep track of when bits are set to true or false.
  • Locale (java.util)
    Locale represents a language/country/variant combination. Locales are used to alter the presentatio
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables us
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t

For IntelliJ IDEA and
Android Studio

  • Codota IntelliJ IDEA pluginCodota Android Studio pluginCode IndexSign in
  • EnterpriseFAQAboutContact Us
  • Terms of usePrivacy policyCodeboxFind Usages
Add Codota to your IDE (free)