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

GetSolNetworkOperationTaskDetails

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

Gets the details of a network operation.

A network operation is any operation that is done to your network, such as network instance instantiation or termination.

interface GetSolNetworkOperationTaskDetails {
taskContext?: {
[key: string]: string | null | undefined;
}
| null;
taskEndTime?: Date | number | null;
taskErrorDetails?: ErrorInfo | null;
taskName?: string | null;
taskStartTime?: Date | number | null;
taskStatus?: TaskStatus | null;
}

§Properties

§
taskContext?: {
[key: string]: string | null | undefined;
}
| null
[src]

Context for the network operation task.

§
taskEndTime?: Date | number | null
[src]

Task end time.

§
taskErrorDetails?: ErrorInfo | null
[src]

Task error details.

§
taskName?: string | null
[src]

Task name.

§
taskStartTime?: Date | number | null
[src]

Task start time.

§
taskStatus?: TaskStatus | null
[src]

Task status.