Class: Aws::IoTWireless::Types::ParticipatingGatewaysMulticast

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#gateway_listArray<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

Returns:

  • (Array<String>)


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_intervalInteger

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:

  • (Integer)


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