Class: Aws::IoTWireless::Types::ParticipatingGatewaysMulticast
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTWireless::Types::ParticipatingGatewaysMulticast
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotwireless/types.rb
Overview
Specify the list of gateways to which you want to send the multicast downlink messages. The multicast message will be sent to each gateway in the sequence provided in the list.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#gateway_list ⇒ Array<String>
The list of gateways that you want to use for sending the multicast downlink.
-
#transmission_interval ⇒ Integer
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.
Instance Attribute Details
#gateway_list ⇒ Array<String>
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
5058 5059 5060 5061 5062 5063 |
# File 'lib/aws-sdk-iotwireless/types.rb', line 5058 class ParticipatingGatewaysMulticast < Struct.new( :gateway_list, :transmission_interval) SENSITIVE = [] include Aws::Structure end |
#transmission_interval ⇒ Integer
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.
5058 5059 5060 5061 5062 5063 |
# File 'lib/aws-sdk-iotwireless/types.rb', line 5058 class ParticipatingGatewaysMulticast < Struct.new( :gateway_list, :transmission_interval) SENSITIVE = [] include Aws::Structure end |