Class: Aws::EC2::Types::FpgaImageState
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::FpgaImageState
- 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
-
#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.
42186 42187 42188 42189 42190 42191 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 42186 class FpgaImageState < Struct.new( :code, :message) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
If the state is failed, this is the error message.
42186 42187 42188 42189 42190 42191 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 42186 class FpgaImageState < Struct.new( :code, :message) SENSITIVE = [] include Aws::Structure end |