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

MetricStreamEntry

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

This structure contains the configuration information about one metric stream.

interface MetricStreamEntry {
Arn?: string | null;
CreationDate?: Date | number | null;
FirehoseArn?: string | null;
LastUpdateDate?: Date | number | null;
Name?: string | null;
OutputFormat?: MetricStreamOutputFormat | null;
State?: string | null;
}

§Properties

§
Arn?: string | null
[src]

The ARN of the metric stream.

§
CreationDate?: Date | number | null
[src]

The date that the metric stream was originally created.

§
FirehoseArn?: string | null
[src]

The ARN of the Kinesis Firehose devlivery stream that is used for this metric stream.

§
LastUpdateDate?: Date | number | null
[src]

The date that the configuration of this metric stream was most recently updated.

§
Name?: string | null
[src]

The name of the metric stream.

§
OutputFormat?: MetricStreamOutputFormat | null
[src]

The output format of this metric stream. Valid values are json and opentelemetry0.7.

§
State?: string | null
[src]

The current state of this stream. Valid values are running and stopped.