You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(client-rds-data): Support to receive SQL query results in the form of a simplified JSON string. This enables developers using the new JSON string format to more easily convert it to an object using popular JSON string parsing libraries.
Copy file name to clipboardExpand all lines: clients/client-rds-data/README.md
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -12,8 +12,9 @@ AWS SDK for JavaScript RDSData Client for Node.js, Browser and React Native.
12
12
<p>Amazon RDS provides an HTTP endpoint to run SQL statements on an Amazon Aurora
13
13
Serverless DB cluster. To run these statements, you work with the Data Service
14
14
API.</p>
15
-
<p>For more information about the Data Service API, see <ahref="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html">Using the Data API for Aurora
16
-
Serverless</a> in the <i>Amazon Aurora User Guide</i>.</p>
15
+
<p>For more information about the Data Service API, see
16
+
<ahref="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html">Using the Data API</a>
Copy file name to clipboardExpand all lines: clients/client-rds-data/src/RDSData.ts
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -33,8 +33,9 @@ import { RDSDataClient } from "./RDSDataClient";
33
33
* <p>Amazon RDS provides an HTTP endpoint to run SQL statements on an Amazon Aurora
34
34
* Serverless DB cluster. To run these statements, you work with the Data Service
35
35
* API.</p>
36
-
* <p>For more information about the Data Service API, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html">Using the Data API for Aurora
37
-
* Serverless</a> in the <i>Amazon Aurora User Guide</i>.</p>
36
+
* <p>For more information about the Data Service API, see
37
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html">Using the Data API</a>
38
+
* in the <i>Amazon Aurora User Guide</i>.</p>
38
39
*/
39
40
exportclassRDSDataextendsRDSDataClient{
40
41
/**
@@ -192,7 +193,7 @@ export class RDSData extends RDSDataClient {
192
193
* <code>transactionID</code> parameter, changes that result from the call are
193
194
* committed automatically.</p>
194
195
* </important>
195
-
* <p>The response size limit is 1 MB. If the call returns more than 1 MB of response data, the call is terminated.</p>
196
+
* <p>If the binary response data from the database is more than 1 MB, the call is terminated.</p>
* <p>Amazon RDS provides an HTTP endpoint to run SQL statements on an Amazon Aurora
240
240
* Serverless DB cluster. To run these statements, you work with the Data Service
241
241
* API.</p>
242
-
* <p>For more information about the Data Service API, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html">Using the Data API for Aurora
243
-
* Serverless</a> in the <i>Amazon Aurora User Guide</i>.</p>
242
+
* <p>For more information about the Data Service API, see
243
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html">Using the Data API</a>
0 commit comments