interface ApplicationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.IoTWireless.CfnWirelessDevice.ApplicationProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotwireless#CfnWirelessDevice_ApplicationProperty | 
|  Java | software.amazon.awscdk.services.iotwireless.CfnWirelessDevice.ApplicationProperty | 
|  Python | aws_cdk.aws_iotwireless.CfnWirelessDevice.ApplicationProperty | 
|  TypeScript | aws-cdk-lib»aws_iotwireless»CfnWirelessDevice»ApplicationProperty | 
A list of optional LoRaWAN application information, which can be used for geolocation.
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 applicationProperty: iotwireless.CfnWirelessDevice.ApplicationProperty = {
  destinationName: 'destinationName',
  fPort: 123,
  type: 'type',
};
Properties
| Name | Type | Description | 
|---|---|---|
| destination | string | The name of the position data destination that describes the IoT rule that processes the device's position data. | 
| f | number | The name of the new destination for the device. | 
| type? | string | Application type, which can be specified to obtain real-time position information of your LoRaWAN device. | 
destinationName?
Type:
string
(optional)
The name of the position data destination that describes the IoT rule that processes the device's position data.
fPort?
Type:
number
(optional)
The name of the new destination for the device.
type?
Type:
string
(optional)
Application type, which can be specified to obtain real-time position information of your LoRaWAN device.
