Struct aws_sdk_config::input::PutStoredQueryInput
source · [−]#[non_exhaustive]pub struct PutStoredQueryInput {
pub stored_query: Option<StoredQuery>,
pub tags: Option<Vec<Tag>>,
}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.stored_query: Option<StoredQuery>A list of StoredQuery objects. The mandatory fields are QueryName and Expression.
When you are creating a query, you must provide a query name and an expression. When you are updating a query, you must provide a query name but updating the description is optional.
A list of Tags object.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PutStoredQuery, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PutStoredQuery, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<PutStoredQuery>
Creates a new builder-style object to manufacture PutStoredQueryInput
A list of StoredQuery objects. The mandatory fields are QueryName and Expression.
When you are creating a query, you must provide a query name and an expression. When you are updating a query, you must provide a query name but updating the description is optional.
A list of Tags object.
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 PutStoredQueryInput
impl Send for PutStoredQueryInput
impl Sync for PutStoredQueryInput
impl Unpin for PutStoredQueryInput
impl UnwindSafe for PutStoredQueryInput
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