[][src]Struct rusoto_rds_data::ExecuteStatementRequest

pub struct ExecuteStatementRequest {
    pub continue_after_timeout: Option<bool>,
    pub database: Option<String>,
    pub include_result_metadata: Option<bool>,
    pub parameters: Option<Vec<SqlParameter>>,
    pub resource_arn: String,
    pub result_set_options: Option<ResultSetOptions>,
    pub schema: Option<String>,
    pub secret_arn: String,
    pub sql: String,
    pub transaction_id: Option<String>,
}

The request parameters represent the input of a request to run a SQL statement against a database.

Fields

continue_after_timeout: Option<bool>

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.

database: Option<String>

The name of the database.

include_result_metadata: Option<bool>

A value that indicates whether to include metadata in the results.

parameters: Option<Vec<SqlParameter>>

The parameters for the SQL statement.

Array parameters are not supported.

resource_arn: String

The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.

result_set_options: Option<ResultSetOptions>

Options that control how the result set is returned.

schema: Option<String>

The name of the database schema.

secret_arn: String

The name or ARN of the secret that enables access to the DB cluster.

sql: String

The SQL statement to run.

transaction_id: Option<String>

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.

Trait Implementations

impl Clone for ExecuteStatementRequest[src]

impl Debug for ExecuteStatementRequest[src]

impl Default for ExecuteStatementRequest[src]

impl PartialEq<ExecuteStatementRequest> for ExecuteStatementRequest[src]

impl Serialize for ExecuteStatementRequest[src]

impl StructuralPartialEq for ExecuteStatementRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.