public static interface CfnWirelessDevice.SessionKeysAbpV10xProperty
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.*; SessionKeysAbpV10xProperty sessionKeysAbpV10xProperty = SessionKeysAbpV10xProperty.builder() .appSKey("appSKey") .nwkSKey("nwkSKey") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnWirelessDevice.SessionKeysAbpV10xProperty.Builder
A builder for
CfnWirelessDevice.SessionKeysAbpV10xProperty |
static class |
CfnWirelessDevice.SessionKeysAbpV10xProperty.Jsii$Proxy
An implementation for
CfnWirelessDevice.SessionKeysAbpV10xProperty |
Modifier and Type | Method and Description |
---|---|
static CfnWirelessDevice.SessionKeysAbpV10xProperty.Builder |
builder() |
java.lang.String |
getAppSKey()
The AppSKey is a secret key, which you should handle in a similar way as you would an application password.
|
java.lang.String |
getNwkSKey()
The NwkSKey is a secret key, which you should handle in a similar way as you would an application password.
|
java.lang.String getAppSKey()
You can protect the AppSKey value by storing it in the AWS Secrets Manager and use the secretsmanager to reference this value.
java.lang.String getNwkSKey()
You can protect the NwkSKey value by storing it in the AWS Secrets Manager and use the secretsmanager to reference this value.
static CfnWirelessDevice.SessionKeysAbpV10xProperty.Builder builder()