interface CfnServiceProfileMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTWireless.CfnServiceProfileMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotwireless#CfnServiceProfileMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotwireless.CfnServiceProfileMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_iotwireless.CfnServiceProfileMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotwireless » CfnServiceProfileMixinProps |
Properties for CfnServiceProfilePropsMixin.
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/cfn-property-mixins';
const cfnServiceProfileMixinProps: iotwireless.CfnServiceProfileMixinProps = {
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
Go
Java
Python
TypeScript