aws-cdk-lib.aws_iotwireless.CfnWirelessDeviceProps

interface CfnWirelessDeviceProps

LanguageType name
.NETAmazon.CDK.AWS.IoTWireless.CfnWirelessDeviceProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiotwireless#CfnWirelessDeviceProps
Javasoftware.amazon.awscdk.services.iotwireless.CfnWirelessDeviceProps
Pythonaws_cdk.aws_iotwireless.CfnWirelessDeviceProps
TypeScript aws-cdk-lib » 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 { aws_iotwireless as iotwireless } from 'aws-cdk-lib';
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

NameTypeDescription
destinationNamestringThe name of the destination to assign to the new wireless device.
typestringThe wireless device type.
description?stringThe description of the new resource.
lastUplinkReceivedAt?stringThe date and time when the most recent uplink was received.
loRaWan?IResolvable | LoRaWANDevicePropertyThe device configuration information to use to create the wireless device.
name?stringThe name of the new resource.
tags?CfnTag[]The tags are an array of key-value pairs to attach to the specified resource.
thingArn?stringThe 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 | LoRaWANDeviceProperty (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: CfnTag[] (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.