interface AbpV10xProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTWireless.Mixins.CfnWirelessDevicePropsMixin.AbpV10xProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotwireless/mixins#CfnWirelessDevicePropsMixin_AbpV10xProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotwireless.mixins.CfnWirelessDevicePropsMixin.AbpV10xProperty |
Python | aws_cdk.mixins_preview.aws_iotwireless.mixins.CfnWirelessDevicePropsMixin.AbpV10xProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotwireless » mixins » CfnWirelessDevicePropsMixin » AbpV10xProperty |
ABP device object for LoRaWAN specification v1.0.x.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iotwireless_mixins } from '@aws-cdk/mixins-preview/aws-iotwireless';
const abpV10xProperty: iotwireless_mixins.CfnWirelessDevicePropsMixin.AbpV10xProperty = {
devAddr: 'devAddr',
sessionKeys: {
appSKey: 'appSKey',
nwkSKey: 'nwkSKey',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| dev | string | The DevAddr value. |
| session | IResolvable | Session | Session keys for ABP v1.0.x. |
devAddr?
Type:
string
(optional)
The DevAddr value.
sessionKeys?
Type:
IResolvable | Session
(optional)
Session keys for ABP v1.0.x.

.NET
Go
Java
Python
TypeScript