Interface UpdateFPorts.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UpdateFPorts.Builder,UpdateFPorts>,SdkBuilder<UpdateFPorts.Builder,UpdateFPorts>,SdkPojo
- Enclosing class:
- UpdateFPorts
public static interface UpdateFPorts.Builder extends SdkPojo, CopyableBuilder<UpdateFPorts.Builder,UpdateFPorts>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description UpdateFPorts.Builderapplications(Collection<ApplicationConfig> applications)LoRaWAN application, which can be used for geolocation by activating positioning.UpdateFPorts.Builderapplications(Consumer<ApplicationConfig.Builder>... applications)LoRaWAN application, which can be used for geolocation by activating positioning.UpdateFPorts.Builderapplications(ApplicationConfig... applications)LoRaWAN application, which can be used for geolocation by activating positioning.default UpdateFPorts.Builderpositioning(Consumer<Positioning.Builder> positioning)Positioning FPorts for the ClockSync, Stream, and GNSS functions.UpdateFPorts.Builderpositioning(Positioning positioning)Positioning FPorts for the ClockSync, Stream, and GNSS functions.-
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
-
positioning
UpdateFPorts.Builder positioning(Positioning positioning)
Positioning FPorts for the ClockSync, Stream, and GNSS functions.
- Parameters:
positioning- Positioning FPorts for the ClockSync, Stream, and GNSS functions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
positioning
default UpdateFPorts.Builder positioning(Consumer<Positioning.Builder> positioning)
Positioning FPorts for the ClockSync, Stream, and GNSS functions.
This is a convenience method that creates an instance of thePositioning.Builderavoiding the need to create one manually viaPositioning.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed topositioning(Positioning).- Parameters:
positioning- a consumer that will call methods onPositioning.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
positioning(Positioning)
-
applications
UpdateFPorts.Builder applications(Collection<ApplicationConfig> applications)
LoRaWAN application, which can be used for geolocation by activating positioning.
- Parameters:
applications- LoRaWAN application, which can be used for geolocation by activating positioning.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applications
UpdateFPorts.Builder applications(ApplicationConfig... applications)
LoRaWAN application, which can be used for geolocation by activating positioning.
- Parameters:
applications- LoRaWAN application, which can be used for geolocation by activating positioning.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applications
UpdateFPorts.Builder applications(Consumer<ApplicationConfig.Builder>... applications)
LoRaWAN application, which can be used for geolocation by activating positioning.
This is a convenience method that creates an instance of theApplicationConfig.Builderavoiding the need to create one manually viaApplicationConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#applications(List.) - Parameters:
applications- a consumer that will call methods onApplicationConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#applications(java.util.Collection)
-
-