Interface DevOpsGuruInsightClosed.ResourceCollection
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DevOpsGuruInsightClosed.ResourceCollection.Jsii$Proxy
- Enclosing class:
DevOpsGuruInsightClosed
@Stability(Experimental)
public static interface DevOpsGuruInsightClosed.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 forDevOpsGuruInsightClosed.ResourceCollectionstatic final classAn implementation forDevOpsGuruInsightClosed.ResourceCollection -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) cloudFormation property.default List<DevOpsGuruInsightClosed.TagType> getTags()(experimental) tags property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCloudFormation
@Stability(Experimental) @Nullable default DevOpsGuruInsightClosed.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
-