Struct aws_sdk_config::model::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() -> Builder
pub fn builder() -> Builder
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 more