aws-cdk-lib.aws_iotwireless.CfnServiceProfileProps

interface CfnServiceProfileProps

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

Properties for defining a CfnServiceProfile.

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 cfnServiceProfileProps: iotwireless.CfnServiceProfileProps = {
  loRaWan: {
    addGwMetadata: false,
    channelMask: 'channelMask',
    devStatusReqFreq: 123,
    dlBucketSize: 123,
    dlRate: 123,
    dlRatePolicy: 'dlRatePolicy',
    drMax: 123,
    drMin: 123,
    hrAllowed: false,
    minGwDiversity: 123,
    nwkGeoLoc: false,
    prAllowed: false,
    raAllowed: false,
    reportDevStatusBattery: false,
    reportDevStatusMargin: false,
    targetPer: 123,
    ulBucketSize: 123,
    ulRate: 123,
    ulRatePolicy: 'ulRatePolicy',
  },
  name: 'name',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
loRaWan?IResolvable | LoRaWANServiceProfilePropertyLoRaWAN service 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 | LoRaWANServiceProfileProperty (optional)

LoRaWAN service 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.