Codota Logo
PutAttributesRequest.setAttributes
Code IndexAdd Codota to your IDE (free)

How to use
setAttributes
method
in
com.amazonaws.services.simpledb.model.PutAttributesRequest

Best Java code snippets using com.amazonaws.services.simpledb.model.PutAttributesRequest.setAttributes (Showing top 11 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
StringBuilder s =
  • Codota Iconnew StringBuilder()
  • Codota Iconnew StringBuilder(32)
  • Codota IconString str;new StringBuilder(str)
  • Smart code suggestions by Codota
}
origin: aws/aws-sdk-java

/**
 * The list of attributes.
 * 
 * @param attributes
 *        The list of attributes.
 * @return Returns a reference to this object so that method calls can be chained together.
 */
public PutAttributesRequest withAttributes(java.util.Collection<ReplaceableAttribute> attributes) {
  setAttributes(attributes);
  return this;
}
origin: aws/aws-sdk-java

/**
 * Constructs a new PutAttributesRequest object. Callers should use the setter or fluent setter (with...) methods to
 * initialize any additional object members.
 * 
 * @param domainName
 *        The name of the domain in which to perform the operation.
 * @param itemName
 *        The name of the item.
 * @param attributes
 *        The list of attributes.
 */
public PutAttributesRequest(String domainName, String itemName, java.util.List<ReplaceableAttribute> attributes) {
  setDomainName(domainName);
  setItemName(itemName);
  setAttributes(attributes);
}
origin: aws/aws-sdk-java

/**
 * The list of attributes.
 * <p>
 * <b>NOTE:</b> This method appends the values to the existing list (if any). Use
 * {@link #setAttributes(java.util.Collection)} or {@link #withAttributes(java.util.Collection)} if you want to
 * override the existing values.
 * </p>
 * 
 * @param attributes
 *        The list of attributes.
 * @return Returns a reference to this object so that method calls can be chained together.
 */
public PutAttributesRequest withAttributes(ReplaceableAttribute... attributes) {
  if (this.attributes == null) {
    setAttributes(new com.amazonaws.internal.SdkInternalList<ReplaceableAttribute>(attributes.length));
  }
  for (ReplaceableAttribute ele : attributes) {
    this.attributes.add(ele);
  }
  return this;
}
origin: aws/aws-sdk-java

/**
 * Constructs a new PutAttributesRequest object. Callers should use the setter or fluent setter (with...) methods to
 * initialize any additional object members.
 * 
 * @param domainName
 *        The name of the domain in which to perform the operation.
 * @param itemName
 *        The name of the item.
 * @param attributes
 *        The list of attributes.
 * @param expected
 *        The update condition which, if specified, determines whether the specified attributes will be updated or
 *        not. The update condition must be satisfied in order for this request to be processed and the attributes
 *        to be updated.
 */
public PutAttributesRequest(String domainName, String itemName, java.util.List<ReplaceableAttribute> attributes, UpdateCondition expected) {
  setDomainName(domainName);
  setItemName(itemName);
  setAttributes(attributes);
  setExpected(expected);
}
origin: aws-amplify/aws-sdk-android

/**
 * The list of attributes.
 * <p>
 * Returns a reference to this object so that method calls can be chained together.
 *
 * @param attributes The list of attributes.
 *
 * @return A reference to this updated object so that method calls can be chained
 *         together.
 */
public PutAttributesRequest withAttributes(ReplaceableAttribute... attributes) {
  if (getAttributes() == null) setAttributes(new java.util.ArrayList<ReplaceableAttribute>(attributes.length));
  for (ReplaceableAttribute value : attributes) {
    getAttributes().add(value);
  }
  return this;
}

origin: aws-amplify/aws-sdk-android

/**
 * Constructs a new PutAttributesRequest object.
 * Callers should use the setter or fluent setter (with...) methods to
 * initialize any additional object members.
 * 
 * @param domainName The name of the domain in which to perform the
 * operation.
 * @param itemName The name of the item.
 * @param attributes The list of attributes.
 */
public PutAttributesRequest(String domainName, String itemName, java.util.List<ReplaceableAttribute> attributes) {
  setDomainName(domainName);
  setItemName(itemName);
  setAttributes(attributes);
}
origin: aws-amplify/aws-sdk-android

/**
 * Constructs a new PutAttributesRequest object.
 * Callers should use the setter or fluent setter (with...) methods to
 * initialize any additional object members.
 * 
 * @param domainName The name of the domain in which to perform the
 * operation.
 * @param itemName The name of the item.
 * @param attributes The list of attributes.
 * @param expected The update condition which, if specified, determines
 * whether the specified attributes will be updated or not. The update
 * condition must be satisfied in order for this request to be processed
 * and the attributes to be updated.
 */
public PutAttributesRequest(String domainName, String itemName, java.util.List<ReplaceableAttribute> attributes, UpdateCondition expected) {
  setDomainName(domainName);
  setItemName(itemName);
  setAttributes(attributes);
  setExpected(expected);
}
origin: com.amazonaws/aws-java-sdk-simpledb

/**
 * The list of attributes.
 * 
 * @param attributes
 *        The list of attributes.
 * @return Returns a reference to this object so that method calls can be chained together.
 */
public PutAttributesRequest withAttributes(java.util.Collection<ReplaceableAttribute> attributes) {
  setAttributes(attributes);
  return this;
}
origin: com.amazonaws/aws-java-sdk-simpledb

/**
 * Constructs a new PutAttributesRequest object. Callers should use the setter or fluent setter (with...) methods to
 * initialize any additional object members.
 * 
 * @param domainName
 *        The name of the domain in which to perform the operation.
 * @param itemName
 *        The name of the item.
 * @param attributes
 *        The list of attributes.
 */
public PutAttributesRequest(String domainName, String itemName, java.util.List<ReplaceableAttribute> attributes) {
  setDomainName(domainName);
  setItemName(itemName);
  setAttributes(attributes);
}
origin: com.amazonaws/aws-java-sdk-simpledb

/**
 * The list of attributes.
 * <p>
 * <b>NOTE:</b> This method appends the values to the existing list (if any). Use
 * {@link #setAttributes(java.util.Collection)} or {@link #withAttributes(java.util.Collection)} if you want to
 * override the existing values.
 * </p>
 * 
 * @param attributes
 *        The list of attributes.
 * @return Returns a reference to this object so that method calls can be chained together.
 */
public PutAttributesRequest withAttributes(ReplaceableAttribute... attributes) {
  if (this.attributes == null) {
    setAttributes(new com.amazonaws.internal.SdkInternalList<ReplaceableAttribute>(attributes.length));
  }
  for (ReplaceableAttribute ele : attributes) {
    this.attributes.add(ele);
  }
  return this;
}
origin: com.amazonaws/aws-java-sdk-simpledb

/**
 * Constructs a new PutAttributesRequest object. Callers should use the setter or fluent setter (with...) methods to
 * initialize any additional object members.
 * 
 * @param domainName
 *        The name of the domain in which to perform the operation.
 * @param itemName
 *        The name of the item.
 * @param attributes
 *        The list of attributes.
 * @param expected
 *        The update condition which, if specified, determines whether the specified attributes will be updated or
 *        not. The update condition must be satisfied in order for this request to be processed and the attributes
 *        to be updated.
 */
public PutAttributesRequest(String domainName, String itemName, java.util.List<ReplaceableAttribute> attributes, UpdateCondition expected) {
  setDomainName(domainName);
  setItemName(itemName);
  setAttributes(attributes);
  setExpected(expected);
}
com.amazonaws.services.simpledb.modelPutAttributesRequestsetAttributes

Javadoc

The list of attributes.

Popular methods of PutAttributesRequest

  • <init>
    Constructs a new PutAttributesRequest object. Callers should use the setter or fluent setter (with..
  • setExpected
    The update condition which, if specified, determines whether the specified attributes will be update
  • withAttributes
    The list of attributes.NOTE: This method appends the values to the existing list (if any). Use #setA
  • withDomainName
    The name of the domain in which to perform the operation.
  • withItemName
    The name of the item.
  • getAttributes
    The list of attributes.
  • getDomainName
    The name of the domain in which to perform the operation.
  • getExpected
    The update condition which, if specified, determines whether the specified attributes will be update
  • getItemName
    The name of the item.
  • setDomainName
    The name of the domain in which to perform the operation.
  • setItemName
    The name of the item.
  • withExpected
    The update condition which, if specified, determines whether the specified attributes will be update
  • setItemName,
  • withExpected

Popular in Java

  • Making http post requests using okhttp
  • setContentView (Activity)
  • setScale (BigDecimal)
  • scheduleAtFixedRate (ScheduledExecutorService)
    Creates and executes a periodic action that becomes enabled first after the given initial delay, and
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • FileWriter (java.io)
    Convenience class for writing character files. The constructors of this class assume that the defaul
  • ArrayList (java.util)
    Resizable-array implementation of the List interface. Implements all optional list operations, and p
  • Queue (java.util)
    A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • SSLHandshakeException (javax.net.ssl)
    The exception that is thrown when a handshake could not be completed successfully.
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