aws-cdk-lib.aws_iotwireless.CfnDeviceProfileProps

interface CfnDeviceProfileProps

LanguageType name
.NETAmazon.CDK.AWS.IoTWireless.CfnDeviceProfileProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiotwireless#CfnDeviceProfileProps
Javasoftware.amazon.awscdk.services.iotwireless.CfnDeviceProfileProps
Pythonaws_cdk.aws_iotwireless.CfnDeviceProfileProps
TypeScript aws-cdk-lib » aws_iotwireless » CfnDeviceProfileProps

Properties for defining a CfnDeviceProfile.

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 cfnDeviceProfileProps: iotwireless.CfnDeviceProfileProps = {
  loRaWan: {
    classBTimeout: 123,
    classCTimeout: 123,
    factoryPresetFreqsList: [123],
    macVersion: 'macVersion',
    maxDutyCycle: 123,
    maxEirp: 123,
    pingSlotDr: 123,
    pingSlotFreq: 123,
    pingSlotPeriod: 123,
    regParamsRevision: 'regParamsRevision',
    rfRegion: 'rfRegion',
    rxDataRate2: 123,
    rxDelay1: 123,
    rxDrOffset1: 123,
    rxFreq2: 123,
    supports32BitFCnt: false,
    supportsClassB: false,
    supportsClassC: false,
    supportsJoin: false,
  },
  name: 'name',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
loRaWan?IResolvable | LoRaWANDeviceProfilePropertyLoRaWAN device profile object.
name?stringThe name of the new resource.
tags?CfnTag[]The tags are an array of key-value pairs to attach to the specified resource.

loRaWan?

Type: IResolvable | LoRaWANDeviceProfileProperty (optional)

LoRaWAN device profile object.


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.