Interface DeviceMethod.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DeviceMethod.Builder,DeviceMethod>,SdkBuilder<DeviceMethod.Builder,DeviceMethod>,SdkPojo
- Enclosing class:
- DeviceMethod
public static interface DeviceMethod.Builder extends SdkPojo, CopyableBuilder<DeviceMethod.Builder,DeviceMethod>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DeviceMethod.BuilderdeviceType(String deviceType)The type of the device, such as "button".DeviceMethod.BuildermethodName(String methodName)The name of the method applicable to the deviceType.-
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
-
deviceType
DeviceMethod.Builder deviceType(String deviceType)
The type of the device, such as "button".
- Parameters:
deviceType- The type of the device, such as "button".- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
methodName
DeviceMethod.Builder methodName(String methodName)
The name of the method applicable to the deviceType.
- Parameters:
methodName- The name of the method applicable to the deviceType.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-