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

ProjectDescription

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

An object providing detailed information for a particular project associated with an AWS account and region.

interface ProjectDescription {
arn?: string | null;
createdDate: Date | number;
description?: string | null;
placementTemplate?: PlacementTemplate | null;
projectName: string;
tags?: {
[key: string]: string | null | undefined;
}
| null;
updatedDate: Date | number;
}

§Properties

§
arn?: string | null
[src]

The ARN of the project.

§
createdDate: Date | number
[src]

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

§
description?: string | null
[src]

The description of the project.

§
placementTemplate?: PlacementTemplate | null
[src]

An object describing the project's placement specifications.

§
projectName: string
[src]

The name of the project for which to obtain information from.

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

The tags (metadata key/value pairs) associated with the project.

§
updatedDate: Date | number
[src]

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