public static interface CfnWirelessDevice.OtaaV10xProperty
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.*; OtaaV10xProperty otaaV10xProperty = OtaaV10xProperty.builder() .appEui("appEui") .appKey("appKey") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnWirelessDevice.OtaaV10xProperty.Builder
A builder for
CfnWirelessDevice.OtaaV10xProperty |
static class |
CfnWirelessDevice.OtaaV10xProperty.Jsii$Proxy
An implementation for
CfnWirelessDevice.OtaaV10xProperty |
Modifier and Type | Method and Description |
---|---|
static CfnWirelessDevice.OtaaV10xProperty.Builder |
builder() |
java.lang.String |
getAppEui()
The AppEUI value, with pattern of `[a-fA-F0-9]{16}` .
|
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 getAppEui()
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.
static CfnWirelessDevice.OtaaV10xProperty.Builder builder()