Tabnine Logo
DeleteAttributesRequest.setItemName
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: aws/aws-sdk-java

/**
 * The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or
 * more value-attribute pairs.
 * 
 * @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.
 * @return Returns a reference to this object so that method calls can be chained together.
 */
public DeleteAttributesRequest withItemName(String itemName) {
  setItemName(itemName);
  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.
 */
public DeleteAttributesRequest(String domainName, String itemName) {
  setDomainName(domainName);
  setItemName(itemName);
}
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

/**
 * 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

/**
 * 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.
 */
public DeleteAttributesRequest(String domainName, String itemName) {
  setDomainName(domainName);
  setItemName(itemName);
}
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

/**
 * The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or
 * more value-attribute pairs.
 * 
 * @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.
 * @return Returns a reference to this object so that method calls can be chained together.
 */
public DeleteAttributesRequest withItemName(String itemName) {
  setItemName(itemName);
  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.
 */
public DeleteAttributesRequest(String domainName, String itemName) {
  setDomainName(domainName);
  setItemName(itemName);
}
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

/**
 * 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.modelDeleteAttributesRequestsetItemName

Javadoc

The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs.

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
  • setAttributes
    A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data t
  • 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
  • setExpected

Popular in Java

  • Making http post requests using okhttp
  • runOnUiThread (Activity)
  • getSystemService (Context)
  • getApplicationContext (Context)
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • FileUtils (org.apache.commons.io)
    General file manipulation utilities. Facilities are provided in the following areas: * writing to a
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • Top 12 Jupyter Notebook extensions
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