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

GetPropertyValueResponse

import type { GetPropertyValueResponse } from "https://aws-api.deno.dev/v0.4/services/iottwinmaker.ts?docs=full";
interface GetPropertyValueResponse {
nextToken?: string | null;
propertyValues?: {
[key: string]: PropertyLatestValue | null | undefined;
}
| null;
tabularPropertyValues?: (({
[key: string]: DataValue | null | undefined;
}
)
[]
)
[]
| null;
}

§Properties

§
nextToken?: string | null
[src]

The string that specifies the next page of results.

§
propertyValues?: {
[key: string]: PropertyLatestValue | null | undefined;
}
| null
[src]

An object that maps strings to the properties and latest property values in the response. Each string in the mapping must be unique to this object.

§
tabularPropertyValues?: (({
[key: string]: DataValue | null | undefined;
}
)
[]
)
[]
| null
[src]

A table of property values.