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

CreateFleetMetricRequest

import type { CreateFleetMetricRequest } from "https://aws-api.deno.dev/v0.3/services/iot.ts?docs=full";
interface CreateFleetMetricRequest {
aggregationField: string;
aggregationType: AggregationType;
description?: string | null;
indexName?: string | null;
metricName: string;
period: number;
queryString: string;
queryVersion?: string | null;
tags?: Tag[] | null;
unit?: FleetMetricUnit | null;
}

§Properties

§
aggregationField: string
[src]

The field to aggregate.

§
aggregationType: AggregationType
[src]

The type of the aggregation query.

§
description?: string | null
[src]

The fleet metric description.

§
indexName?: string | null
[src]

The name of the index to search.

§
metricName: string
[src]

The name of the fleet metric to create.

§
period: number
[src]

The time in seconds between fleet metric emissions. Range [60(1 min), 86400(1 day)] and must be multiple of 60.

§
queryString: string
[src]

The search query string.

§
queryVersion?: string | null
[src]

The query version.

§
tags?: Tag[] | null
[src]

Metadata, which can be used to manage the fleet metric.

§
unit?: FleetMetricUnit | null
[src]

Used to support unit transformation such as milliseconds to seconds. The unit must be supported by CW metric. Default to null.