Class: Aws::IoTWireless::Types::FPorts
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTWireless::Types::FPorts
- Defined in:
- gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb
Overview
Note:
When making an API call, you may pass FPorts data as a hash:
{
fuota: 1,
multicast: 1,
clock_sync: 1,
}
List of FPort assigned for different LoRaWAN application packages to use
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#clock_sync ⇒ Integer
The Fport value.
-
#fuota ⇒ Integer
The Fport value.
-
#multicast ⇒ Integer
The Fport value.
Instance Attribute Details
#clock_sync ⇒ Integer
The Fport value.
1817 1818 1819 1820 1821 1822 1823 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 1817 class FPorts < Struct.new( :fuota, :multicast, :clock_sync) SENSITIVE = [] include Aws::Structure end |