Interface CfnResourceCollectionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnResourceCollectionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:40:48.927Z")
@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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnResourceCollectionPropsstatic final classAn implementation forCfnResourceCollectionProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Information about a filter used to specify which AWS resources are analyzed for anomalous behavior by DevOps Guru.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getResourceCollectionFilter
Information about a filter used to specify which AWS resources are analyzed for anomalous behavior by DevOps Guru.Returns union: either
IResolvableorCfnResourceCollection.ResourceCollectionFilterProperty- See Also:
-
builder
- Returns:
- a
CfnResourceCollectionProps.BuilderofCfnResourceCollectionProps
-