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.
 
      36962 36963 36964 36965 36966 36967  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 36962 class FpgaImageState < Struct.new( :code, :message) SENSITIVE = [] include Aws::Structure end  | 
  
#message ⇒ String
If the state is ‘failed`, this is the error message.
      36962 36963 36964 36965 36966 36967  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 36962 class FpgaImageState < Struct.new( :code, :message) SENSITIVE = [] include Aws::Structure end  |