Class: Aws::EC2::Types::PciId
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::PciId
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ec2/types.rb
Overview
Describes the data that identifies an Amazon FPGA image (AFI) on the PCI bus.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#device_id ⇒ String
The ID of the device.
-
#subsystem_id ⇒ String
The ID of the subsystem.
-
#subsystem_vendor_id ⇒ String
The ID of the vendor for the subsystem.
-
#vendor_id ⇒ String
The ID of the vendor.
Instance Attribute Details
#device_id ⇒ String
The ID of the device.
57195 57196 57197 57198 57199 57200 57201 57202 |
# File 'lib/aws-sdk-ec2/types.rb', line 57195 class PciId < Struct.new( :device_id, :vendor_id, :subsystem_id, :subsystem_vendor_id) SENSITIVE = [] include Aws::Structure end |
#subsystem_id ⇒ String
The ID of the subsystem.
57195 57196 57197 57198 57199 57200 57201 57202 |
# File 'lib/aws-sdk-ec2/types.rb', line 57195 class PciId < Struct.new( :device_id, :vendor_id, :subsystem_id, :subsystem_vendor_id) SENSITIVE = [] include Aws::Structure end |