amazonka-ec2-2.0: Amazon Elastic Compute Cloud SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.EC2.Types.PciId

Description

 
Synopsis

Documentation

data PciId Source #

Describes the data that identifies an Amazon FPGA image (AFI) on the PCI bus.

See: newPciId smart constructor.

Constructors

PciId' 

Fields

Instances

Instances details
FromXML PciId Source # 
Instance details

Defined in Amazonka.EC2.Types.PciId

Methods

parseXML :: [Node] -> Either String PciId #

Generic PciId Source # 
Instance details

Defined in Amazonka.EC2.Types.PciId

Associated Types

type Rep PciId :: Type -> Type #

Methods

from :: PciId -> Rep PciId x #

to :: Rep PciId x -> PciId #

Read PciId Source # 
Instance details

Defined in Amazonka.EC2.Types.PciId

Show PciId Source # 
Instance details

Defined in Amazonka.EC2.Types.PciId

Methods

showsPrec :: Int -> PciId -> ShowS #

show :: PciId -> String #

showList :: [PciId] -> ShowS #

NFData PciId Source # 
Instance details

Defined in Amazonka.EC2.Types.PciId

Methods

rnf :: PciId -> () #

Eq PciId Source # 
Instance details

Defined in Amazonka.EC2.Types.PciId

Methods

(==) :: PciId -> PciId -> Bool #

(/=) :: PciId -> PciId -> Bool #

Hashable PciId Source # 
Instance details

Defined in Amazonka.EC2.Types.PciId

Methods

hashWithSalt :: Int -> PciId -> Int #

hash :: PciId -> Int #

type Rep PciId Source # 
Instance details

Defined in Amazonka.EC2.Types.PciId

type Rep PciId = D1 ('MetaData "PciId" "Amazonka.EC2.Types.PciId" "amazonka-ec2-2.0-48L9RAJvmvzAdBkRegqWCL" 'False) (C1 ('MetaCons "PciId'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "deviceId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "subsystemId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "subsystemVendorId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "vendorId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newPciId :: PciId Source #

Create a value of PciId with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:deviceId:PciId', pciId_deviceId - The ID of the device.

$sel:subsystemId:PciId', pciId_subsystemId - The ID of the subsystem.

$sel:subsystemVendorId:PciId', pciId_subsystemVendorId - The ID of the vendor for the subsystem.

$sel:vendorId:PciId', pciId_vendorId - The ID of the vendor.

pciId_deviceId :: Lens' PciId (Maybe Text) Source #

The ID of the device.

pciId_subsystemId :: Lens' PciId (Maybe Text) Source #

The ID of the subsystem.

pciId_subsystemVendorId :: Lens' PciId (Maybe Text) Source #

The ID of the vendor for the subsystem.

pciId_vendorId :: Lens' PciId (Maybe Text) Source #

The ID of the vendor.