@Stability(value=Stable)
public static interface CfnWirelessDevice.OtaaV11Property
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnWirelessDevice.OtaaV11Property.Builder
A builder for
CfnWirelessDevice.OtaaV11Property |
static class |
CfnWirelessDevice.OtaaV11Property.Jsii$Proxy
An implementation for
CfnWirelessDevice.OtaaV11Property |
| Modifier and Type | Method and Description |
|---|---|
static CfnWirelessDevice.OtaaV11Property.Builder |
builder() |
String |
getAppKey()
The AppKey is a secret key, which you should handle in a similar way as you would an application password.
|
String |
getJoinEui()
The JoinEUI value.
|
String |
getNwkKey()
The NwkKey is a secret key, which you should handle in a similar way as you would an application password.
|
@Stability(value=Stable) @NotNull String getAppKey()
You can protect the AppKey value by storing it in the AWS Secrets Manager and use the secretsmanager to reference this value.
@Stability(value=Stable) @NotNull String getJoinEui()
@Stability(value=Stable) @NotNull String getNwkKey()
You can protect the NwkKey value by storing it in the AWS Secrets Manager and use the secretsmanager to reference this value.
@Stability(value=Stable) static CfnWirelessDevice.OtaaV11Property.Builder builder()
Copyright © 2022. All rights reserved.