Interface CfnResourceCollectionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnResourceCollectionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:56.254Z")
@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();
-
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. -
builder
- Returns:
- a
CfnResourceCollectionProps.BuilderofCfnResourceCollectionProps
-