@Generated(value="software.amazon.awssdk:codegen") public final class ExecuteStatementRequest extends RdsDataRequest implements ToCopyableBuilder<ExecuteStatementRequest.Builder,ExecuteStatementRequest>
The request parameters represent the input of a request to run a SQL statement against a database.
| Modifier and Type | Class and Description |
|---|---|
static interface |
ExecuteStatementRequest.Builder |
| Modifier and Type | Method and Description |
|---|---|
static ExecuteStatementRequest.Builder |
builder() |
Boolean |
continueAfterTimeout()
A value that indicates whether to continue running the statement after the call times out.
|
String |
database()
The name of the database.
|
boolean |
equals(Object obj) |
boolean |
equalsBySdkFields(Object obj) |
<T> Optional<T> |
getValueForField(String fieldName,
Class<T> clazz) |
int |
hashCode() |
boolean |
hasParameters()
Returns true if the Parameters property was specified by the sender (it may be empty), or false if the sender did
not specify the value (it will be empty).
|
Boolean |
includeResultMetadata()
A value that indicates whether to include metadata in the results.
|
List<SqlParameter> |
parameters()
The parameters for the SQL statement.
|
String |
resourceArn()
The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.
|
ResultSetOptions |
resultSetOptions()
Options that control how the result set is returned.
|
String |
schema()
The name of the database schema.
|
List<SdkField<?>> |
sdkFields() |
String |
secretArn()
The name or ARN of the secret that enables access to the DB cluster.
|
static Class<? extends ExecuteStatementRequest.Builder> |
serializableBuilderClass() |
String |
sql()
The SQL statement to run.
|
ExecuteStatementRequest.Builder |
toBuilder() |
String |
toString()
Returns a string representation of this object.
|
String |
transactionId()
The identifier of a transaction that was started by using the
BeginTransaction operation. |
overrideConfigurationclone, finalize, getClass, notify, notifyAll, wait, wait, waitcopypublic Boolean continueAfterTimeout()
A value that indicates whether to continue running the statement after the call times out. By default, the statement stops running when the call times out.
For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.
For DDL statements, we recommend continuing to run the statement after the call times out. When a DDL statement terminates before it is finished running, it can result in errors and possibly corrupted data structures.
public String database()
The name of the database.
public Boolean includeResultMetadata()
A value that indicates whether to include metadata in the results.
public boolean hasParameters()
public List<SqlParameter> parameters()
The parameters for the SQL statement.
Array parameters are not supported.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
You can use hasParameters() to see if a value was sent in this field.
Array parameters are not supported.
public String resourceArn()
The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.
public ResultSetOptions resultSetOptions()
Options that control how the result set is returned.
public String schema()
The name of the database schema.
public String secretArn()
The name or ARN of the secret that enables access to the DB cluster.
public String sql()
The SQL statement to run.
public String transactionId()
The identifier of a transaction that was started by using the BeginTransaction operation. Specify
the transaction ID of the transaction that you want to include the SQL statement in.
If the SQL statement is not part of a transaction, don't set this parameter.
BeginTransaction operation.
Specify the transaction ID of the transaction that you want to include the SQL statement in.
If the SQL statement is not part of a transaction, don't set this parameter.
public ExecuteStatementRequest.Builder toBuilder()
toBuilder in interface ToCopyableBuilder<ExecuteStatementRequest.Builder,ExecuteStatementRequest>toBuilder in class RdsDataRequestpublic static ExecuteStatementRequest.Builder builder()
public static Class<? extends ExecuteStatementRequest.Builder> serializableBuilderClass()
public int hashCode()
hashCode in class AwsRequestpublic boolean equals(Object obj)
equals in class AwsRequestpublic boolean equalsBySdkFields(Object obj)
equalsBySdkFields in interface SdkPojopublic String toString()
public <T> Optional<T> getValueForField(String fieldName, Class<T> clazz)
getValueForField in class SdkRequestCopyright © 2020. All rights reserved.