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

ProjectSummary

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

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

interface ProjectSummary {
arn?: string | null;
createdDate: Date | number;
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.

§
projectName: string
[src]

The name of the project being summarized.

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