Interface CfnGroup.QueryProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnGroup.QueryProperty.Jsii$Proxy
Enclosing class:
CfnGroup

@Stability(Stable) public static interface CfnGroup.QueryProperty extends software.amazon.jsii.JsiiSerializable
Specifies details within a ResourceQuery structure that determines the membership of the resource group.

The contents required in the Query structure are determined by the Type property of the containing ResourceQuery structure.

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.*;
 QueryProperty queryProperty = QueryProperty.builder()
         .resourceTypeFilters(List.of("resourceTypeFilters"))
         .stackIdentifier("stackIdentifier")
         .tagFilters(List.of(TagFilterProperty.builder()
                 .key("key")
                 .values(List.of("values"))
                 .build()))
         .build();
 

See Also: