Class: Aws::EC2::Types::FpgaImageState
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::FpgaImageState
- 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).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#code ⇒ String
The state.
-
#message ⇒ String
If the state is ‘failed`, this is the error message.
Instance Attribute Details
#code ⇒ String
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.
36441 36442 36443 36444 36445 36446 |
# File 'lib/aws-sdk-ec2/types.rb', line 36441 class FpgaImageState < Struct.new( :code, :message) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
If the state is ‘failed`, this is the error message.
36441 36442 36443 36444 36445 36446 |
# File 'lib/aws-sdk-ec2/types.rb', line 36441 class FpgaImageState < Struct.new( :code, :message) SENSITIVE = [] include Aws::Structure end |