Struct aws_sdk_athena::model::NamedQuery
source · #[non_exhaustive]pub struct NamedQuery { /* private fields */ }
Expand description
A query, where QueryString
contains the SQL statements that make up the query.
Implementations§
source§impl NamedQuery
impl NamedQuery
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The query description.
sourcepub fn query_string(&self) -> Option<&str>
pub fn query_string(&self) -> Option<&str>
The SQL statements that make up the query.
sourcepub fn named_query_id(&self) -> Option<&str>
pub fn named_query_id(&self) -> Option<&str>
The unique identifier of the query.
sourcepub fn work_group(&self) -> Option<&str>
pub fn work_group(&self) -> Option<&str>
The name of the workgroup that contains the named query.
source§impl NamedQuery
impl NamedQuery
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture NamedQuery
.
Trait Implementations§
source§impl Clone for NamedQuery
impl Clone for NamedQuery
source§fn clone(&self) -> NamedQuery
fn clone(&self) -> NamedQuery
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 NamedQuery
impl Debug for NamedQuery
source§impl PartialEq<NamedQuery> for NamedQuery
impl PartialEq<NamedQuery> for NamedQuery
source§fn eq(&self, other: &NamedQuery) -> bool
fn eq(&self, other: &NamedQuery) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.