Class: Aws::EC2::Types::FpgaImageState

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb

Overview

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#codeString

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.

Returns:

  • (String)


33770
33771
33772
33773
33774
33775
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 33770

class FpgaImageState < Struct.new(
  :code,
  :message)
  SENSITIVE = []
  include Aws::Structure
end

#messageString

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

Returns:

  • (String)


33770
33771
33772
33773
33774
33775
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 33770

class FpgaImageState < Struct.new(
  :code,
  :message)
  SENSITIVE = []
  include Aws::Structure
end