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

ComponentDeploymentSpecification

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

Contains information about a component to deploy.

interface ComponentDeploymentSpecification {
componentVersion?: string | null;
configurationUpdate?: ComponentConfigurationUpdate | null;
runWith?: ComponentRunWith | null;
}

§Properties

§
componentVersion?: string | null
[src]

The version of the component.

§
configurationUpdate?: ComponentConfigurationUpdate | null
[src]

The configuration updates to deploy for the component. You can define reset updates and merge updates. A reset updates the keys that you specify to the default configuration for the component. A merge updates the core device's component configuration with the keys and values that you specify. The IoT Greengrass Core software applies reset updates before it applies merge updates. For more information, see Update component configurations in the IoT Greengrass V2 Developer Guide.

§
runWith?: ComponentRunWith | null
[src]

The system user and group that the IoT Greengrass Core software uses to run component processes on the core device. If you omit this parameter, the IoT Greengrass Core software uses the system user and group that you configure for the core device. For more information, see Configure the user and group that run components in the IoT Greengrass V2 Developer Guide.