Interface CfnResourceCollection.ResourceCollectionFilterProperty

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

@Stability(Stable) public static interface CfnResourceCollection.ResourceCollectionFilterProperty extends software.amazon.jsii.JsiiSerializable
Information about a filter used to specify which AWS resources are analyzed for anomalous behavior by DevOps Guru.

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.devopsguru.*;
 ResourceCollectionFilterProperty resourceCollectionFilterProperty = ResourceCollectionFilterProperty.builder()
         .cloudFormation(CloudFormationCollectionFilterProperty.builder()
                 .stackNames(List.of("stackNames"))
                 .build())
         .tags(List.of(TagCollectionProperty.builder()
                 .appBoundaryKey("appBoundaryKey")
                 .tagValues(List.of("tagValues"))
                 .build()))
         .build();
 

See Also: