#[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
source§fn eq(&self, other: &ExecuteStatementInput) -> bool
fn eq(&self, other: &ExecuteStatementInput) -> bool
self
and other
values to be equal, and is used
by ==
.