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

EffectiveDeployment

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

Contains information about a deployment job that IoT Greengrass sends to a Greengrass core device.

interface EffectiveDeployment {
coreDeviceExecutionStatus: EffectiveDeploymentExecutionStatus;
creationTimestamp: Date | number;
deploymentId: string;
deploymentName: string;
description?: string | null;
iotJobArn?: string | null;
iotJobId?: string | null;
modifiedTimestamp: Date | number;
reason?: string | null;
targetArn: string;
}

§Properties

§
coreDeviceExecutionStatus: EffectiveDeploymentExecutionStatus
[src]

The status of the deployment job on the Greengrass core device.

§
creationTimestamp: Date | number
[src]

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

§
deploymentId: string
[src]

The ID of the deployment.

§
deploymentName: string
[src]

The name of the deployment.

§
description?: string | null
[src]

The description of the deployment job.

§
iotJobArn?: string | null
[src]

The ARN of the IoT job that applies the deployment to target devices.

§
iotJobId?: string | null
[src]

The ID of the IoT job that applies the deployment to target devices.

§
modifiedTimestamp: Date | number
[src]

The time at which the deployment job was last modified, expressed in ISO 8601 format.

§
reason?: string | null
[src]

The reason code for the update, if the job was updated.

§
targetArn: string
[src]

The ARN of the target IoT thing or thing group.