interface CfnServiceProfileProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTWireless.CfnServiceProfileProps |
Java | software.amazon.awscdk.services.iotwireless.CfnServiceProfileProps |
Python | aws_cdk.aws_iotwireless.CfnServiceProfileProps |
TypeScript | @aws-cdk/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 * as iotwireless from '@aws-cdk/aws-iotwireless';
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
| Name | Type | Description |
|---|---|---|
| lo | IResolvable | Lo | LoRaWAN service profile object. |
| 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. |
loRaWan?
Type:
IResolvable | Lo
(optional)
LoRaWAN service profile object.
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.

.NET
Java
Python
TypeScript