createDomain: Create, delete and list domains in the AmazonDB

Description Usage Arguments Author(s) References Examples

Description

These functions allow an R user to create a new domain within the AmazonDB; delete an existing domain; query what domains the user owns and whether a particular one exists; retrieve information about a domain, e.g. when it was created, etc.

Usage

1
createDomain(name, key = getOption("AmazonAWS"), ...)

Arguments

name

the name of the domain

key

the private/secret authorization key for Amazon Web Services (AWS). This must be a character vector whose value is the secret key and whose name is the public identifier for the user. This is usually set as an R option named 'AmazonAWS'. (The same key can be used for all Amazon Web Services, but you do have to explicitly sign up for each service.

...

additional argments that are passed to curlPerform controlling how the HTTP request is performed.

Author(s)

Duncan Temple Lang

References

http://docs.amazonwebservices.com/AmazonSimpleDB/latest/DeveloperGuide/

Examples

1
2
3
4
5
6
7
8
9
if(!is.null(getOption("AmazonAWS"))) {
listDomains()

createDomain('test_dtl2')
'test_dtl2' 
existsDomain('test_dtl2')

deleteDomain('test_dtl2')
}

omegahat/RAmazonDB documentation built on May 24, 2019, 1:52 p.m.