Interface CfnGroup.ResourceQueryProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGroup.ResourceQueryProperty.Jsii$Proxy
- Enclosing class:
CfnGroup
@Stability(Stable)
public static interface CfnGroup.ResourceQueryProperty
extends software.amazon.jsii.JsiiSerializable
The query used to dynamically define the members of a group.
For more information about how to construct a query, see Build queries and groups in AWS Resource Groups .
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.resourcegroups.*;
ResourceQueryProperty resourceQueryProperty = ResourceQueryProperty.builder()
.query(QueryProperty.builder()
.resourceTypeFilters(List.of("resourceTypeFilters"))
.stackIdentifier("stackIdentifier")
.tagFilters(List.of(TagFilterProperty.builder()
.key("key")
.values(List.of("values"))
.build()))
.build())
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnGroup.ResourceQueryPropertystatic final classAn implementation forCfnGroup.ResourceQueryProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getQuery
The query that defines the membership of the group.This is a structure with properties that depend on the
Type.The
Querystructure must be included in the following scenarios:- When the
TypeisTAG_FILTERS_1_0, you must specify aQuerystructure that contains aTagFilterslist of tags. Resources with tags that match those in theTagFilterlist become members of the resource group. - When the
TypeisCLOUDFORMATION_STACK_1_0then this field is required only when you must specify a CloudFormation stack other than the one you are defining. To do this, theQuerystructure must contain theStackIdentifierproperty. If you don't specify either aQuerystructure or aStackIdentifierwithin thatQuery, then it defaults to the CloudFormation stack that you're currently constructing.
Returns union: either
IResolvableorCfnGroup.QueryProperty- See Also:
- When the
-
getType
Specifies the type of resource query that determines this group's membership. There are two valid query types:.TAG_FILTERS_1_0indicates that the group is a tag-based group. To complete the group membership, you must include theTagFiltersproperty to specify the tag filters to use in the query.CLOUDFORMATION_STACK_1_0, the default, indicates that the group is a CloudFormation stack-based group. Group membership is based on the CloudFormation stack. You must specify theStackIdentifierproperty in the query to define which stack to associate the group with, or leave it empty to default to the stack where the group is defined.
- See Also:
-
builder
-