Learn R Programming

paws.database (version 0.1.12)

dax: Amazon DynamoDB Accelerator (DAX)

Description

DAX is a managed caching service engineered for Amazon DynamoDB. DAX dramatically speeds up database reads by caching frequently-accessed data from DynamoDB, so applications can access that data with sub-millisecond latency. You can create a DAX cluster easily, using the AWS Management Console. With a few simple modifications to your code, your application can begin taking advantage of the DAX cluster and realize significant improvements in read performance.

Usage

dax(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 <- dax(
  config = list(
    credentials = list(
      creds = list(
        access_key_id = "string",
        secret_access_key = "string",
        session_token = "string"
      ),
      profile = "string"
    ),
    endpoint = "string",
    region = "string"
  )
)

Operations

create_clusterCreates a DAX cluster
create_parameter_groupCreates a new parameter group
create_subnet_groupCreates a new subnet group
decrease_replication_factorRemoves one or more nodes from a DAX cluster
delete_clusterDeletes a previously provisioned DAX cluster
delete_parameter_groupDeletes the specified parameter group
delete_subnet_groupDeletes a subnet group
describe_clustersReturns information about all provisioned DAX clusters if no cluster identifier is specified, or about a specific DAX cluster if a cluster identifier is supplied
describe_default_parametersReturns the default system parameter information for the DAX caching software
describe_eventsReturns events related to DAX clusters and parameter groups
describe_parameter_groupsReturns a list of parameter group descriptions
describe_parametersReturns the detailed parameter list for a particular parameter group
describe_subnet_groupsReturns a list of subnet group descriptions
increase_replication_factorAdds one or more nodes to a DAX cluster
list_tagsList all of the tags for a DAX cluster
reboot_nodeReboots a single node of a DAX cluster
tag_resourceAssociates a set of tags with a DAX resource
untag_resourceRemoves the association of tags from a DAX resource
update_clusterModifies the settings for a DAX cluster
update_parameter_groupModifies the parameters of a parameter group
update_subnet_groupModifies an existing subnet group

Examples

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

Run the code above in your browser using DataLab