congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
PutAttributesRequest.setAttributes
Code IndexAdd Tabnine 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)

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
  • compareTo (BigDecimal)
  • getApplicationContext (Context)
  • requestLocationUpdates (LocationManager)
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • Permission (java.security)
    Legacy security code; do not use.
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • XPath (javax.xml.xpath)
    XPath provides access to the XPath evaluation environment and expressions. Evaluation of XPath Expr
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • Top 15 Vim Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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