#[non_exhaustive]pub struct ExecuteStatementInput {
pub sql: Option<String>,
pub cluster_identifier: Option<String>,
pub secret_arn: Option<String>,
pub db_user: Option<String>,
pub database: Option<String>,
pub with_event: Option<bool>,
pub statement_name: Option<String>,
pub parameters: Option<Vec<SqlParameter>>,
pub workgroup_name: Option<String>,
pub client_token: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.sql: Option<String>The SQL statement text to run.
cluster_identifier: Option<String>The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
secret_arn: Option<String>The name or ARN of the secret that enables access to the database. This parameter is required when authenticating using Secrets Manager.
db_user: Option<String>The database user name. This parameter is required when connecting to a cluster as a database user and authenticating using temporary credentials.
database: Option<String>The name of the database. This parameter is required when authenticating using either Secrets Manager or temporary credentials.
with_event: Option<bool>A value that indicates whether to send an event to the Amazon EventBridge event bus after the SQL statement runs.
statement_name: Option<String>The name of the SQL statement. You can name the SQL statement when you create it to identify the query.
parameters: Option<Vec<SqlParameter>>The parameters for the SQL statement.
workgroup_name: Option<String>The serverless workgroup name or Amazon Resource Name (ARN). This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
client_token: Option<String>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
Implementations§
source§impl ExecuteStatementInput
impl ExecuteStatementInput
sourcepub fn cluster_identifier(&self) -> Option<&str>
pub fn cluster_identifier(&self) -> Option<&str>
The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
sourcepub fn secret_arn(&self) -> Option<&str>
pub fn secret_arn(&self) -> Option<&str>
The name or ARN of the secret that enables access to the database. This parameter is required when authenticating using Secrets Manager.
sourcepub fn db_user(&self) -> Option<&str>
pub fn db_user(&self) -> Option<&str>
The database user name. This parameter is required when connecting to a cluster as a database user and authenticating using temporary credentials.
sourcepub fn database(&self) -> Option<&str>
pub fn database(&self) -> Option<&str>
The name of the database. This parameter is required when authenticating using either Secrets Manager or temporary credentials.
sourcepub fn with_event(&self) -> Option<bool>
pub fn with_event(&self) -> Option<bool>
A value that indicates whether to send an event to the Amazon EventBridge event bus after the SQL statement runs.
sourcepub fn statement_name(&self) -> Option<&str>
pub fn statement_name(&self) -> Option<&str>
The name of the SQL statement. You can name the SQL statement when you create it to identify the query.
sourcepub fn parameters(&self) -> &[SqlParameter]
pub fn parameters(&self) -> &[SqlParameter]
The parameters for the SQL statement.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .parameters.is_none().
sourcepub fn workgroup_name(&self) -> Option<&str>
pub fn workgroup_name(&self) -> Option<&str>
The serverless workgroup name or Amazon Resource Name (ARN). This parameter is required when connecting to a serverless workgroup and authenticating using either Secrets Manager or temporary credentials.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
source§impl ExecuteStatementInput
impl ExecuteStatementInput
sourcepub fn builder() -> ExecuteStatementInputBuilder
pub fn builder() -> ExecuteStatementInputBuilder
Creates a new builder-style object to manufacture ExecuteStatementInput.
Trait Implementations§
source§impl Clone for ExecuteStatementInput
impl Clone for ExecuteStatementInput
source§fn clone(&self) -> ExecuteStatementInput
fn clone(&self) -> ExecuteStatementInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ExecuteStatementInput
impl Debug for ExecuteStatementInput
source§impl PartialEq for ExecuteStatementInput
impl PartialEq for ExecuteStatementInput
impl StructuralPartialEq for ExecuteStatementInput
Auto Trait Implementations§
impl Freeze for ExecuteStatementInput
impl RefUnwindSafe for ExecuteStatementInput
impl Send for ExecuteStatementInput
impl Sync for ExecuteStatementInput
impl Unpin for ExecuteStatementInput
impl UnwindSafe for ExecuteStatementInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more