Struct aws_sdk_config::types::StoredQuery
source · #[non_exhaustive]pub struct StoredQuery { /* private fields */ }Expand description
Provides the details of a stored query.
Implementations§
source§impl 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'.
source§impl StoredQuery
impl StoredQuery
sourcepub fn builder() -> StoredQueryBuilder
pub fn builder() -> StoredQueryBuilder
Creates a new builder-style object to manufacture StoredQuery.
Trait Implementations§
source§impl Clone for StoredQuery
impl Clone for StoredQuery
source§fn clone(&self) -> StoredQuery
fn clone(&self) -> StoredQuery
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 StoredQuery
impl Debug for StoredQuery
source§impl PartialEq<StoredQuery> for StoredQuery
impl PartialEq<StoredQuery> for StoredQuery
source§fn eq(&self, other: &StoredQuery) -> bool
fn eq(&self, other: &StoredQuery) -> bool
This method tests for
self and other values to be equal, and is used
by ==.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§
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