[][src]Struct rusoto_ec2::FpgaImage

pub struct FpgaImage {
    pub create_time: Option<String>,
    pub data_retention_support: Option<bool>,
    pub description: Option<String>,
    pub fpga_image_global_id: Option<String>,
    pub fpga_image_id: Option<String>,
    pub name: Option<String>,
    pub owner_alias: Option<String>,
    pub owner_id: Option<String>,
    pub pci_id: Option<PciId>,
    pub product_codes: Option<Vec<ProductCode>>,
    pub public: Option<bool>,
    pub shell_version: Option<String>,
    pub state: Option<FpgaImageState>,
    pub tags: Option<Vec<Tag>>,
    pub update_time: Option<String>,
}

Describes an Amazon FPGA image (AFI).

Fields

create_time: Option<String>

The date and time the AFI was created.

data_retention_support: Option<bool>

Indicates whether data retention support is enabled for the AFI.

description: Option<String>

The description of the AFI.

fpga_image_global_id: Option<String>

The global FPGA image identifier (AGFI ID).

fpga_image_id: Option<String>

The FPGA image identifier (AFI ID).

name: Option<String>

The name of the AFI.

owner_alias: Option<String>

The alias of the AFI owner. Possible values include self, amazon, and aws-marketplace.

owner_id: Option<String>

The AWS account ID of the AFI owner.

pci_id: Option<PciId>

Information about the PCI bus.

product_codes: Option<Vec<ProductCode>>

The product codes for the AFI.

public: Option<bool>

Indicates whether the AFI is public.

shell_version: Option<String>

The version of the AWS Shell that was used to create the bitstream.

state: Option<FpgaImageState>

Information about the state of the AFI.

tags: Option<Vec<Tag>>

Any tags assigned to the AFI.

update_time: Option<String>

The time of the most recent update to the AFI.

Trait Implementations

impl Clone for FpgaImage[src]

impl Debug for FpgaImage[src]

impl Default for FpgaImage[src]

impl PartialEq<FpgaImage> for FpgaImage[src]

impl StructuralPartialEq for FpgaImage[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.