execute_statement
(**kwargs)¶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:
redshift:GetClusterCredentials
operation is required. When connecting to a serverless workgroup, specify the workgroup name and database name. Also, permission to call the redshift-serverless:GetCredentials
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 .
See also: AWS API Documentation
Request Syntax
response = client.execute_statement(
ClientToken='string',
ClusterIdentifier='string',
Database='string',
DbUser='string',
Parameters=[
{
'name': 'string',
'value': 'string'
},
],
SecretArn='string',
Sql='string',
StatementName='string',
WithEvent=True|False,
WorkgroupName='string'
)
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
This field is autopopulated if not provided.
[REQUIRED]
The name of the database. This parameter is required when authenticating using either Secrets Manager or temporary credentials.
The parameters for the SQL statement.
A parameter used in a SQL statement.
The name of the parameter.
The value of the parameter. Amazon Redshift implicitly converts to the proper data type. For more information, see Data types in the Amazon Redshift Database Developer Guide .
[REQUIRED]
The SQL statement text to run.
dict
Response Syntax
{
'ClusterIdentifier': 'string',
'CreatedAt': datetime(2015, 1, 1),
'Database': 'string',
'DbUser': 'string',
'Id': 'string',
'SecretArn': 'string',
'WorkgroupName': 'string'
}
Response Structure
(dict) --
ClusterIdentifier (string) --
The cluster identifier. This element is not returned when connecting to a serverless workgroup.
CreatedAt (datetime) --
The date and time (UTC) the statement was created.
Database (string) --
The name of the database.
DbUser (string) --
The database user name.
Id (string) --
The identifier of the SQL statement whose results are to be fetched. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API.
SecretArn (string) --
The name or ARN of the secret that enables access to the database.
WorkgroupName (string) --
The serverless workgroup name or Amazon Resource Name (ARN). This element is not returned when connecting to a provisioned cluster.
Exceptions
RedshiftDataAPIService.Client.exceptions.ValidationException
RedshiftDataAPIService.Client.exceptions.ExecuteStatementException
RedshiftDataAPIService.Client.exceptions.ActiveStatementsExceededException