Learn R Programming

paws.database (version 0.1.12)

elasticache: Amazon ElastiCache

Description

Amazon ElastiCache is a web service that makes it easier to set up, operate, and scale a distributed cache in the cloud.

With ElastiCache, customers get all of the benefits of a high-performance, in-memory cache with less of the administrative burden involved in launching and managing a distributed cache. The service makes setup, scaling, and cluster failure handling much simpler than in a self-managed cache deployment.

In addition, through integration with Amazon CloudWatch, customers get enhanced visibility into the key performance statistics associated with their cache and can receive alarms if a part of their cache runs hot.

Usage

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

Operations

add_tags_to_resourceAdds up to 50 cost allocation tags to the named resource
authorize_cache_security_group_ingressAllows network ingress to a cache security group
batch_apply_update_actionApply the service update
batch_stop_update_actionStop the service update
complete_migrationComplete the migration of data
copy_snapshotMakes a copy of an existing snapshot
create_cache_clusterCreates a cluster
create_cache_parameter_groupCreates a new Amazon ElastiCache cache parameter group
create_cache_security_groupCreates a new cache security group
create_cache_subnet_groupCreates a new cache subnet group
create_global_replication_groupGlobal Datastore for Redis offers fully managed, fast, reliable and secure cross-region replication
create_replication_groupCreates a Redis (cluster mode disabled) or a Redis (cluster mode enabled) replication group
create_snapshotCreates a copy of an entire cluster or replication group at a specific moment in time
create_userFor Redis engine version 6
create_user_groupFor Redis engine version 6
decrease_node_groups_in_global_replication_groupDecreases the number of node groups in a Global Datastore
decrease_replica_countDynamically decreases the number of replicas in a Redis (cluster mode disabled) replication group or the number of replica nodes in one or more node groups (shards) of a Redis (cluster mode enabled) replication group
delete_cache_clusterDeletes a previously provisioned cluster
delete_cache_parameter_groupDeletes the specified cache parameter group
delete_cache_security_groupDeletes a cache security group
delete_cache_subnet_groupDeletes a cache subnet group
delete_global_replication_groupDeleting a Global Datastore is a two-step process:
delete_replication_groupDeletes an existing replication group
delete_snapshotDeletes an existing snapshot
delete_userFor Redis engine version 6
delete_user_groupFor Redis engine version 6
describe_cache_clustersReturns information about all provisioned clusters if no cluster identifier is specified, or about a specific cache cluster if a cluster identifier is supplied
describe_cache_engine_versionsReturns a list of the available cache engines and their versions
describe_cache_parameter_groupsReturns a list of cache parameter group descriptions
describe_cache_parametersReturns the detailed parameter list for a particular cache parameter group
describe_cache_security_groupsReturns a list of cache security group descriptions
describe_cache_subnet_groupsReturns a list of cache subnet group descriptions
describe_engine_default_parametersReturns the default engine and system parameter information for the specified cache engine
describe_eventsReturns events related to clusters, cache security groups, and cache parameter groups
describe_global_replication_groupsReturns information about a particular global replication group
describe_replication_groupsReturns information about a particular replication group
describe_reserved_cache_nodesReturns information about reserved cache nodes for this account, or about a specified reserved cache node
describe_reserved_cache_nodes_offeringsLists available reserved cache node offerings
describe_service_updatesReturns details of the service updates
describe_snapshotsReturns information about cluster or replication group snapshots
describe_update_actionsReturns details of the update actions
describe_user_groupsReturns a list of user groups
describe_usersReturns a list of users
disassociate_global_replication_groupRemove a secondary cluster from the Global Datastore using the Global Datastore name
failover_global_replication_groupUsed to failover the primary region to a selected secondary region
increase_node_groups_in_global_replication_groupIncrease the number of node groups in the Global Datastore
increase_replica_countDynamically increases the number of replics in a Redis (cluster mode disabled) replication group or the number of replica nodes in one or more node groups (shards) of a Redis (cluster mode enabled) replication group
list_allowed_node_type_modificationsLists all available node types that you can scale your Redis cluster's or replication group's current node type
list_tags_for_resourceLists all cost allocation tags currently on the named resource
modify_cache_clusterModifies the settings for a cluster
modify_cache_parameter_groupModifies the parameters of a cache parameter group
modify_cache_subnet_groupModifies an existing cache subnet group
modify_global_replication_groupModifies the settings for a Global Datastore
modify_replication_groupModifies the settings for a replication group
modify_replication_group_shard_configurationModifies a replication group's shards (node groups) by allowing you to add shards, remove shards, or rebalance the keyspaces among exisiting shards
modify_userChanges user password(s) and/or access string
modify_user_groupChanges the list of users that belong to the user group
purchase_reserved_cache_nodes_offeringAllows you to purchase a reserved cache node offering
rebalance_slots_in_global_replication_groupRedistribute slots to ensure uniform distribution across existing shards in the cluster
reboot_cache_clusterReboots some, or all, of the cache nodes within a provisioned cluster
remove_tags_from_resourceRemoves the tags identified by the TagKeys list from the named resource
reset_cache_parameter_groupModifies the parameters of a cache parameter group to the engine or system default value
revoke_cache_security_group_ingressRevokes ingress from a cache security group
start_migrationStart the migration of data
test_failoverRepresents the input of a TestFailover operation which test automatic failover on a specified node group (called shard in the console) in a replication group (called cluster in the console)

Examples

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

Run the code above in your browser using DataLab