Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

InsightRuleMetricDatapoint

import type { InsightRuleMetricDatapoint } from "https://aws-api.deno.dev/v0.3/services/cloudwatch.ts?docs=full";

One data point from the metric time series returned in a Contributor Insights rule report.

For more information, see GetInsightRuleReport.

interface InsightRuleMetricDatapoint {
Average?: number | null;
MaxContributorValue?: number | null;
Maximum?: number | null;
Minimum?: number | null;
SampleCount?: number | null;
Sum?: number | null;
Timestamp: Date | number;
UniqueContributors?: number | null;
}

§Properties

§
Average?: number | null
[src]

The average value from all contributors during the time period represented by that data point.

This statistic is returned only if you included it in the Metrics array in your request.

§
MaxContributorValue?: number | null
[src]

The maximum value provided by one contributor during this timestamp. Each timestamp is evaluated separately, so the identity of the max contributor could be different for each timestamp.

This statistic is returned only if you included it in the Metrics array in your request.

§
Maximum?: number | null
[src]

The maximum value from a single occurence from a single contributor during the time period represented by that data point.

This statistic is returned only if you included it in the Metrics array in your request.

§
Minimum?: number | null
[src]

The minimum value from a single contributor during the time period represented by that data point.

This statistic is returned only if you included it in the Metrics array in your request.

§
SampleCount?: number | null
[src]

The number of occurrences that matched the rule during this data point.

This statistic is returned only if you included it in the Metrics array in your request.

§
Sum?: number | null
[src]

The sum of the values from all contributors during the time period represented by that data point.

This statistic is returned only if you included it in the Metrics array in your request.

§
Timestamp: Date | number
[src]

The timestamp of the data point.

§
UniqueContributors?: number | null
[src]

The number of unique contributors who published data during this timestamp.

This statistic is returned only if you included it in the Metrics array in your request.