pub struct ResourceQuery {
pub type_: String,
pub query: String,
}Expand description
A resource query attached to a group: either a tag filter or a
CloudFormation-stack membership query. query is the raw JSON string AWS
carries in the Query member.
Fields§
§type_: StringTAG_FILTERS_1_0 or CLOUDFORMATION_STACK_1_0.
query: StringTrait Implementations§
Source§impl Clone for ResourceQuery
impl Clone for ResourceQuery
Source§fn clone(&self) -> ResourceQuery
fn clone(&self) -> ResourceQuery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ResourceQuery
impl Debug for ResourceQuery
Source§impl<'de> Deserialize<'de> for ResourceQuery
impl<'de> Deserialize<'de> for ResourceQuery
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ResourceQuery
impl RefUnwindSafe for ResourceQuery
impl Send for ResourceQuery
impl Sync for ResourceQuery
impl Unpin for ResourceQuery
impl UnsafeUnpin for ResourceQuery
impl UnwindSafe for ResourceQuery
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