interface CfnWirelessDeviceProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTWireless.CfnWirelessDeviceProps |
Java | software.amazon.awscdk.services.iotwireless.CfnWirelessDeviceProps |
Python | aws_cdk.aws_iotwireless.CfnWirelessDeviceProps |
TypeScript | @aws-cdk/aws-iotwireless » CfnWirelessDeviceProps |
Properties for defining a CfnWirelessDevice.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iotwireless from '@aws-cdk/aws-iotwireless';
const cfnWirelessDeviceProps: iotwireless.CfnWirelessDeviceProps = {
destinationName: 'destinationName',
type: 'type',
// the properties below are optional
description: 'description',
lastUplinkReceivedAt: 'lastUplinkReceivedAt',
loRaWan: {
abpV10X: {
devAddr: 'devAddr',
sessionKeys: {
appSKey: 'appSKey',
nwkSKey: 'nwkSKey',
},
},
abpV11: {
devAddr: 'devAddr',
sessionKeys: {
appSKey: 'appSKey',
fNwkSIntKey: 'fNwkSIntKey',
nwkSEncKey: 'nwkSEncKey',
sNwkSIntKey: 'sNwkSIntKey',
},
},
devEui: 'devEui',
deviceProfileId: 'deviceProfileId',
otaaV10X: {
appEui: 'appEui',
appKey: 'appKey',
},
otaaV11: {
appKey: 'appKey',
joinEui: 'joinEui',
nwkKey: 'nwkKey',
},
serviceProfileId: 'serviceProfileId',
},
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
thingArn: 'thingArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | string | The name of the destination to assign to the new wireless device. |
| type | string | The wireless device type. |
| description? | string | The description of the new resource. |
| last | string | The date and time when the most recent uplink was received. |
| lo | IResolvable | Lo | The device configuration information to use to create the wireless device. |
| name? | string | The name of the new resource. |
| tags? | Cfn[] | The tags are an array of key-value pairs to attach to the specified resource. |
| thing | string | The ARN of the thing to associate with the wireless device. |
destinationName
Type:
string
The name of the destination to assign to the new wireless device.
Can have only have alphanumeric, - (hyphen) and _ (underscore) characters and it can't have any spaces.
type
Type:
string
The wireless device type.
description?
Type:
string
(optional)
The description of the new resource.
Maximum length is 2048.
lastUplinkReceivedAt?
Type:
string
(optional)
The date and time when the most recent uplink was received.
loRaWan?
Type:
IResolvable | Lo
(optional)
The device configuration information to use to create the wireless device.
Must be at least one of OtaaV10x, OtaaV11, AbpV11, or AbpV10x.
name?
Type:
string
(optional)
The name of the new resource.
tags?
Type:
Cfn[]
(optional)
The tags are an array of key-value pairs to attach to the specified resource.
Tags can have a minimum of 0 and a maximum of 50 items.
thingArn?
Type:
string
(optional)
The ARN of the thing to associate with the wireless device.

.NET
Java
Python
TypeScript