Learn R Programming

paws.database (version 0.1.12)

simpledb: Amazon SimpleDB

Description

Amazon SimpleDB is a web service providing the core database functions of data indexing and querying in the cloud. By offloading the time and effort associated with building and operating a web-scale database, SimpleDB provides developers the freedom to focus on application development.

A traditional, clustered relational database requires a sizable upfront capital outlay, is complex to design, and often requires extensive and repetitive database administration. Amazon SimpleDB is dramatically simpler, requiring no schema, automatically indexing your data and providing a simple API for storage and access. This approach eliminates the administrative burden of data modeling, index maintenance, and performance tuning. Developers gain access to this functionality within Amazon's proven computing environment, are able to scale instantly, and pay only for what they use.

Visit http://aws.amazon.com/simpledb/ for more information.

Usage

simpledb(config = list())

Value

A client for the service. You can call the service's operations using syntax like svc$operation(...), where svc is the name you've assigned to the client. The available operations are listed in the Operations section.

Arguments

config

Optional configuration of credentials, endpoint, and/or region.

Service syntax

svc <- simpledb(
  config = list(
    credentials = list(
      creds = list(
        access_key_id = "string",
        secret_access_key = "string",
        session_token = "string"
      ),
      profile = "string"
    ),
    endpoint = "string",
    region = "string"
  )
)

Operations

batch_delete_attributesPerforms multiple DeleteAttributes operations in a single call, which reduces round trips and latencies
batch_put_attributesThe BatchPutAttributes operation creates or replaces attributes within one or more items
create_domainThe CreateDomain operation creates a new domain
delete_attributesDeletes one or more attributes associated with an item
delete_domainThe DeleteDomain operation deletes a domain
domain_metadataReturns information about the domain, including when the domain was created, the number of items and attributes in the domain, and the size of the attribute names and values
get_attributesReturns all of the attributes associated with the specified item
list_domainsThe ListDomains operation lists all domains associated with the Access Key ID
put_attributesThe PutAttributes operation creates or replaces attributes in an item
selectThe Select operation returns a set of attributes for ItemNames that match the select expression

Examples

Run this code
if (FALSE) {
svc <- simpledb()
svc$batch_delete_attributes(
  Foo = 123
)
}

Run the code above in your browser using DataLab