pub struct AthenaClient<'a> { /* private fields */ }Implementations§
Source§impl AthenaClient<'_>
impl AthenaClient<'_>
Sourcepub async fn get_named_queries(
&self,
) -> Result<AthenaNamedQueriesResponse, Error>
pub async fn get_named_queries( &self, ) -> Result<AthenaNamedQueriesResponse, Error>
List every named query stored in the Athena named-query registry
across all workgroups for the default account. Bumps last_used_at
each time StartQueryExecution resolves a query by id so test
authors can assert that a saved query was actually exercised.
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for AthenaClient<'a>
impl<'a> !UnwindSafe for AthenaClient<'a>
impl<'a> Freeze for AthenaClient<'a>
impl<'a> Send for AthenaClient<'a>
impl<'a> Sync for AthenaClient<'a>
impl<'a> Unpin for AthenaClient<'a>
impl<'a> UnsafeUnpin for AthenaClient<'a>
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
Mutably borrows from an owned value. Read more