Interface ParticipatingGatewaysMulticast.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ParticipatingGatewaysMulticast.Builder,ParticipatingGatewaysMulticast>,SdkBuilder<ParticipatingGatewaysMulticast.Builder,ParticipatingGatewaysMulticast>,SdkPojo
- Enclosing class:
- ParticipatingGatewaysMulticast
public static interface ParticipatingGatewaysMulticast.Builder extends SdkPojo, CopyableBuilder<ParticipatingGatewaysMulticast.Builder,ParticipatingGatewaysMulticast>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ParticipatingGatewaysMulticast.BuildergatewayList(String... gatewayList)The list of gateways that you want to use for sending the multicast downlink.ParticipatingGatewaysMulticast.BuildergatewayList(Collection<String> gatewayList)The list of gateways that you want to use for sending the multicast downlink.ParticipatingGatewaysMulticast.BuildertransmissionInterval(Integer transmissionInterval)The duration of time for which AWS IoT Core for LoRaWAN will wait before transmitting the multicast payload to the next gateway in the list.-
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
-
gatewayList
ParticipatingGatewaysMulticast.Builder gatewayList(Collection<String> gatewayList)
The list of gateways that you want to use for sending the multicast downlink. Each downlink will be sent to all the gateways in the list with transmission interval between them. If list is empty the gateway list will be dynamically selected similar to the case of no ParticipatingGateways
- Parameters:
gatewayList- The list of gateways that you want to use for sending the multicast downlink. Each downlink will be sent to all the gateways in the list with transmission interval between them. If list is empty the gateway list will be dynamically selected similar to the case of no ParticipatingGateways- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
gatewayList
ParticipatingGatewaysMulticast.Builder gatewayList(String... gatewayList)
The list of gateways that you want to use for sending the multicast downlink. Each downlink will be sent to all the gateways in the list with transmission interval between them. If list is empty the gateway list will be dynamically selected similar to the case of no ParticipatingGateways
- Parameters:
gatewayList- The list of gateways that you want to use for sending the multicast downlink. Each downlink will be sent to all the gateways in the list with transmission interval between them. If list is empty the gateway list will be dynamically selected similar to the case of no ParticipatingGateways- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
transmissionInterval
ParticipatingGatewaysMulticast.Builder transmissionInterval(Integer transmissionInterval)
The duration of time for which AWS IoT Core for LoRaWAN will wait before transmitting the multicast payload to the next gateway in the list.
- Parameters:
transmissionInterval- The duration of time for which AWS IoT Core for LoRaWAN will wait before transmitting the multicast payload to the next gateway in the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-