Class: Aws::IoTWireless::Types::StartMulticastGroupSessionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTWireless::Types::StartMulticastGroupSessionRequest
- Defined in:
- gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb
Overview
Note:
When making an API call, you may pass StartMulticastGroupSessionRequest data as a hash:
{
id: "MulticastGroupId", # required
lo_ra_wan: { # required
dl_dr: 1,
dl_freq: 1,
session_start_time: Time.now,
session_timeout: 1,
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The ID of the multicast group.
-
#lo_ra_wan ⇒ Types::LoRaWANMulticastSession
The LoRaWAN information used with the multicast session.
Instance Attribute Details
#id ⇒ String
The ID of the multicast group.
5163 5164 5165 5166 5167 5168 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 5163 class StartMulticastGroupSessionRequest < Struct.new( :id, :lo_ra_wan) SENSITIVE = [] include Aws::Structure end |
#lo_ra_wan ⇒ Types::LoRaWANMulticastSession
The LoRaWAN information used with the multicast session.
5163 5164 5165 5166 5167 5168 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 5163 class StartMulticastGroupSessionRequest < Struct.new( :id, :lo_ra_wan) SENSITIVE = [] include Aws::Structure end |