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

ResolvedComponentVersion

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

Contains information about a component version that is compatible to run on a Greengrass core device.

interface ResolvedComponentVersion {
arn?: string | null;
componentName?: string | null;
componentVersion?: string | null;
message?: string | null;
recipe?: Uint8Array | null;
vendorGuidance?: VendorGuidance | 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.

§
message?: string | null
[src]

A message that communicates details about the vendor guidance state of the component version. This message communicates why a component version is discontinued or deleted.

§
recipe?: Uint8Array | null
[src]

The recipe of the component version.

§
vendorGuidance?: VendorGuidance | null
[src]

The vendor guidance state for the component version. This state indicates whether the component version has any issues that you should consider before you deploy it. The vendor guidance state can be:

  • ACTIVE – This component version is available and recommended for use.
  • DISCONTINUED – This component version has been discontinued by its publisher. You can deploy this component version, but we recommend that you use a different version of this component.
  • DELETED – This component version has been deleted by its publisher, so you can't deploy it. If you have any existing deployments that specify this component version, those deployments will fail.