Interface DevOpsGuruNewInsightOpen.ResourceCollection
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DevOpsGuruNewInsightOpen.ResourceCollection.Jsii$Proxy
- Enclosing class:
DevOpsGuruNewInsightOpen
@Stability(Experimental)
public static interface DevOpsGuruNewInsightOpen.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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forDevOpsGuruNewInsightOpen.ResourceCollectionstatic final classAn implementation forDevOpsGuruNewInsightOpen.ResourceCollection -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) cloudFormation property.default List<DevOpsGuruNewInsightOpen.TagType> getTags()(experimental) tags property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCloudFormation
@Stability(Experimental) @Nullable default DevOpsGuruNewInsightOpen.CloudFormation getCloudFormation()(experimental) cloudFormation property.Specify an array of string values to match this event if the actual value of cloudFormation is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getTags
(experimental) tags property.Specify an array of string values to match this event if the actual value of tags is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
-