[−][src]Struct rusoto_resource_groups::ResourceQuery
The query that is used to define a resource group or a search for resources.
Fields
query: String
The query that defines a group or a search.
type_: String
The type of the query. The valid values in this release are TAG_FILTERS_1_0
and CLOUDFORMATION_STACK_1_0
.
TAG_FILTERS_1_0:
A JSON syntax that lets you specify a collection of simple tag filters for resource types and tags, as supported by the AWS Tagging API GetResources operation. If you specify more than one tag key, only resources that match all tag keys, and at least one value of each specified tag key, are returned in your query. If you specify more than one value for a tag key, a resource matches the filter if it has a tag key value that matches any of the specified values.
For example, consider the following sample query for resources that have two tags, Stage
and Version
, with two values each. ([{"Key":"Stage","Values":["Test","Deploy"]},{"Key":"Version","Values":["1","2"]}]
) The results of this query might include the following.
-
An EC2 instance that has the following two tags:
{"Key":"Stage","Value":"Deploy"}
, and{"Key":"Version","Value":"2"}
-
An S3 bucket that has the following two tags: {"Key":"Stage","Value":"Test"}, and {"Key":"Version","Value":"1"}
The query would not return the following results, however. The following EC2 instance does not have all tag keys specified in the filter, so it is rejected. The RDS database has all of the tag keys, but no values that match at least one of the specified tag key values in the filter.
-
An EC2 instance that has only the following tag:
{"Key":"Stage","Value":"Deploy"}
. -
An RDS database that has the following two tags:
{"Key":"Stage","Value":"Archived"}
, and{"Key":"Version","Value":"4"}
CLOUDFORMATION_STACK_1_0:
A JSON syntax that lets you specify a CloudFormation stack ARN.
Trait Implementations
impl PartialEq<ResourceQuery> for ResourceQuery
[src]
fn eq(&self, other: &ResourceQuery) -> bool
[src]
fn ne(&self, other: &ResourceQuery) -> bool
[src]
impl Default for ResourceQuery
[src]
fn default() -> ResourceQuery
[src]
impl Clone for ResourceQuery
[src]
fn clone(&self) -> ResourceQuery
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for ResourceQuery
[src]
impl Serialize for ResourceQuery
[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer,
[src]
__S: Serializer,
impl<'de> Deserialize<'de> for ResourceQuery
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for ResourceQuery
impl Sync for ResourceQuery
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self