Codota Logo
DeleteAttributesRequest.setItemName
Code IndexAdd Codota 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)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
LocalDateTime l =
  • Codota Iconnew LocalDateTime()
  • Codota IconLocalDateTime.now()
  • Codota IconDateTimeFormatter formatter;String text;formatter.parseLocalDateTime(text)
  • Smart code suggestions by Codota
}
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

  • Reactive rest calls using spring rest template
  • getSupportFragmentManager (FragmentActivity)
  • getApplicationContext (Context)
  • runOnUiThread (Activity)
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • List (java.util)
    A List is a collection which maintains an ordering for its elements. Every element in the List has a
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • LogFactory (org.apache.commons.logging)
    A minimal incarnation of Apache Commons Logging's LogFactory API, providing just the common Log look
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