Interface ParticipatingGateways.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ParticipatingGateways.Builder,ParticipatingGateways>,SdkBuilder<ParticipatingGateways.Builder,ParticipatingGateways>,SdkPojo
- Enclosing class:
- ParticipatingGateways
public static interface ParticipatingGateways.Builder extends SdkPojo, CopyableBuilder<ParticipatingGateways.Builder,ParticipatingGateways>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ParticipatingGateways.BuilderdownlinkMode(String downlinkMode)Indicates whether to send the downlink message in sequential mode or concurrent mode, or to use only the chosen gateways from the previous uplink message transmission.ParticipatingGateways.BuilderdownlinkMode(DownlinkMode downlinkMode)Indicates whether to send the downlink message in sequential mode or concurrent mode, or to use only the chosen gateways from the previous uplink message transmission.ParticipatingGateways.BuildergatewayList(Collection<GatewayListItem> gatewayList)The list of gateways that you want to use for sending the downlink data traffic.ParticipatingGateways.BuildergatewayList(Consumer<GatewayListItem.Builder>... gatewayList)The list of gateways that you want to use for sending the downlink data traffic.ParticipatingGateways.BuildergatewayList(GatewayListItem... gatewayList)The list of gateways that you want to use for sending the downlink data traffic.ParticipatingGateways.BuildertransmissionInterval(Integer transmissionInterval)The duration of time for which AWS IoT Core for LoRaWAN will wait before transmitting the payload to the next gateway.-
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
-
downlinkMode
ParticipatingGateways.Builder downlinkMode(String downlinkMode)
Indicates whether to send the downlink message in sequential mode or concurrent mode, or to use only the chosen gateways from the previous uplink message transmission.
- Parameters:
downlinkMode- Indicates whether to send the downlink message in sequential mode or concurrent mode, or to use only the chosen gateways from the previous uplink message transmission.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DownlinkMode,DownlinkMode
-
downlinkMode
ParticipatingGateways.Builder downlinkMode(DownlinkMode downlinkMode)
Indicates whether to send the downlink message in sequential mode or concurrent mode, or to use only the chosen gateways from the previous uplink message transmission.
- Parameters:
downlinkMode- Indicates whether to send the downlink message in sequential mode or concurrent mode, or to use only the chosen gateways from the previous uplink message transmission.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DownlinkMode,DownlinkMode
-
gatewayList
ParticipatingGateways.Builder gatewayList(Collection<GatewayListItem> gatewayList)
The list of gateways that you want to use for sending the downlink data traffic.
- Parameters:
gatewayList- The list of gateways that you want to use for sending the downlink data traffic.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
gatewayList
ParticipatingGateways.Builder gatewayList(GatewayListItem... gatewayList)
The list of gateways that you want to use for sending the downlink data traffic.
- Parameters:
gatewayList- The list of gateways that you want to use for sending the downlink data traffic.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
gatewayList
ParticipatingGateways.Builder gatewayList(Consumer<GatewayListItem.Builder>... gatewayList)
The list of gateways that you want to use for sending the downlink data traffic.
This is a convenience method that creates an instance of theGatewayListItem.Builderavoiding the need to create one manually viaGatewayListItem.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#gatewayList(List.) - Parameters:
gatewayList- a consumer that will call methods onGatewayListItem.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#gatewayList(java.util.Collection)
-
transmissionInterval
ParticipatingGateways.Builder transmissionInterval(Integer transmissionInterval)
The duration of time for which AWS IoT Core for LoRaWAN will wait before transmitting the payload to the next gateway.
- Parameters:
transmissionInterval- The duration of time for which AWS IoT Core for LoRaWAN will wait before transmitting the payload to the next gateway.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-