@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class AbstractAWSRedshiftDataAPI extends Object implements AWSRedshiftDataAPI
AWSRedshiftDataAPI
. Convenient method forms pass through to the corresponding
overload that takes a request object, which throws an UnsupportedOperationException
.ENDPOINT_PREFIX
Modifier and Type | Method and Description |
---|---|
CancelStatementResult |
cancelStatement(CancelStatementRequest request)
Cancels a running query.
|
DescribeStatementResult |
describeStatement(DescribeStatementRequest request)
Describes the details about a specific instance when a query was run by the Amazon Redshift Data API.
|
DescribeTableResult |
describeTable(DescribeTableRequest request)
Describes the detailed information about a table from metadata in the cluster.
|
ExecuteStatementResult |
executeStatement(ExecuteStatementRequest request)
Runs an SQL statement, which can be data manipulation language (DML) or data definition language (DDL).
|
ResponseMetadata |
getCachedResponseMetadata(AmazonWebServiceRequest request)
Returns additional metadata for a previously executed successful request, typically used for debugging issues
where a service isn't acting as expected.
|
GetStatementResultResult |
getStatementResult(GetStatementResultRequest request)
Fetches the temporarily cached result of an SQL statement.
|
ListDatabasesResult |
listDatabases(ListDatabasesRequest request)
List the databases in a cluster.
|
ListSchemasResult |
listSchemas(ListSchemasRequest request)
Lists the schemas in a database.
|
ListStatementsResult |
listStatements(ListStatementsRequest request)
List of SQL statements.
|
ListTablesResult |
listTables(ListTablesRequest request)
List the tables in a database.
|
void |
shutdown()
Shuts down this client object, releasing any resources that might be held open.
|
public CancelStatementResult cancelStatement(CancelStatementRequest request)
AWSRedshiftDataAPI
Cancels a running query. To be canceled, a query must be running.
cancelStatement
in interface AWSRedshiftDataAPI
public DescribeStatementResult describeStatement(DescribeStatementRequest request)
AWSRedshiftDataAPI
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.
describeStatement
in interface AWSRedshiftDataAPI
public DescribeTableResult describeTable(DescribeTableRequest request)
AWSRedshiftDataAPI
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:
AWS Secrets Manager - specify the Amazon Resource Name (ARN) of the secret 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.
describeTable
in interface AWSRedshiftDataAPI
public ExecuteStatementResult executeStatement(ExecuteStatementRequest request)
AWSRedshiftDataAPI
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:
AWS Secrets Manager - specify the Amazon Resource Name (ARN) of the secret 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
in interface AWSRedshiftDataAPI
public GetStatementResultResult getStatementResult(GetStatementResultRequest request)
AWSRedshiftDataAPI
Fetches the temporarily cached result of an SQL statement. A token is returned to page through the statement results.
getStatementResult
in interface AWSRedshiftDataAPI
public ListDatabasesResult listDatabases(ListDatabasesRequest request)
AWSRedshiftDataAPI
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:
AWS Secrets Manager - specify the Amazon Resource Name (ARN) of the secret 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.
listDatabases
in interface AWSRedshiftDataAPI
public ListSchemasResult listSchemas(ListSchemasRequest request)
AWSRedshiftDataAPI
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:
AWS Secrets Manager - specify the Amazon Resource Name (ARN) of the secret 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
in interface AWSRedshiftDataAPI
public ListStatementsResult listStatements(ListStatementsRequest request)
AWSRedshiftDataAPI
List of SQL statements. By default, only finished statements are shown. A token is returned to page through the statement list.
listStatements
in interface AWSRedshiftDataAPI
public ListTablesResult listTables(ListTablesRequest request)
AWSRedshiftDataAPI
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:
AWS Secrets Manager - specify the Amazon Resource Name (ARN) of the secret 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.
listTables
in interface AWSRedshiftDataAPI
public void shutdown()
AWSRedshiftDataAPI
shutdown
in interface AWSRedshiftDataAPI
public ResponseMetadata getCachedResponseMetadata(AmazonWebServiceRequest request)
AWSRedshiftDataAPI
Response metadata is only cached for a limited period of time, so if you need to access this extra diagnostic information for an executed request, you should use this method to retrieve it as soon as possible after executing a request.
getCachedResponseMetadata
in interface AWSRedshiftDataAPI
request
- The originally executed request.