Interface DestinationConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DestinationConfig.Builder,DestinationConfig>,SdkBuilder<DestinationConfig.Builder,DestinationConfig>,SdkPojo
- Enclosing class:
- DestinationConfig
public static interface DestinationConfig.Builder extends SdkPojo, CopyableBuilder<DestinationConfig.Builder,DestinationConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DestinationConfig.Builderservices(String... services)A list of service names that identify the target application.DestinationConfig.Builderservices(Collection<String> services)A list of service names that identify the target application.DestinationConfig.BuilderthingName(String thingName)The name of the IoT thing to which you want to connect.-
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
-
thingName
DestinationConfig.Builder thingName(String thingName)
The name of the IoT thing to which you want to connect.
- Parameters:
thingName- The name of the IoT thing to which you want to connect.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
services
DestinationConfig.Builder services(Collection<String> services)
A list of service names that identify the target application. The IoT client running on the destination device reads this value and uses it to look up a port or an IP address and a port. The IoT client instantiates the local proxy, which uses this information to connect to the destination application.
- Parameters:
services- A list of service names that identify the target application. The IoT client running on the destination device reads this value and uses it to look up a port or an IP address and a port. The IoT client instantiates the local proxy, which uses this information to connect to the destination application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
services
DestinationConfig.Builder services(String... services)
A list of service names that identify the target application. The IoT client running on the destination device reads this value and uses it to look up a port or an IP address and a port. The IoT client instantiates the local proxy, which uses this information to connect to the destination application.
- Parameters:
services- A list of service names that identify the target application. The IoT client running on the destination device reads this value and uses it to look up a port or an IP address and a port. The IoT client instantiates the local proxy, which uses this information to connect to the destination application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-