[−][src]Struct rusoto_rds_data::ExecuteStatementRequest
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.
<important>
<p>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.</p>
</important>
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.
resource_arn: StringThe Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.
schema: Option<String>The name of the database schema.
secret_arn: StringThe name or ARN of the secret that enables access to the DB cluster.
sql: StringThe 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.
<p>If the SQL statement is not part of a transaction, don't set this parameter.</p>
Trait Implementations
impl PartialEq<ExecuteStatementRequest> for ExecuteStatementRequest[src]
fn eq(&self, other: &ExecuteStatementRequest) -> bool[src]
fn ne(&self, other: &ExecuteStatementRequest) -> bool[src]
impl Default for ExecuteStatementRequest[src]
fn default() -> ExecuteStatementRequest[src]
impl Clone for ExecuteStatementRequest[src]
fn clone(&self) -> ExecuteStatementRequest[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Debug for ExecuteStatementRequest[src]
impl Serialize for ExecuteStatementRequest[src]
Auto Trait Implementations
impl Send for ExecuteStatementRequest
impl Sync for ExecuteStatementRequest
Blanket Implementations
impl<T> From for T[src]
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>, [src]
T: From<U>,
type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self