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

PlacementDescription

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

An object describing a project's placement.

interface PlacementDescription {
attributes: {
[key: string]: string | null | undefined;
}
;
createdDate: Date | number;
placementName: string;
projectName: string;
updatedDate: Date | number;
}

§Properties

§
attributes: {
[key: string]: string | null | undefined;
}
[src]

The user-defined attributes associated with the placement.

§
createdDate: Date | number
[src]

The date when the placement was initially created, in UNIX epoch time format.

§
placementName: string
[src]

The name of the placement.

§
projectName: string
[src]

The name of the project containing the placement.

§
updatedDate: Date | number
[src]

The date when the placement was last updated, in UNIX epoch time format. If the placement was not updated, then createdDate and updatedDate are the same.