interface OtaaV10xProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTWireless.CfnWirelessDevice.OtaaV10xProperty |
Java | software.amazon.awscdk.services.iotwireless.CfnWirelessDevice.OtaaV10xProperty |
Python | aws_cdk.aws_iotwireless.CfnWirelessDevice.OtaaV10xProperty |
TypeScript | @aws-cdk/aws-iotwireless » CfnWirelessDevice » OtaaV10xProperty |
OTAA device object for create APIs for v1.0.x.
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 otaaV10xProperty: iotwireless.CfnWirelessDevice.OtaaV10xProperty = {
appEui: 'appEui',
appKey: 'appKey',
};
Properties
| Name | Type | Description |
|---|---|---|
| app | string | The AppEUI value, with pattern of [a-fA-F0-9]{16} . |
| app | string | The AppKey is a secret key, which you should handle in a similar way as you would an application password. |
appEui
Type:
string
The AppEUI value, with pattern of [a-fA-F0-9]{16} .
appKey
Type:
string
The AppKey is a secret key, which you should handle in a similar way as you would an application password.
You can protect the AppKey value by storing it in the AWS Secrets Manager and use the secretsmanager to reference this value.

.NET
Java
Python
TypeScript