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

PlacementSummary

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

An object providing summary information for a particular placement.

interface PlacementSummary {
createdDate: Date | number;
placementName: string;
projectName: string;
updatedDate: Date | number;
}

§Properties

§
createdDate: Date | number
[src]

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

§
placementName: string
[src]

The name of the placement being summarized.

§
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.