pub struct AthenaNamedQuery {
pub named_query_id: String,
pub name: String,
pub description: Option<String>,
pub database: String,
pub query_string: String,
pub workgroup: String,
pub last_used_at: Option<String>,
}Expand description
One row in the Athena named-query introspection list returned by
GET /_fakecloud/athena/named-queries. Mirrors the underlying named
query record plus a last_used_at timestamp the server bumps every
time StartQueryExecution resolves the query by id.
Fields§
§named_query_id: String§name: String§description: Option<String>§database: String§query_string: String§workgroup: String§last_used_at: Option<String>RFC3339 timestamp of the most recent StartQueryExecution that
resolved its query string from this named query. None until the
first such invocation.
Trait Implementations§
Source§impl Clone for AthenaNamedQuery
impl Clone for AthenaNamedQuery
Source§fn clone(&self) -> AthenaNamedQuery
fn clone(&self) -> AthenaNamedQuery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AthenaNamedQuery
impl Debug for AthenaNamedQuery
Source§impl<'de> Deserialize<'de> for AthenaNamedQuery
impl<'de> Deserialize<'de> for AthenaNamedQuery
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AthenaNamedQuery
impl RefUnwindSafe for AthenaNamedQuery
impl Send for AthenaNamedQuery
impl Sync for AthenaNamedQuery
impl Unpin for AthenaNamedQuery
impl UnsafeUnpin for AthenaNamedQuery
impl UnwindSafe for AthenaNamedQuery
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