Struct aws_sdk_config::model::StoredQuery
source · [−]#[non_exhaustive]pub struct StoredQuery { /* private fields */ }Expand description
Provides the details of a stored query.
Implementations
sourceimpl StoredQuery
impl StoredQuery
sourcepub fn query_arn(&self) -> Option<&str>
pub fn query_arn(&self) -> Option<&str>
Amazon Resource Name (ARN) of the query. For example, arn:partition:service:region:account-id:resource-type/resource-name/resource-id.
sourcepub fn query_name(&self) -> Option<&str>
pub fn query_name(&self) -> Option<&str>
The name of the query.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A unique description for the query.
sourcepub fn expression(&self) -> Option<&str>
pub fn expression(&self) -> Option<&str>
The expression of the query. For example, SELECT resourceId, resourceType, supplementaryConfiguration.BucketVersioningConfiguration.status WHERE resourceType = 'AWS::S3::Bucket' AND supplementaryConfiguration.BucketVersioningConfiguration.status = 'Off'.
sourceimpl StoredQuery
impl StoredQuery
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture StoredQuery.
Trait Implementations
sourceimpl Clone for StoredQuery
impl Clone for StoredQuery
sourcefn clone(&self) -> StoredQuery
fn clone(&self) -> StoredQuery
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for StoredQuery
impl Debug for StoredQuery
sourceimpl PartialEq<StoredQuery> for StoredQuery
impl PartialEq<StoredQuery> for StoredQuery
sourcefn eq(&self, other: &StoredQuery) -> bool
fn eq(&self, other: &StoredQuery) -> bool
impl StructuralPartialEq for StoredQuery
Auto Trait Implementations
impl RefUnwindSafe for StoredQuery
impl Send for StoredQuery
impl Sync for StoredQuery
impl Unpin for StoredQuery
impl UnwindSafe for StoredQuery
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more