Struct aws_sdk_athena::types::UnprocessedNamedQueryId
source · #[non_exhaustive]pub struct UnprocessedNamedQueryId {
pub named_query_id: Option<String>,
pub error_code: Option<String>,
pub error_message: Option<String>,
}Expand description
Information about a named query ID that could not be processed.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.named_query_id: Option<String>The unique identifier of the named query.
error_code: Option<String>The error code returned when the processing request for the named query failed, if applicable.
error_message: Option<String>The error message returned when the processing request for the named query failed, if applicable.
Implementations§
source§impl UnprocessedNamedQueryId
impl UnprocessedNamedQueryId
sourcepub fn named_query_id(&self) -> Option<&str>
pub fn named_query_id(&self) -> Option<&str>
The unique identifier of the named query.
sourcepub fn error_code(&self) -> Option<&str>
pub fn error_code(&self) -> Option<&str>
The error code returned when the processing request for the named query failed, if applicable.
sourcepub fn error_message(&self) -> Option<&str>
pub fn error_message(&self) -> Option<&str>
The error message returned when the processing request for the named query failed, if applicable.
source§impl UnprocessedNamedQueryId
impl UnprocessedNamedQueryId
sourcepub fn builder() -> UnprocessedNamedQueryIdBuilder
pub fn builder() -> UnprocessedNamedQueryIdBuilder
Creates a new builder-style object to manufacture UnprocessedNamedQueryId.
Trait Implementations§
source§impl Clone for UnprocessedNamedQueryId
impl Clone for UnprocessedNamedQueryId
source§fn clone(&self) -> UnprocessedNamedQueryId
fn clone(&self) -> UnprocessedNamedQueryId
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 UnprocessedNamedQueryId
impl Debug for UnprocessedNamedQueryId
source§impl PartialEq<UnprocessedNamedQueryId> for UnprocessedNamedQueryId
impl PartialEq<UnprocessedNamedQueryId> for UnprocessedNamedQueryId
source§fn eq(&self, other: &UnprocessedNamedQueryId) -> bool
fn eq(&self, other: &UnprocessedNamedQueryId) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UnprocessedNamedQueryId
Auto Trait Implementations§
impl RefUnwindSafe for UnprocessedNamedQueryId
impl Send for UnprocessedNamedQueryId
impl Sync for UnprocessedNamedQueryId
impl Unpin for UnprocessedNamedQueryId
impl UnwindSafe for UnprocessedNamedQueryId
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