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

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

Overview

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

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)


19715
19716
19717
19718
19719
# File 'lib/aws-sdk-ec2/types.rb', line 19715

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

#messageString

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

Returns:

  • (String)


19715
19716
19717
19718
19719
# File 'lib/aws-sdk-ec2/types.rb', line 19715

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