Class: AWS.RedshiftData
- Inherits:
-
AWS.Service
- Object
- AWS.Service
- AWS.RedshiftData
- Identifier:
- redshiftdata
- API Version:
- 2019-12-20
- Defined in:
- (unknown)
Overview
Constructs a service interface object. Each API operation is exposed as a function on service.
Service Description
You can use the Amazon Redshift Data API to run queries on Amazon Redshift tables. You can run SQL statements, which are committed if the statement succeeds.
For more information about the Amazon Redshift Data API, see Using the Amazon Redshift Data API in the Amazon Redshift Cluster Management Guide.
Sending a Request Using RedshiftData
var redshiftdata = new AWS.RedshiftData();
redshiftdata.batchExecuteStatement(params, function (err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Locking the API Version
In order to ensure that the RedshiftData object uses this specific API, you can
construct the object by passing the apiVersion
option to the constructor:
var redshiftdata = new AWS.RedshiftData({apiVersion: '2019-12-20'});
You can also set the API version globally in AWS.config.apiVersions
using
the redshiftdata service identifier:
AWS.config.apiVersions = {
redshiftdata: '2019-12-20',
// other service API versions
};
var redshiftdata = new AWS.RedshiftData();
Constructor Summary collapse
-
new AWS.RedshiftData(options = {}) ⇒ Object
constructor
Constructs a service object.
Property Summary collapse
-
endpoint ⇒ AWS.Endpoint
readwrite
An Endpoint object representing the endpoint URL for service requests.
Properties inherited from AWS.Service
Method Summary collapse
-
batchExecuteStatement(params = {}, callback) ⇒ AWS.Request
Runs one or more SQL statements, which can be data manipulation language (DML) or data definition language (DDL).
-
cancelStatement(params = {}, callback) ⇒ AWS.Request
Cancels a running query.
-
describeStatement(params = {}, callback) ⇒ AWS.Request
Describes the details about a specific instance when a query was run by the Amazon Redshift Data API.
-
describeTable(params = {}, callback) ⇒ AWS.Request
Describes the detailed information about a table from metadata in the cluster.
-
executeStatement(params = {}, callback) ⇒ AWS.Request
Runs an SQL statement, which can be data manipulation language (DML) or data definition language (DDL).
-
getStatementResult(params = {}, callback) ⇒ AWS.Request
Fetches the temporarily cached result of an SQL statement.
-
listDatabases(params = {}, callback) ⇒ AWS.Request
List the databases in a cluster.
-
listSchemas(params = {}, callback) ⇒ AWS.Request
Lists the schemas in a database.
-
listStatements(params = {}, callback) ⇒ AWS.Request
List of SQL statements.
-
listTables(params = {}, callback) ⇒ AWS.Request
List the tables in a database.
Methods inherited from AWS.Service
makeRequest, makeUnauthenticatedRequest, waitFor, setupRequestListeners, defineService
Constructor Details
new AWS.RedshiftData(options = {}) ⇒ Object
Constructs a service object. This object has one method for each API operation.
Property Details
Method Details
batchExecuteStatement(params = {}, callback) ⇒ AWS.Request
Runs one or more SQL statements, which can be data manipulation language (DML) or data definition language (DDL). Depending on the authorization method, use one of the following combinations of request parameters:
-
Secrets Manager - specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret.
-
Temporary credentials - specify the cluster identifier, the database name, and the database user name. Permission to call the
redshift:GetClusterCredentials
operation is required to use this method.
cancelStatement(params = {}, callback) ⇒ AWS.Request
Cancels a running query. To be canceled, a query must be running.
describeStatement(params = {}, callback) ⇒ AWS.Request
Describes the details about a specific instance when a query was run by the Amazon Redshift Data API. The information includes when the query started, when it finished, the query status, the number of rows returned, and the SQL statement.
describeTable(params = {}, callback) ⇒ AWS.Request
Describes the detailed information about a table from metadata in the cluster. The information includes its columns. A token is returned to page through the column list. Depending on the authorization method, use one of the following combinations of request parameters:
-
Secrets Manager - specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret.
-
Temporary credentials - specify the cluster identifier, the database name, and the database user name. Permission to call the
redshift:GetClusterCredentials
operation is required to use this method.
executeStatement(params = {}, callback) ⇒ AWS.Request
Runs an SQL statement, which can be data manipulation language (DML) or data definition language (DDL). This statement must be a single SQL statement. Depending on the authorization method, use one of the following combinations of request parameters:
-
Secrets Manager - specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret.
-
Temporary credentials - specify the cluster identifier, the database name, and the database user name. Permission to call the
redshift:GetClusterCredentials
operation is required to use this method.
getStatementResult(params = {}, callback) ⇒ AWS.Request
Fetches the temporarily cached result of an SQL statement. A token is returned to page through the statement results.
listDatabases(params = {}, callback) ⇒ AWS.Request
List the databases in a cluster. A token is returned to page through the database list. Depending on the authorization method, use one of the following combinations of request parameters:
-
Secrets Manager - specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret.
-
Temporary credentials - specify the cluster identifier, the database name, and the database user name. Permission to call the
redshift:GetClusterCredentials
operation is required to use this method.
listSchemas(params = {}, callback) ⇒ AWS.Request
Lists the schemas in a database. A token is returned to page through the schema list. Depending on the authorization method, use one of the following combinations of request parameters:
-
Secrets Manager - specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret.
-
Temporary credentials - specify the cluster identifier, the database name, and the database user name. Permission to call the
redshift:GetClusterCredentials
operation is required to use this method.
listStatements(params = {}, callback) ⇒ AWS.Request
List of SQL statements. By default, only finished statements are shown. A token is returned to page through the statement list.
listTables(params = {}, callback) ⇒ AWS.Request
List the tables in a database. If neither SchemaPattern
nor TablePattern
are specified, then all tables in the database are returned. A token is returned to page through the table list. Depending on the authorization method, use one of the following combinations of request parameters:
-
Secrets Manager - specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret.
-
Temporary credentials - specify the cluster identifier, the database name, and the database user name. Permission to call the
redshift:GetClusterCredentials
operation is required to use this method.