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