Interface DevOpsGuruInsightSeverityUpgraded.SourceDetail
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DevOpsGuruInsightSeverityUpgraded.SourceDetail.Jsii$Proxy
- Enclosing class:
DevOpsGuruInsightSeverityUpgraded
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.*;
SourceDetail sourceDetail = SourceDetail.builder()
.dataIdentifiers(DataIdentifiers.builder()
.alarmCondition(AlarmCondition.builder()
.detectionBand(List.of("detectionBand"))
.referenceValue(ReferenceValue.builder()
.comparisonOperator(List.of("comparisonOperator"))
.datapointsToAlarm(List.of("datapointsToAlarm"))
.evaluationPeriod(List.of("evaluationPeriod"))
.threshold(List.of("threshold"))
.build())
.build())
.dimensions(List.of(CloudWatchDimension.builder()
.name(List.of("name"))
.value(List.of("value"))
.build()))
.metricDisplayName(List.of("metricDisplayName"))
.metricQuery(MetricQuery.builder()
.groupBy(GroupBy.builder()
.dimensions(List.of("dimensions"))
.group(List.of("group"))
.build())
.metric(List.of("metric"))
.build())
.name(List.of("name"))
.namespace(List.of("namespace"))
.period(List.of("period"))
.resourceId(List.of("resourceId"))
.resourceType(List.of("resourceType"))
.stat(List.of("stat"))
.unit(List.of("unit"))
.build())
.dataSource(List.of("dataSource"))
.dataSourceDetail(List.of("dataSourceDetail"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forDevOpsGuruInsightSeverityUpgraded.SourceDetailstatic final classAn implementation forDevOpsGuruInsightSeverityUpgraded.SourceDetail -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) dataIdentifiers property.(experimental) dataSource property.(experimental) dataSourceDetail property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDataIdentifiers
@Stability(Experimental) @Nullable default DevOpsGuruInsightSeverityUpgraded.DataIdentifiers getDataIdentifiers()(experimental) dataIdentifiers property.Specify an array of string values to match this event if the actual value of dataIdentifiers 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
-
getDataSource
(experimental) dataSource property.Specify an array of string values to match this event if the actual value of dataSource 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
-
getDataSourceDetail
(experimental) dataSourceDetail property.Specify an array of string values to match this event if the actual value of dataSourceDetail 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
-