#[non_exhaustive]pub struct ExecuteStatementInput { /* private fields */ }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) -> Option<&[SqlParameter]>
pub fn parameters(&self) -> Option<&[SqlParameter]>
The parameters for the SQL statement.
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.
source§impl ExecuteStatementInput
impl ExecuteStatementInput
sourcepub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<ExecuteStatement, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( self, _config: &Config ) -> Result<Operation<ExecuteStatement, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ExecuteStatement>
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<ExecuteStatementInput> for ExecuteStatementInput
impl PartialEq<ExecuteStatementInput> 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 ==.