integrations.sh
← all integrations

amazonaws.com – rds-data

OpenAPI apis-guru cloud

Amazon RDS Data Service

Amazon RDS provides an HTTP endpoint to run SQL statements on an Amazon Aurora Serverless v1 DB cluster. To run these statements, you work with the Data Service API.

The Data Service API isn't supported on Amazon Aurora Serverless v2 DB clusters.

For more information about the Data Service API, see in the Amazon Aurora User Guide.

Homepage
https://api.apis.guru/v2/specs/amazonaws.com:rds-data/2018-08-01.json
Provider
amazonaws.com:rds-data / rds-data
OpenAPI version
3.0.0
Spec (JSON)
https://api.apis.guru/v2/specs/amazonaws.com/rds-data/2018-08-01/openapi.json
Spec (YAML)
https://api.apis.guru/v2/specs/amazonaws.com/rds-data/2018-08-01/openapi.yaml

Tools (8)

Extracted live via the executor SDK.

  • batchExecute.batchExecuteStatement

    Runs a batch SQL statement over an array of data.

    You can run bulk update and insert operations for multiple records using a DML statement with different parameter sets. Bulk operations can provide a significant performance improvement over individual insert and update operations.

    If a call isn't part of a transaction because it doesn't include the transactionID parameter, changes that result from the call are committed automatically.

    There isn't a fixed upper limit on the number of parameter sets. However, the maximum size of the HTTP request submitted through the Data API is 4 MiB. If the request exceeds this limit, the Data API returns an error and doesn't process the request. This 4-MiB limit includes the size of the HTTP headers and the JSON notation in the request. Thus, the number of parameter sets that you can include depends on a combination of factors, such as the size of the SQL statement and the size of each parameter set.

    The response size limit is 1 MiB. If the call returns more than 1 MiB of response data, the call is terminated.

  • beginTransaction.postOperation

    Starts a SQL transaction.

    A transaction can run for a maximum of 24 hours. A transaction is terminated and rolled back automatically after 24 hours.

    A transaction times out if no calls use its transaction ID in three minutes. If a transaction times out before it's committed, it's rolled back automatically.

    DDL statements inside a transaction cause an implicit commit. We recommend that you run each DDL statement in a separate ExecuteStatement call with continueAfterTimeout enabled.

  • commitTransaction.postOperation

    Ends a SQL transaction started with the BeginTransaction operation and commits the changes.

  • execute.executeStatement

    Runs a SQL statement against a database.

    If a call isn't part of a transaction because it doesn't include the transactionID parameter, changes that result from the call are committed automatically.

    If the binary response data from the database is more than 1 MB, the call is terminated.

  • executeSql.postOperation

    Runs one or more SQL statements.

    This operation is deprecated. Use the BatchExecuteStatement or ExecuteStatement operation.

  • rollbackTransaction.postOperation

    Performs a rollback of a transaction. Rolling back a transaction cancels its changes.

  • openapi.previewSpec

    Preview an OpenAPI document before adding it as a source

  • openapi.addSource

    Add an OpenAPI source and register its operations as tools