Interface DevOpsGuruInsightSeverityUpgraded.ResourceCollection
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DevOpsGuruInsightSeverityUpgraded.ResourceCollection.Jsii$Proxy
- Enclosing class:
DevOpsGuruInsightSeverityUpgraded
@Stability(Experimental)
public static interface DevOpsGuruInsightSeverityUpgraded.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 forDevOpsGuruInsightSeverityUpgraded.ResourceCollectionstatic final classAn implementation forDevOpsGuruInsightSeverityUpgraded.ResourceCollection -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCloudFormation
@Stability(Experimental) @Nullable default DevOpsGuruInsightSeverityUpgraded.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
@Stability(Experimental) @Nullable default List<DevOpsGuruInsightSeverityUpgraded.TagType> 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
@Stability(Experimental) static DevOpsGuruInsightSeverityUpgraded.ResourceCollection.Builder builder()
-