Learn R Programming

paws.database (version 0.1.12)

neptune: Amazon Neptune

Description

Amazon Neptune is a fast, reliable, fully-managed graph database service that makes it easy to build and run applications that work with highly connected datasets. The core of Amazon Neptune is a purpose-built, high-performance graph database engine optimized for storing billions of relationships and querying the graph with milliseconds latency. Amazon Neptune supports popular graph models Property Graph and W3C's RDF, and their respective query languages Apache TinkerPop Gremlin and SPARQL, allowing you to easily build queries that efficiently navigate highly connected datasets. Neptune powers graph use cases such as recommendation engines, fraud detection, knowledge graphs, drug discovery, and network security.

This interface reference for Amazon Neptune contains documentation for a programming or command line interface you can use to manage Amazon Neptune. Note that Amazon Neptune is asynchronous, which means that some interfaces might require techniques such as polling or callback functions to determine when a command has been applied. In this reference, the parameter descriptions indicate whether a command is applied immediately, on the next instance reboot, or during the maintenance window. The reference structure is as follows, and we list following some related topics from the user guide.

Usage

neptune(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 <- neptune(
  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_role_to_db_clusterAssociates an Identity and Access Management (IAM) role from an Neptune DB cluster
add_source_identifier_to_subscriptionAdds a source identifier to an existing event notification subscription
add_tags_to_resourceAdds metadata tags to an Amazon Neptune resource
apply_pending_maintenance_actionApplies a pending maintenance action to a resource (for example, to a DB instance)
copy_db_cluster_parameter_groupCopies the specified DB cluster parameter group
copy_db_cluster_snapshotCopies a snapshot of a DB cluster
copy_db_parameter_groupCopies the specified DB parameter group
create_db_clusterCreates a new Amazon Neptune DB cluster
create_db_cluster_endpointCreates a new custom endpoint and associates it with an Amazon Neptune DB cluster
create_db_cluster_parameter_groupCreates a new DB cluster parameter group
create_db_cluster_snapshotCreates a snapshot of a DB cluster
create_db_instanceCreates a new DB instance
create_db_parameter_groupCreates a new DB parameter group
create_db_subnet_groupCreates a new DB subnet group
create_event_subscriptionCreates an event notification subscription
delete_db_clusterThe DeleteDBCluster action deletes a previously provisioned DB cluster
delete_db_cluster_endpointDeletes a custom endpoint and removes it from an Amazon Neptune DB cluster
delete_db_cluster_parameter_groupDeletes a specified DB cluster parameter group
delete_db_cluster_snapshotDeletes a DB cluster snapshot
delete_db_instanceThe DeleteDBInstance action deletes a previously provisioned DB instance
delete_db_parameter_groupDeletes a specified DBParameterGroup
delete_db_subnet_groupDeletes a DB subnet group
delete_event_subscriptionDeletes an event notification subscription
describe_db_cluster_endpointsReturns information about endpoints for an Amazon Neptune DB cluster
describe_db_cluster_parameter_groupsReturns a list of DBClusterParameterGroup descriptions
describe_db_cluster_parametersReturns the detailed parameter list for a particular DB cluster parameter group
describe_db_clustersReturns information about provisioned DB clusters, and supports pagination
describe_db_cluster_snapshot_attributesReturns a list of DB cluster snapshot attribute names and values for a manual DB cluster snapshot
describe_db_cluster_snapshotsReturns information about DB cluster snapshots
describe_db_engine_versionsReturns a list of the available DB engines
describe_db_instancesReturns information about provisioned instances, and supports pagination
describe_db_parameter_groupsReturns a list of DBParameterGroup descriptions
describe_db_parametersReturns the detailed parameter list for a particular DB parameter group
describe_db_subnet_groupsReturns a list of DBSubnetGroup descriptions
describe_engine_default_cluster_parametersReturns the default engine and system parameter information for the cluster database engine
describe_engine_default_parametersReturns the default engine and system parameter information for the specified database engine
describe_event_categoriesDisplays a list of categories for all event source types, or, if specified, for a specified source type
describe_eventsReturns events related to DB instances, DB security groups, DB snapshots, and DB parameter groups for the past 14 days
describe_event_subscriptionsLists all the subscription descriptions for a customer account
describe_orderable_db_instance_optionsReturns a list of orderable DB instance options for the specified engine
describe_pending_maintenance_actionsReturns a list of resources (for example, DB instances) that have at least one pending maintenance action
describe_valid_db_instance_modificationsYou can call DescribeValidDBInstanceModifications to learn what modifications you can make to your DB instance
failover_db_clusterForces a failover for a DB cluster
list_tags_for_resourceLists all tags on an Amazon Neptune resource
modify_db_clusterModify a setting for a DB cluster
modify_db_cluster_endpointModifies the properties of an endpoint in an Amazon Neptune DB cluster
modify_db_cluster_parameter_groupModifies the parameters of a DB cluster parameter group
modify_db_cluster_snapshot_attributeAdds an attribute and values to, or removes an attribute and values from, a manual DB cluster snapshot
modify_db_instanceModifies settings for a DB instance
modify_db_parameter_groupModifies the parameters of a DB parameter group
modify_db_subnet_groupModifies an existing DB subnet group
modify_event_subscriptionModifies an existing event notification subscription
promote_read_replica_db_clusterNot supported
reboot_db_instanceYou might need to reboot your DB instance, usually for maintenance reasons
remove_role_from_db_clusterDisassociates an Identity and Access Management (IAM) role from a DB cluster
remove_source_identifier_from_subscriptionRemoves a source identifier from an existing event notification subscription
remove_tags_from_resourceRemoves metadata tags from an Amazon Neptune resource
reset_db_cluster_parameter_groupModifies the parameters of a DB cluster parameter group to the default value
reset_db_parameter_groupModifies the parameters of a DB parameter group to the engine/system default value
restore_db_cluster_from_snapshotCreates a new DB cluster from a DB snapshot or DB cluster snapshot
restore_db_cluster_to_point_in_timeRestores a DB cluster to an arbitrary point in time
start_db_clusterStarts an Amazon Neptune DB cluster that was stopped using the AWS console, the AWS CLI stop-db-cluster command, or the StopDBCluster API
stop_db_clusterStops an Amazon Neptune DB cluster

Examples

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

Run the code above in your browser using DataLab