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

DescribeComponentResponse

import type { DescribeComponentResponse } from "https://aws-api.deno.dev/v0.4/services/greengrassv2.ts?docs=full";
interface DescribeComponentResponse {
arn?: string | null;
componentName?: string | null;
componentVersion?: string | null;
creationTimestamp?: Date | number | null;
description?: string | null;
platforms?: ComponentPlatform[] | null;
publisher?: string | null;
status?: CloudComponentStatus | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
arn?: string | null
[src]

The ARN of the component version.

§
componentName?: string | null
[src]

The name of the component.

§
componentVersion?: string | null
[src]

The version of the component.

§
creationTimestamp?: Date | number | null
[src]

The time at which the component was created, expressed in ISO 8601 format.

§
description?: string | null
[src]

The description of the component version.

§
platforms?: ComponentPlatform[] | null
[src]

The platforms that the component version supports.

§
publisher?: string | null
[src]

The publisher of the component version.

§

The status of the component version in IoT Greengrass V2. This status is different from the status of the component on a core device.

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

A list of key-value pairs that contain metadata for the resource. For more information, see Tag your resources in the IoT Greengrass V2 Developer Guide.