Interface Device.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<Device.Builder,Device>
,SdkBuilder<Device.Builder,Device>
,SdkPojo
- Enclosing class:
- Device
public static interface Device.Builder extends SdkPojo, CopyableBuilder<Device.Builder,Device>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Device.Builder
description(String description)
Description of the device.Device.Builder
deviceName(String deviceName)
The name of the device.Device.Builder
iotThingName(String iotThingName)
Amazon Web Services Internet of Things (IoT) object name.-
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
-
deviceName
Device.Builder deviceName(String deviceName)
The name of the device.
- Parameters:
deviceName
- The name of the device.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
Device.Builder description(String description)
Description of the device.
- Parameters:
description
- Description of the device.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
iotThingName
Device.Builder iotThingName(String iotThingName)
Amazon Web Services Internet of Things (IoT) object name.
- Parameters:
iotThingName
- Amazon Web Services Internet of Things (IoT) object name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-