Interface DevOpsGuruNewAnomalyAssociation.ResourceCollection

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

@Stability(Experimental) public static interface DevOpsGuruNewAnomalyAssociation.ResourceCollection extends software.amazon.jsii.JsiiSerializable
(experimental) Type definition for ResourceCollection.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.devopsguru.events.*;
 ResourceCollection resourceCollection = ResourceCollection.builder()
         .cloudFormation(CloudFormation.builder()
                 .stackNames(List.of("stackNames"))
                 .build())
         .tags(List.of(TagType.builder()
                 .appBoundaryKey(List.of("appBoundaryKey"))
                 .tagValues(List.of("tagValues"))
                 .build()))
         .build();