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

FpgaImageState

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

Describes the state of the bitstream generation process for an Amazon FPGA image (AFI).

interface FpgaImageState {
Code?: FpgaImageStateCode | null;
Message?: string | null;
}

§Properties

§

The state. The following are the possible values:

  • pending - AFI bitstream generation is in progress.
  • available - The AFI is available for use.
  • failed - AFI bitstream generation failed.
  • unavailable - The AFI is no longer available for use.
§
Message?: string | null
[src]

If the state is failed, this is the error message.