Struct rusoto_ec2::FpgaImageState[][src]

pub struct FpgaImageState {
    pub code: Option<String>,
    pub message: Option<String>,
}

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

Fields

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.

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

Trait Implementations

impl Default for FpgaImageState
[src]

Returns the "default value" for a type. Read more

impl Debug for FpgaImageState
[src]

Formats the value using the given formatter. Read more

impl Clone for FpgaImageState
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for FpgaImageState
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations