@ThreadSafe @Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class AWSRedshiftDataAPIClient extends AmazonWebServiceClient implements AWSRedshiftDataAPI
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 and CLI usage examples, see Using the Amazon Redshift Data API in the Amazon Redshift Management Guide.
LOGGING_AWS_REQUEST_METRIC
ENDPOINT_PREFIX
Modifier and Type | Method and Description |
---|---|
BatchExecuteStatementResult |
batchExecuteStatement(BatchExecuteStatementRequest request)
Runs one or more SQL statements, which can be data manipulation language (DML) or data definition language (DDL).
|
static AWSRedshiftDataAPIClientBuilder |
builder() |
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.
|
addRequestHandler, addRequestHandler, configureRegion, getClientConfiguration, getEndpointPrefix, getMonitoringListeners, getRequestMetricsCollector, getServiceName, getSignerByURI, getSignerOverride, getSignerRegionOverride, getTimeOffset, makeImmutable, removeRequestHandler, removeRequestHandler, setEndpoint, setEndpoint, setRegion, setServiceNameIntern, setSignerRegionOverride, setTimeOffset, withEndpoint, withRegion, withRegion, withTimeOffset
public static AWSRedshiftDataAPIClientBuilder builder()
public BatchExecuteStatementResult batchExecuteStatement(BatchExecuteStatementRequest 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 - when connecting to a cluster, provide the secret-arn
of a secret stored in Secrets
Manager which has username
and password
. The specified secret contains credentials to
connect to the database
you specify. When you are connecting to a cluster, you also supply the
database name, If you provide a cluster identifier (dbClusterIdentifier
), it must match the cluster
identifier stored in the secret. When you are connecting to a serverless workgroup, you also supply the database
name.
Temporary credentials - when connecting to your data warehouse, choose one of the following options:
When connecting to a serverless workgroup, specify the workgroup name and database name. The database user name
is derived from the IAM identity. For example, arn:iam::123456789012:user:foo
has the database user
name IAM:foo
. Also, permission to call the redshift-serverless:GetCredentials
operation
is required.
When connecting to a cluster as an IAM identity, specify the cluster identifier and the database name. The
database user name is derived from the IAM identity. For example, arn:iam::123456789012:user:foo
has
the database user name IAM:foo
. Also, permission to call the
redshift:GetClusterCredentialsWithIAM
operation is required.
When connecting to a cluster as a database user, specify the cluster identifier, the database name, and the
database user name. Also, permission to call the redshift:GetClusterCredentials
operation is
required.
For more information about the Amazon Redshift Data API and CLI usage examples, see Using the Amazon Redshift Data API in the Amazon Redshift Management Guide.
batchExecuteStatement
in interface AWSRedshiftDataAPI
batchExecuteStatementRequest
- ValidationException
- The Amazon Redshift Data API operation failed due to invalid input.ActiveStatementsExceededException
- The number of active statements exceeds the limit.BatchExecuteStatementException
- An SQL statement encountered an environmental error while running.public CancelStatementResult cancelStatement(CancelStatementRequest request)
Cancels a running query. To be canceled, a query must be running.
For more information about the Amazon Redshift Data API and CLI usage examples, see Using the Amazon Redshift Data API in the Amazon Redshift Management Guide.
cancelStatement
in interface AWSRedshiftDataAPI
cancelStatementRequest
- ValidationException
- The Amazon Redshift Data API operation failed due to invalid input.ResourceNotFoundException
- The Amazon Redshift Data API operation failed due to a missing resource.InternalServerException
- The Amazon Redshift Data API operation failed due to invalid input.DatabaseConnectionException
- Connection to a database failed.public DescribeStatementResult describeStatement(DescribeStatementRequest 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.
For more information about the Amazon Redshift Data API and CLI usage examples, see Using the Amazon Redshift Data API in the Amazon Redshift Management Guide.
describeStatement
in interface AWSRedshiftDataAPI
describeStatementRequest
- ValidationException
- The Amazon Redshift Data API operation failed due to invalid input.ResourceNotFoundException
- The Amazon Redshift Data API operation failed due to a missing resource.InternalServerException
- The Amazon Redshift Data API operation failed due to invalid input.public DescribeTableResult describeTable(DescribeTableRequest 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 - when connecting to a cluster, provide the secret-arn
of a secret stored in Secrets
Manager which has username
and password
. The specified secret contains credentials to
connect to the database
you specify. When you are connecting to a cluster, you also supply the
database name, If you provide a cluster identifier (dbClusterIdentifier
), it must match the cluster
identifier stored in the secret. When you are connecting to a serverless workgroup, you also supply the database
name.
Temporary credentials - when connecting to your data warehouse, choose one of the following options:
When connecting to a serverless workgroup, specify the workgroup name and database name. The database user name
is derived from the IAM identity. For example, arn:iam::123456789012:user:foo
has the database user
name IAM:foo
. Also, permission to call the redshift-serverless:GetCredentials
operation
is required.
When connecting to a cluster as an IAM identity, specify the cluster identifier and the database name. The
database user name is derived from the IAM identity. For example, arn:iam::123456789012:user:foo
has
the database user name IAM:foo
. Also, permission to call the
redshift:GetClusterCredentialsWithIAM
operation is required.
When connecting to a cluster as a database user, specify the cluster identifier, the database name, and the
database user name. Also, permission to call the redshift:GetClusterCredentials
operation is
required.
For more information about the Amazon Redshift Data API and CLI usage examples, see Using the Amazon Redshift Data API in the Amazon Redshift Management Guide.
describeTable
in interface AWSRedshiftDataAPI
describeTableRequest
- ValidationException
- The Amazon Redshift Data API operation failed due to invalid input.InternalServerException
- The Amazon Redshift Data API operation failed due to invalid input.DatabaseConnectionException
- Connection to a database failed.public ExecuteStatementResult executeStatement(ExecuteStatementRequest 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 - when connecting to a cluster, provide the secret-arn
of a secret stored in Secrets
Manager which has username
and password
. The specified secret contains credentials to
connect to the database
you specify. When you are connecting to a cluster, you also supply the
database name, If you provide a cluster identifier (dbClusterIdentifier
), it must match the cluster
identifier stored in the secret. When you are connecting to a serverless workgroup, you also supply the database
name.
Temporary credentials - when connecting to your data warehouse, choose one of the following options:
When connecting to a serverless workgroup, specify the workgroup name and database name. The database user name
is derived from the IAM identity. For example, arn:iam::123456789012:user:foo
has the database user
name IAM:foo
. Also, permission to call the redshift-serverless:GetCredentials
operation
is required.
When connecting to a cluster as an IAM identity, specify the cluster identifier and the database name. The
database user name is derived from the IAM identity. For example, arn:iam::123456789012:user:foo
has
the database user name IAM:foo
. Also, permission to call the
redshift:GetClusterCredentialsWithIAM
operation is required.
When connecting to a cluster as a database user, specify the cluster identifier, the database name, and the
database user name. Also, permission to call the redshift:GetClusterCredentials
operation is
required.
For more information about the Amazon Redshift Data API and CLI usage examples, see Using the Amazon Redshift Data API in the Amazon Redshift Management Guide.
executeStatement
in interface AWSRedshiftDataAPI
executeStatementRequest
- ValidationException
- The Amazon Redshift Data API operation failed due to invalid input.ExecuteStatementException
- The SQL statement encountered an environmental error while running.ActiveStatementsExceededException
- The number of active statements exceeds the limit.public GetStatementResultResult getStatementResult(GetStatementResultRequest request)
Fetches the temporarily cached result of an SQL statement. A token is returned to page through the statement results.
For more information about the Amazon Redshift Data API and CLI usage examples, see Using the Amazon Redshift Data API in the Amazon Redshift Management Guide.
getStatementResult
in interface AWSRedshiftDataAPI
getStatementResultRequest
- ValidationException
- The Amazon Redshift Data API operation failed due to invalid input.ResourceNotFoundException
- The Amazon Redshift Data API operation failed due to a missing resource.InternalServerException
- The Amazon Redshift Data API operation failed due to invalid input.public ListDatabasesResult listDatabases(ListDatabasesRequest 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 - when connecting to a cluster, provide the secret-arn
of a secret stored in Secrets
Manager which has username
and password
. The specified secret contains credentials to
connect to the database
you specify. When you are connecting to a cluster, you also supply the
database name, If you provide a cluster identifier (dbClusterIdentifier
), it must match the cluster
identifier stored in the secret. When you are connecting to a serverless workgroup, you also supply the database
name.
Temporary credentials - when connecting to your data warehouse, choose one of the following options:
When connecting to a serverless workgroup, specify the workgroup name and database name. The database user name
is derived from the IAM identity. For example, arn:iam::123456789012:user:foo
has the database user
name IAM:foo
. Also, permission to call the redshift-serverless:GetCredentials
operation
is required.
When connecting to a cluster as an IAM identity, specify the cluster identifier and the database name. The
database user name is derived from the IAM identity. For example, arn:iam::123456789012:user:foo
has
the database user name IAM:foo
. Also, permission to call the
redshift:GetClusterCredentialsWithIAM
operation is required.
When connecting to a cluster as a database user, specify the cluster identifier, the database name, and the
database user name. Also, permission to call the redshift:GetClusterCredentials
operation is
required.
For more information about the Amazon Redshift Data API and CLI usage examples, see Using the Amazon Redshift Data API in the Amazon Redshift Management Guide.
listDatabases
in interface AWSRedshiftDataAPI
listDatabasesRequest
- ValidationException
- The Amazon Redshift Data API operation failed due to invalid input.InternalServerException
- The Amazon Redshift Data API operation failed due to invalid input.DatabaseConnectionException
- Connection to a database failed.public ListSchemasResult listSchemas(ListSchemasRequest 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 - when connecting to a cluster, provide the secret-arn
of a secret stored in Secrets
Manager which has username
and password
. The specified secret contains credentials to
connect to the database
you specify. When you are connecting to a cluster, you also supply the
database name, If you provide a cluster identifier (dbClusterIdentifier
), it must match the cluster
identifier stored in the secret. When you are connecting to a serverless workgroup, you also supply the database
name.
Temporary credentials - when connecting to your data warehouse, choose one of the following options:
When connecting to a serverless workgroup, specify the workgroup name and database name. The database user name
is derived from the IAM identity. For example, arn:iam::123456789012:user:foo
has the database user
name IAM:foo
. Also, permission to call the redshift-serverless:GetCredentials
operation
is required.
When connecting to a cluster as an IAM identity, specify the cluster identifier and the database name. The
database user name is derived from the IAM identity. For example, arn:iam::123456789012:user:foo
has
the database user name IAM:foo
. Also, permission to call the
redshift:GetClusterCredentialsWithIAM
operation is required.
When connecting to a cluster as a database user, specify the cluster identifier, the database name, and the
database user name. Also, permission to call the redshift:GetClusterCredentials
operation is
required.
For more information about the Amazon Redshift Data API and CLI usage examples, see Using the Amazon Redshift Data API in the Amazon Redshift Management Guide.
listSchemas
in interface AWSRedshiftDataAPI
listSchemasRequest
- ValidationException
- The Amazon Redshift Data API operation failed due to invalid input.InternalServerException
- The Amazon Redshift Data API operation failed due to invalid input.DatabaseConnectionException
- Connection to a database failed.public ListStatementsResult listStatements(ListStatementsRequest request)
List of SQL statements. By default, only finished statements are shown. A token is returned to page through the statement list.
For more information about the Amazon Redshift Data API and CLI usage examples, see Using the Amazon Redshift Data API in the Amazon Redshift Management Guide.
listStatements
in interface AWSRedshiftDataAPI
listStatementsRequest
- ValidationException
- The Amazon Redshift Data API operation failed due to invalid input.InternalServerException
- The Amazon Redshift Data API operation failed due to invalid input.public ListTablesResult listTables(ListTablesRequest 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 - when connecting to a cluster, provide the secret-arn
of a secret stored in Secrets
Manager which has username
and password
. The specified secret contains credentials to
connect to the database
you specify. When you are connecting to a cluster, you also supply the
database name, If you provide a cluster identifier (dbClusterIdentifier
), it must match the cluster
identifier stored in the secret. When you are connecting to a serverless workgroup, you also supply the database
name.
Temporary credentials - when connecting to your data warehouse, choose one of the following options:
When connecting to a serverless workgroup, specify the workgroup name and database name. The database user name
is derived from the IAM identity. For example, arn:iam::123456789012:user:foo
has the database user
name IAM:foo
. Also, permission to call the redshift-serverless:GetCredentials
operation
is required.
When connecting to a cluster as an IAM identity, specify the cluster identifier and the database name. The
database user name is derived from the IAM identity. For example, arn:iam::123456789012:user:foo
has
the database user name IAM:foo
. Also, permission to call the
redshift:GetClusterCredentialsWithIAM
operation is required.
When connecting to a cluster as a database user, specify the cluster identifier, the database name, and the
database user name. Also, permission to call the redshift:GetClusterCredentials
operation is
required.
For more information about the Amazon Redshift Data API and CLI usage examples, see Using the Amazon Redshift Data API in the Amazon Redshift Management Guide.
listTables
in interface AWSRedshiftDataAPI
listTablesRequest
- ValidationException
- The Amazon Redshift Data API operation failed due to invalid input.InternalServerException
- The Amazon Redshift Data API operation failed due to invalid input.DatabaseConnectionException
- Connection to a database failed.public ResponseMetadata getCachedResponseMetadata(AmazonWebServiceRequest request)
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 the request.
getCachedResponseMetadata
in interface AWSRedshiftDataAPI
request
- The originally executed requestpublic void shutdown()
AmazonWebServiceClient
shutdown
in interface AWSRedshiftDataAPI
shutdown
in class AmazonWebServiceClient