Interface CfnResourceCollectionProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnResourceCollectionProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:15.138Z") @Stability(Stable) public interface CfnResourceCollectionProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnResourceCollection.

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

See Also: