public static interface CfnWirelessDevice.OtaaV11Property
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() |
java.lang.String |
getAppKey()
The AppKey is a secret key, which you should handle in a similar way as you would an application password.
|
java.lang.String |
getJoinEui()
The JoinEUI value.
|
java.lang.String |
getNwkKey()
The NwkKey is a secret key, which you should handle in a similar way as you would an application password.
|
java.lang.String getAppKey()
You can protect the AppKey value by storing it in the AWS Secrets Manager and use the secretsmanager to reference this value.
java.lang.String getJoinEui()
java.lang.String getNwkKey()
You can protect the NwkKey value by storing it in the AWS Secrets Manager and use the secretsmanager to reference this value.
static CfnWirelessDevice.OtaaV11Property.Builder builder()