Class CfnWirelessDevice.OtaaV11Property
OTAA device object for v1.1 for create APIs.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.IoTWireless
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class OtaaV11Property : Object, CfnWirelessDevice.IOtaaV11Property
Syntax (vb)
Public Class OtaaV11Property
Inherits Object
Implements CfnWirelessDevice.IOtaaV11Property
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTWireless;
var otaaV11Property = new OtaaV11Property {
AppKey = "appKey",
JoinEui = "joinEui",
NwkKey = "nwkKey"
};
Synopsis
Constructors
Otaa |
Properties
App |
The AppKey is a secret key, which you should handle in a similar way as you would an application password. |
Join |
The JoinEUI value. |
Nwk |
The NwkKey is a secret key, which you should handle in a similar way as you would an application password. |
Constructors
OtaaV11Property()
public OtaaV11Property()
Properties
AppKey
The AppKey is a secret key, which you should handle in a similar way as you would an application password.
public string AppKey { get; set; }
Property Value
System.
Remarks
You can protect the AppKey value by storing it in the AWS Secrets Manager and use the secretsmanager to reference this value.
JoinEui
The JoinEUI value.
public string JoinEui { get; set; }
Property Value
System.
Remarks
NwkKey
The NwkKey is a secret key, which you should handle in a similar way as you would an application password.
public string NwkKey { get; set; }
Property Value
System.
Remarks
You can protect the NwkKey value by storing it in the AWS Secrets Manager and use the secretsmanager to reference this value.