Interface PciId.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<PciId.Builder,PciId>
,SdkBuilder<PciId.Builder,PciId>
,SdkPojo
- Enclosing class:
- PciId
public static interface PciId.Builder extends SdkPojo, CopyableBuilder<PciId.Builder,PciId>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PciId.Builder
deviceId(String deviceId)
The ID of the device.PciId.Builder
subsystemId(String subsystemId)
The ID of the subsystem.PciId.Builder
subsystemVendorId(String subsystemVendorId)
The ID of the vendor for the subsystem.PciId.Builder
vendorId(String vendorId)
The ID of the vendor.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
deviceId
PciId.Builder deviceId(String deviceId)
The ID of the device.
- Parameters:
deviceId
- The ID of the device.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vendorId
PciId.Builder vendorId(String vendorId)
The ID of the vendor.
- Parameters:
vendorId
- The ID of the vendor.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subsystemId
PciId.Builder subsystemId(String subsystemId)
The ID of the subsystem.
- Parameters:
subsystemId
- The ID of the subsystem.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subsystemVendorId
PciId.Builder subsystemVendorId(String subsystemVendorId)
The ID of the vendor for the subsystem.
- Parameters:
subsystemVendorId
- The ID of the vendor for the subsystem.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-