Interface PickupDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PickupDetails.Builder,PickupDetails>,SdkBuilder<PickupDetails.Builder,PickupDetails>,SdkPojo
- Enclosing class:
- PickupDetails
public static interface PickupDetails.Builder extends SdkPojo, CopyableBuilder<PickupDetails.Builder,PickupDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PickupDetails.BuilderdevicePickupId(String devicePickupId)The unique ID for a device that will be picked up.PickupDetails.Builderemail(String email)The email address of the person picking up the device.PickupDetails.BuilderidentificationExpirationDate(Instant identificationExpirationDate)Expiration date of the credential identifying the person picking up the device.PickupDetails.BuilderidentificationIssuingOrg(String identificationIssuingOrg)Organization that issued the credential identifying the person picking up the device.PickupDetails.BuilderidentificationNumber(String identificationNumber)The number on the credential identifying the person picking up the device.PickupDetails.Buildername(String name)The name of the person picking up the device.PickupDetails.BuilderphoneNumber(String phoneNumber)The phone number of the person picking up the device.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
name
PickupDetails.Builder name(String name)
The name of the person picking up the device.
- Parameters:
name- The name of the person picking up the device.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
phoneNumber
PickupDetails.Builder phoneNumber(String phoneNumber)
The phone number of the person picking up the device.
- Parameters:
phoneNumber- The phone number of the person picking up the device.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
email
PickupDetails.Builder email(String email)
The email address of the person picking up the device.
- Parameters:
email- The email address of the person picking up the device.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
identificationNumber
PickupDetails.Builder identificationNumber(String identificationNumber)
The number on the credential identifying the person picking up the device.
- Parameters:
identificationNumber- The number on the credential identifying the person picking up the device.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
identificationExpirationDate
PickupDetails.Builder identificationExpirationDate(Instant identificationExpirationDate)
Expiration date of the credential identifying the person picking up the device.
- Parameters:
identificationExpirationDate- Expiration date of the credential identifying the person picking up the device.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
identificationIssuingOrg
PickupDetails.Builder identificationIssuingOrg(String identificationIssuingOrg)
Organization that issued the credential identifying the person picking up the device.
- Parameters:
identificationIssuingOrg- Organization that issued the credential identifying the person picking up the device.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
devicePickupId
PickupDetails.Builder devicePickupId(String devicePickupId)
The unique ID for a device that will be picked up.
- Parameters:
devicePickupId- The unique ID for a device that will be picked up.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-