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

GreengrassConfiguration

import type { GreengrassConfiguration } from "https://aws-api.deno.dev/v0.3/services/lookoutvision.ts?docs=full";

Configuration information for the AWS IoT Greengrass component created in a model packaging job. For more information, see "StartModelPackagingJob".

Note: You can't specify a component with the same ComponentName and Componentversion as an existing component with the same component name and component version.

interface GreengrassConfiguration {
CompilerOptions: string;
ComponentDescription?: string | null;
ComponentName: string;
ComponentVersion?: string | null;
S3OutputLocation: S3Location;
Tags?: Tag[] | null;
TargetDevice?: TargetDevice | null;
TargetPlatform?: TargetPlatform | null;
}

§Properties

§
CompilerOptions: string
[src]

Additional compiler options for the Greengrass component. Currently, only NVIDIA Graphics Processing Units (GPU) are supported.

For more information, see Compiler options in the Amazon Lookout for Vision Developer Guide.

§
ComponentDescription?: string | null
[src]

A description for the AWS IoT Greengrass component.

§
ComponentName: string
[src]

A name for the AWS IoT Greengrass component.

§
ComponentVersion?: string | null
[src]

A Version for the AWS IoT Greengrass component. If you don't provide a value, a default value of _Model Version_.0.0 is used.

§
S3OutputLocation: S3Location
[src]

An S3 location in which Lookout for Vision stores the component artifacts.

§
Tags?: Tag[] | null
[src]

A set of tags (key-value pairs) that you want to attach to the AWS IoT Greengrass component.

§
TargetDevice?: TargetDevice | null
[src]

The target device for the model. Currently the only supported value is jetson_xavier. If you specify TargetDevice, you can't specify TargetPlatform.

§
TargetPlatform?: TargetPlatform | null
[src]

The target platform for the model. If you specify TargetPlatform, you can't specify TargetDevice.