interface LoRaWANDeviceProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.IoTWireless.CfnWirelessDevice.LoRaWANDeviceProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsiotwireless#CfnWirelessDevice_LoRaWANDeviceProperty |
![]() | software.amazon.awscdk.services.iotwireless.CfnWirelessDevice.LoRaWANDeviceProperty |
![]() | aws_cdk.aws_iotwireless.CfnWirelessDevice.LoRaWANDeviceProperty |
![]() | aws-cdk-lib » aws_iotwireless » CfnWirelessDevice » LoRaWANDeviceProperty |
LoRaWAN object for create functions.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iotwireless as iotwireless } from 'aws-cdk-lib';
const loRaWANDeviceProperty: iotwireless.CfnWirelessDevice.LoRaWANDeviceProperty = {
abpV10X: {
devAddr: 'devAddr',
sessionKeys: {
appSKey: 'appSKey',
nwkSKey: 'nwkSKey',
},
},
abpV11: {
devAddr: 'devAddr',
sessionKeys: {
appSKey: 'appSKey',
fNwkSIntKey: 'fNwkSIntKey',
nwkSEncKey: 'nwkSEncKey',
sNwkSIntKey: 'sNwkSIntKey',
},
},
devEui: 'devEui',
deviceProfileId: 'deviceProfileId',
fPorts: {
applications: [{
destinationName: 'destinationName',
fPort: 123,
type: 'type',
}],
},
otaaV10X: {
appEui: 'appEui',
appKey: 'appKey',
},
otaaV11: {
appKey: 'appKey',
joinEui: 'joinEui',
nwkKey: 'nwkKey',
},
serviceProfileId: 'serviceProfileId',
};
Properties
Name | Type | Description |
---|---|---|
abp | IResolvable | Abp | ABP device object for LoRaWAN specification v1.0.x. |
abp | IResolvable | Abp | ABP device object for create APIs for v1.1. |
dev | string | The DevEUI value. |
device | string | The ID of the device profile for the new wireless device. |
f | IResolvable | FPorts | List of FPort assigned for different LoRaWAN application packages to use. |
otaa | IResolvable | Otaa | OTAA device object for create APIs for v1.0.x. |
otaa | IResolvable | Otaa | OTAA device object for v1.1 for create APIs. |
service | string | The ID of the service profile. |
abpV10X?
Type:
IResolvable
|
Abp
(optional)
ABP device object for LoRaWAN specification v1.0.x.
abpV11?
Type:
IResolvable
|
Abp
(optional)
ABP device object for create APIs for v1.1.
devEui?
Type:
string
(optional)
The DevEUI value.
deviceProfileId?
Type:
string
(optional)
The ID of the device profile for the new wireless device.
fPorts?
Type:
IResolvable
|
FPorts
(optional)
List of FPort assigned for different LoRaWAN application packages to use.
otaaV10X?
Type:
IResolvable
|
Otaa
(optional)
OTAA device object for create APIs for v1.0.x.
otaaV11?
Type:
IResolvable
|
Otaa
(optional)
OTAA device object for v1.1 for create APIs.
serviceProfileId?
Type:
string
(optional)
The ID of the service profile.