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

AnnotationValue

import type { AnnotationValue } from "https://aws-api.deno.dev/v0.4/services/xray.ts?docs=full";

Value of a segment annotation. Has one of three value types: Number, Boolean, or String.

interface AnnotationValue {
BooleanValue?: boolean | null;
NumberValue?: number | null;
StringValue?: string | null;
}

§Properties

§
BooleanValue?: boolean | null
[src]

Value for a Boolean annotation.

§
NumberValue?: number | null
[src]

Value for a Number annotation.

§
StringValue?: string | null
[src]

Value for a String annotation.