Struct aws_sdk_athena::model::PreparedStatement
source · #[non_exhaustive]pub struct PreparedStatement { /* private fields */ }
Expand description
A prepared SQL statement for use with Athena.
Implementations§
source§impl PreparedStatement
impl PreparedStatement
sourcepub fn statement_name(&self) -> Option<&str>
pub fn statement_name(&self) -> Option<&str>
The name of the prepared statement.
sourcepub fn query_statement(&self) -> Option<&str>
pub fn query_statement(&self) -> Option<&str>
The query string for the prepared statement.
sourcepub fn work_group_name(&self) -> Option<&str>
pub fn work_group_name(&self) -> Option<&str>
The name of the workgroup to which the prepared statement belongs.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the prepared statement.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
The last modified time of the prepared statement.
source§impl PreparedStatement
impl PreparedStatement
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture PreparedStatement
.
Trait Implementations§
source§impl Clone for PreparedStatement
impl Clone for PreparedStatement
source§fn clone(&self) -> PreparedStatement
fn clone(&self) -> PreparedStatement
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for PreparedStatement
impl Debug for PreparedStatement
source§impl PartialEq<PreparedStatement> for PreparedStatement
impl PartialEq<PreparedStatement> for PreparedStatement
source§fn eq(&self, other: &PreparedStatement) -> bool
fn eq(&self, other: &PreparedStatement) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.