Struct aws_sdk_config::model::StoredQuery
source · [−]#[non_exhaustive]pub struct StoredQuery {
pub query_id: Option<String>,
pub query_arn: Option<String>,
pub query_name: Option<String>,
pub description: Option<String>,
pub expression: Option<String>,
}Expand description
Provides the details of a stored query.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.query_id: Option<String>The ID of the query.
query_arn: Option<String>Amazon Resource Name (ARN) of the query. For example, arn:partition:service:region:account-id:resource-type/resource-name/resource-id.
query_name: Option<String>The name of the query.
description: Option<String>A unique description for the query.
expression: Option<String>The expression of the query. For example, SELECT resourceId, resourceType, supplementaryConfiguration.BucketVersioningConfiguration.status WHERE resourceType = 'AWS::S3::Bucket' AND supplementaryConfiguration.BucketVersioningConfiguration.status = 'Off'.
Implementations
Amazon Resource Name (ARN) of the query. For example, arn:partition:service:region:account-id:resource-type/resource-name/resource-id.
The name of the query.
A unique description for the query.
The expression of the query. For example, SELECT resourceId, resourceType, supplementaryConfiguration.BucketVersioningConfiguration.status WHERE resourceType = 'AWS::S3::Bucket' AND supplementaryConfiguration.BucketVersioningConfiguration.status = 'Off'.
Creates a new builder-style object to manufacture StoredQuery
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more