interface OtaaV11Property
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.IoTWireless.CfnWirelessDevice.OtaaV11Property |
Java | software.amazon.awscdk.services.iotwireless.CfnWirelessDevice.OtaaV11Property |
Python | aws_cdk.aws_iotwireless.CfnWirelessDevice.OtaaV11Property |
TypeScript | @aws-cdk/aws-iotwireless » CfnWirelessDevice » OtaaV11Property |
OTAA device object for v1.1 for create APIs.
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 otaaV11Property: iotwireless.CfnWirelessDevice.OtaaV11Property = {
appKey: 'appKey',
joinEui: 'joinEui',
nwkKey: 'nwkKey',
};
Properties
Name | Type | Description |
---|---|---|
app | string | The AppKey is a secret key, which you should handle in a similar way as you would an application password. |
join | string | The JoinEUI value. |
nwk | string | The NwkKey is a secret key, which you should handle in a similar way as you would an application password. |
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.
joinEui
Type:
string
The JoinEUI value.
nwkKey
Type:
string
The NwkKey is a secret key, which you should handle in a similar way as you would an application password.
You can protect the NwkKey value by storing it in the AWS Secrets Manager and use the secretsmanager to reference this value.