View source: R/simpledb_service.R
simpledb | R Documentation |
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.
simpledb(config = list(), credentials = list(), endpoint = NULL, region = NULL)
config |
Optional configuration of credentials, endpoint, and/or region.
|
credentials |
Optional credentials shorthand for the config parameter
|
endpoint |
Optional shorthand for complete URL to use for the constructed client. |
region |
Optional shorthand for AWS Region used in instantiating the client. |
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.
svc <- simpledb( config = list( credentials = list( creds = list( access_key_id = "string", secret_access_key = "string", session_token = "string" ), profile = "string", anonymous = "logical" ), endpoint = "string", region = "string", close_connection = "logical", timeout = "numeric", s3_force_path_style = "logical", sts_regional_endpoint = "string" ), credentials = list( creds = list( access_key_id = "string", secret_access_key = "string", session_token = "string" ), profile = "string", anonymous = "logical" ), endpoint = "string", region = "string" )
batch_delete_attributes | Performs multiple DeleteAttributes operations in a single call, which reduces round trips and latencies |
batch_put_attributes | The BatchPutAttributes operation creates or replaces attributes within one or more items |
create_domain | The CreateDomain operation creates a new domain |
delete_attributes | Deletes one or more attributes associated with an item |
delete_domain | The DeleteDomain operation deletes a domain |
domain_metadata | Returns 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_attributes | Returns all of the attributes associated with the specified item |
list_domains | The ListDomains operation lists all domains associated with the Access Key ID |
put_attributes | The PutAttributes operation creates or replaces attributes in an item |
select | The Select operation returns a set of attributes for ItemNames that match the select expression |
## Not run:
svc <- simpledb()
svc$batch_delete_attributes(
Foo = 123
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.