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

BulkDeploymentResult

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

Information about an individual group deployment in a bulk deployment operation.

interface BulkDeploymentResult {
CreatedAt?: string | null;
DeploymentArn?: string | null;
DeploymentId?: string | null;
DeploymentStatus?: string | null;
DeploymentType?: DeploymentType | null;
ErrorDetails?: ErrorDetail[] | null;
ErrorMessage?: string | null;
GroupArn?: string | null;
}

§Properties

§
CreatedAt?: string | null
[src]

The time, in ISO format, when the deployment was created.

§
DeploymentArn?: string | null
[src]

The ARN of the group deployment.

§
DeploymentId?: string | null
[src]

The ID of the group deployment.

§
DeploymentStatus?: string | null
[src]

The current status of the group deployment: ''InProgress'', ''Building'', ''Success'', or ''Failure''.

§
DeploymentType?: DeploymentType | null
[src]

The type of the deployment.

§
ErrorDetails?: ErrorDetail[] | null
[src]

Details about the error.

§
ErrorMessage?: string | null
[src]

The error message for a failed deployment

§
GroupArn?: string | null
[src]

The ARN of the Greengrass group.