interface FPortsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTWireless.CfnWirelessDevicePropsMixin.FPortsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotwireless#CfnWirelessDevicePropsMixin_FPortsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotwireless.CfnWirelessDevicePropsMixin.FPortsProperty |
Python | aws_cdk.cfn_property_mixins.aws_iotwireless.CfnWirelessDevicePropsMixin.FPortsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotwireless » CfnWirelessDevicePropsMixin » FPortsProperty |
List of FPorts assigned for different LoRaWAN application packages to use.
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/cfn-property-mixins';
const fPortsProperty: iotwireless.CfnWirelessDevicePropsMixin.FPortsProperty = {
applications: [{
destinationName: 'destinationName',
fPort: 123,
type: 'type',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| applications? | IResolvable | (IResolvable | Application)[] | LoRaWAN application configuration, which can be used to perform geolocation. |
applications?
Type:
IResolvable | (IResolvable | Application)[]
(optional)
LoRaWAN application configuration, which can be used to perform geolocation.

.NET
Go
Java
Python
TypeScript