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

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

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

origin: aws/aws-sdk-java

/**
 * The name of the domain in which to perform the operation.
 * 
 * @param domainName
 *        The name of the domain in which to perform the operation.
 * @return Returns a reference to this object so that method calls can be chained together.
 */
public DeleteAttributesRequest withDomainName(String domainName) {
  setDomainName(domainName);
  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 domain in which to perform the operation.
 * 
 * @param domainName
 *        The name of the domain in which to perform the operation.
 * @return Returns a reference to this object so that method calls can be chained together.
 */
public DeleteAttributesRequest withDomainName(String domainName) {
  setDomainName(domainName);
  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.modelDeleteAttributesRequestsetDomainName

Javadoc

The name of the domain in which to perform the operation.

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
  • 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

  • Finding current android device location
  • addToBackStack (FragmentTransaction)
  • getContentResolver (Context)
  • getSupportFragmentManager (FragmentActivity)
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • JFileChooser (javax.swing)
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • Best plugins for Eclipse
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