Interface DevOpsGuruNewInsightOpen.DataIdentifiers
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DevOpsGuruNewInsightOpen.DataIdentifiers.Jsii$Proxy
- Enclosing class:
DevOpsGuruNewInsightOpen
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.*;
DataIdentifiers 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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forDevOpsGuruNewInsightOpen.DataIdentifiersstatic final classAn implementation forDevOpsGuruNewInsightOpen.DataIdentifiers -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) alarmCondition property.(experimental) dimensions property.(experimental) metricDisplayName property.(experimental) metricQuery property.getName()(experimental) name property.(experimental) namespace property.(experimental) period property.(experimental) ResourceId property.(experimental) ResourceType property.getStat()(experimental) stat property.getUnit()(experimental) unit property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAlarmCondition
@Stability(Experimental) @Nullable default DevOpsGuruNewInsightOpen.AlarmCondition getAlarmCondition()(experimental) alarmCondition property.Specify an array of string values to match this event if the actual value of alarmCondition 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
-
getDimensions
@Stability(Experimental) @Nullable default List<DevOpsGuruNewInsightOpen.CloudWatchDimension> getDimensions()(experimental) dimensions property.Specify an array of string values to match this event if the actual value of dimensions 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
-
getMetricDisplayName
(experimental) metricDisplayName property.Specify an array of string values to match this event if the actual value of metricDisplayName 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
-
getMetricQuery
(experimental) metricQuery property.Specify an array of string values to match this event if the actual value of metricQuery 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
-
getName
(experimental) name property.Specify an array of string values to match this event if the actual value of name 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
-
getNamespace
(experimental) namespace property.Specify an array of string values to match this event if the actual value of namespace 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
-
getPeriod
(experimental) period property.Specify an array of string values to match this event if the actual value of period 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
-
getResourceId
(experimental) ResourceId property.Specify an array of string values to match this event if the actual value of ResourceId 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
-
getResourceType
(experimental) ResourceType property.Specify an array of string values to match this event if the actual value of ResourceType 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
-
getStat
(experimental) stat property.Specify an array of string values to match this event if the actual value of stat 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
-
getUnit
(experimental) unit property.Specify an array of string values to match this event if the actual value of unit 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
-