congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
DeleteAttributesRequest.setAttributes
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: aws/aws-sdk-java

/**
 * A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be
 * assigned to items.
 * 
 * @param attributes
 *        A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that
 *        can be assigned to items.
 * @return Returns a reference to this object so that method calls can be chained together.
 */
public DeleteAttributesRequest withAttributes(java.util.Collection<Attribute> attributes) {
  setAttributes(attributes);
  return this;
}
origin: aws/aws-sdk-java

/**
 * Constructs a new DeleteAttributesRequest 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. Similar to rows on a spreadsheet, items represent individual objects that contain
 *        one or more value-attribute pairs.
 * @param attributes
 *        A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that
 *        can be assigned to items.
 */
public DeleteAttributesRequest(String domainName, String itemName, java.util.List<Attribute> attributes) {
  setDomainName(domainName);
  setItemName(itemName);
  setAttributes(attributes);
}
origin: aws/aws-sdk-java

/**
 * A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be
 * assigned to items.
 * <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
 *        A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that
 *        can be assigned to items.
 * @return Returns a reference to this object so that method calls can be chained together.
 */
public DeleteAttributesRequest withAttributes(Attribute... attributes) {
  if (this.attributes == null) {
    setAttributes(new com.amazonaws.internal.SdkInternalList<Attribute>(attributes.length));
  }
  for (Attribute ele : attributes) {
    this.attributes.add(ele);
  }
  return this;
}
origin: aws/aws-sdk-java

/**
 * Constructs a new DeleteAttributesRequest 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. Similar to rows on a spreadsheet, items represent individual objects that contain
 *        one or more value-attribute pairs.
 * @param attributes
 *        A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that
 *        can be assigned to items.
 * @param expected
 *        The update condition which, if specified, determines whether the specified attributes will be deleted or
 *        not. The update condition must be satisfied in order for this request to be processed and the attributes
 *        to be deleted.
 */
public DeleteAttributesRequest(String domainName, String itemName, java.util.List<Attribute> attributes, UpdateCondition expected) {
  setDomainName(domainName);
  setItemName(itemName);
  setAttributes(attributes);
  setExpected(expected);
}
origin: aws-amplify/aws-sdk-android

/**
 * A list of Attributes. Similar to columns on a spreadsheet, attributes
 * represent categories of data that can be assigned to items.
 * <p>
 * Returns a reference to this object so that method calls can be chained together.
 *
 * @param attributes A list of Attributes. Similar to columns on a spreadsheet, attributes
 *         represent categories of data that can be assigned to items.
 *
 * @return A reference to this updated object so that method calls can be chained
 *         together.
 */
public DeleteAttributesRequest withAttributes(Attribute... attributes) {
  if (getAttributes() == null) setAttributes(new java.util.ArrayList<Attribute>(attributes.length));
  for (Attribute value : attributes) {
    getAttributes().add(value);
  }
  return this;
}

origin: aws-amplify/aws-sdk-android

/**
 * Constructs a new DeleteAttributesRequest 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. Similar to rows on a
 * spreadsheet, items represent individual objects that contain one or
 * more value-attribute pairs.
 * @param attributes A list of Attributes. Similar to columns on a
 * spreadsheet, attributes represent categories of data that can be
 * assigned to items.
 */
public DeleteAttributesRequest(String domainName, String itemName, java.util.List<Attribute> attributes) {
  setDomainName(domainName);
  setItemName(itemName);
  setAttributes(attributes);
}
origin: aws-amplify/aws-sdk-android

/**
 * Constructs a new DeleteAttributesRequest 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. Similar to rows on a
 * spreadsheet, items represent individual objects that contain one or
 * more value-attribute pairs.
 * @param attributes A list of Attributes. Similar to columns on a
 * spreadsheet, attributes represent categories of data that can be
 * assigned to items.
 * @param expected The update condition which, if specified, determines
 * whether the specified attributes will be deleted or not. The update
 * condition must be satisfied in order for this request to be processed
 * and the attributes to be deleted.
 */
public DeleteAttributesRequest(String domainName, String itemName, java.util.List<Attribute> attributes, UpdateCondition expected) {
  setDomainName(domainName);
  setItemName(itemName);
  setAttributes(attributes);
  setExpected(expected);
}
origin: com.amazonaws/aws-java-sdk-simpledb

/**
 * A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be
 * assigned to items.
 * 
 * @param attributes
 *        A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that
 *        can be assigned to items.
 * @return Returns a reference to this object so that method calls can be chained together.
 */
public DeleteAttributesRequest withAttributes(java.util.Collection<Attribute> attributes) {
  setAttributes(attributes);
  return this;
}
origin: com.amazonaws/aws-java-sdk-simpledb

/**
 * Constructs a new DeleteAttributesRequest 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. Similar to rows on a spreadsheet, items represent individual objects that contain
 *        one or more value-attribute pairs.
 * @param attributes
 *        A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that
 *        can be assigned to items.
 */
public DeleteAttributesRequest(String domainName, String itemName, java.util.List<Attribute> attributes) {
  setDomainName(domainName);
  setItemName(itemName);
  setAttributes(attributes);
}
origin: com.amazonaws/aws-java-sdk-simpledb

/**
 * A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be
 * assigned to items.
 * <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
 *        A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that
 *        can be assigned to items.
 * @return Returns a reference to this object so that method calls can be chained together.
 */
public DeleteAttributesRequest withAttributes(Attribute... attributes) {
  if (this.attributes == null) {
    setAttributes(new com.amazonaws.internal.SdkInternalList<Attribute>(attributes.length));
  }
  for (Attribute ele : attributes) {
    this.attributes.add(ele);
  }
  return this;
}
origin: com.amazonaws/aws-java-sdk-simpledb

/**
 * Constructs a new DeleteAttributesRequest 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. Similar to rows on a spreadsheet, items represent individual objects that contain
 *        one or more value-attribute pairs.
 * @param attributes
 *        A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that
 *        can be assigned to items.
 * @param expected
 *        The update condition which, if specified, determines whether the specified attributes will be deleted or
 *        not. The update condition must be satisfied in order for this request to be processed and the attributes
 *        to be deleted.
 */
public DeleteAttributesRequest(String domainName, String itemName, java.util.List<Attribute> attributes, UpdateCondition expected) {
  setDomainName(domainName);
  setItemName(itemName);
  setAttributes(attributes);
  setExpected(expected);
}
com.amazonaws.services.simpledb.modelDeleteAttributesRequestsetAttributes

Javadoc

A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items.

Popular methods of DeleteAttributesRequest

  • <init>
    Constructs a new DeleteAttributesRequest object. Callers should use the setter or fluent setter (wit
  • withAttributes
    A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data t
  • withDomainName
    The name of the domain in which to perform the operation.
  • withItemName
    The name of the item. Similar to rows on a spreadsheet, items represent individual objects that cont
  • getAttributes
    A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data t
  • 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 delete
  • getItemName
    The name of the item. Similar to rows on a spreadsheet, items represent individual objects that cont
  • setDomainName
    The name of the domain in which to perform the operation.
  • setExpected
    The update condition which, if specified, determines whether the specified attributes will be delete
  • setItemName
    The name of the item. Similar to rows on a spreadsheet, items represent individual objects that cont
  • setItemName

Popular in Java

  • Parsing JSON documents to java classes using gson
  • setRequestProperty (URLConnection)
  • onCreateOptionsMenu (Activity)
  • notifyDataSetChanged (ArrayAdapter)
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • Join (org.hibernate.mapping)
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • Option (scala)
  • PhpStorm for WordPress
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