Interface CfnWirelessDevice.OtaaV11Property
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWirelessDevice.OtaaV11Property.Jsii$Proxy
- Enclosing class:
CfnWirelessDevice
@Stability(Stable)
public static interface CfnWirelessDevice.OtaaV11Property
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.iotwireless.*; OtaaV11Property otaaV11Property = OtaaV11Property.builder() .appKey("appKey") .joinEui("joinEui") .nwkKey("nwkKey") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnWirelessDevice.OtaaV11Property
static final class
An implementation forCfnWirelessDevice.OtaaV11Property
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The AppKey is a secret key, which you should handle in a similar way as you would an application password.The JoinEUI value.The NwkKey is a secret key, which you should handle in a similar way as you would an application password.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAppKey
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.
- See Also:
-
getJoinEui
The JoinEUI value.- See Also:
-
getNwkKey
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.
- See Also:
-
builder
-