interface ApplicationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTWireless.Mixins.CfnWirelessDevicePropsMixin.ApplicationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotwireless/mixins#CfnWirelessDevicePropsMixin_ApplicationProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotwireless.mixins.CfnWirelessDevicePropsMixin.ApplicationProperty |
Python | aws_cdk.mixins_preview.aws_iotwireless.mixins.CfnWirelessDevicePropsMixin.ApplicationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotwireless » mixins » CfnWirelessDevicePropsMixin » 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 { mixins as iotwireless_mixins } from '@aws-cdk/mixins-preview/aws-iotwireless';
const applicationProperty: iotwireless_mixins.CfnWirelessDevicePropsMixin.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.

.NET
Go
Java
Python
TypeScript